/* ============================================================
   Zein Group — Design System
   ============================================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;700;800&family=Inter:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* Design Tokens */
:root {
  --ink:        #1c1c1c;
  --ink-2:      #2a2a2a;
  --paper:      #ffffff;
  --paper-2:    #f4f4f4;
  --line:       #e3e1dc;
  --line-dark:  #3a3a38;
  --stone:      #928b7a;
  --stone-tint: #f0eee9;
  --muted:      #8a8a8a;
  --muted-dark: #9a968c;
  --page-max:   1280px;
  --px:         44px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   Layout Utility
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: block;
  width: 97px;
  height: 86px;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 97px;
  height: 86px;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--stone); }

.nav-link--active,
.nav-link[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1.5px solid var(--stone);
  padding-bottom: 1px;
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 104px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  z-index: 99;
  flex-direction: column;
  padding: 32px var(--px) max(40px, calc(env(safe-area-inset-bottom, 0px) + 32px));
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--stone); }

/* Selector includes element tag so specificity (0,2,1) beats a:last-child's border-bottom:none */
.mobile-nav a.nav-cta-mobile {
  margin-top: 24px;
  display: block;
  border: 1px solid var(--ink);
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  border-bottom: 1px solid var(--ink);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn__arrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
}

.btn--stone {
  background: var(--stone);
  border-color: var(--stone);
  color: #15140f;
}

.btn--stone:hover {
  background: #7d7669;
  border-color: #7d7669;
}

.btn--outline-white {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--compact {
  align-self: flex-start;
}

/* ============================================================
   Mono Labels
   ============================================================ */
.label-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.16px;
  color: var(--stone);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  padding: 120px var(--px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-color {
  position: absolute;
  inset: 0;
  background: var(--ink);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Z-line motif — right panel, top-anchored, lines rise lower-left → upper-right */
.hero__motif {
  position: absolute;
  right: 0;
  top: 0;
  width: 460px;
  height: 718px;
  overflow: hidden;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.hero__motif-line {
  position: absolute;
  left: -263px;       /* rotation center at x=187px from container left, matching Figma */
  width: 900px;
  transform-origin: center;
  transform: rotate(35deg);  /* CW — lines slope upper-left → lower-right (\) */
}

.hero__motif-line--thick { height: 4px; background: #928b7a; }
.hero__motif-line--thin  { height: 1.5px; background: #928b7a; }

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -1.12px;
  color: var(--paper);
  max-width: 720px;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #cfcdc7;
  max-width: 620px;
}

.hero__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted-dark);
  white-space: pre;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   Section — Positioning + Numbers
   ============================================================ */
.section-positioning {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  gap: 1px;
  background: var(--line);
}

.pos-card {
  background: var(--paper);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  gap: 8px;
}

.pos-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--stone);
}

.pos-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  color: var(--ink);
}

.pos-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #333;
}

.positioning-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #333;
  max-width: 700px;
}

/* Governance Strip */
.governance-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
}

.governance-strip__rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.governance-strip__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.16px;
  color: var(--stone);
}

.governance-strip__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

/* Numbers Band */
.numbers-band {
  display: flex;
  border-top: 1px solid var(--line);
  width: 100%;
}

.numbers-band__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 38px 44px 38px 40px;
  border-right: 1px solid var(--line);
}

.numbers-band__item:first-child { padding-left: 0; }
.numbers-band__item:last-child { border-right: none; }

.numbers-band__value {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
  white-space: nowrap;
}

.numbers-band__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  max-width: 160px;
}

.positioning-founder {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #444;
  max-width: 929px;
}

/* ============================================================
   Section — Featured Projects
   ============================================================ */
.section-projects {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-projects__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.72px;
  color: var(--ink);
  max-width: 734px;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.project-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-card__image {
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: var(--stone-tint);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.03);
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 22px;
}

.project-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}

.project-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 24px;
  color: var(--ink);
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.project-card__status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--muted);
}

/* ============================================================
   Section — UAE Licensed Entity
   ============================================================ */
.section-uae {
  background: var(--paper);
  padding: 80px var(--px);
}

.uae-two-col {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.uae-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 420px;
}

.aasc-badge {
  background: #faf9f6;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 187px;
  height: 193px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  flex-shrink: 0;
}

.aasc-badge img {
  width: 119px;
  height: 137px;
  display: block;
}

.uae-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.72px;
  color: var(--ink);
}

.uae-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.uae-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #333;
}

.entity-dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.entity-dl__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.entity-dl__key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--muted);
}

.entity-dl__val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ============================================================
   Section — CTA
   ============================================================ */
.section-cta {
  background: var(--paper-2);
  padding: 70px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cta-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.72px;
  color: var(--ink);
}

.cta-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  max-width: 560px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: 56px var(--px) 28px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 116px;
  height: 103px;
  display: block;
}

.footer-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.36px;
  color: var(--paper);
  white-space: nowrap;
}

.footer-markets {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--muted-dark);
  white-space: nowrap;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.footer-col__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  margin-bottom: 8px;
}

.footer-col a,
.footer-col p,
.footer-col span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--paper);
  opacity: 0.85;
  display: block;
  line-height: 1;
  padding: 3px 0;
}

.footer-col a:hover { opacity: 1; color: var(--stone); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom__copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-dark);
}

.footer-bottom__tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-dark);
}

/* ============================================================
   Responsive — Tablet (768–1279px)
   ============================================================ */
@media (max-width: 1279px) {
  :root { --px: 32px; }

  .hero__title { font-size: 44px; line-height: 52px; }

  .pos-grid { grid-template-columns: repeat(2, 1fr); }

  .uae-two-col { flex-direction: column; gap: 40px; }
  .uae-left { width: 100%; }

  .section-cta { flex-direction: column; align-items: flex-start; }

  .footer-top { flex-wrap: wrap; }
  .footer-brand { width: 100%; }

  .footer-bottom__tagline { display: none; }
}

/* ============================================================
   Responsive — Mobile (<768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --px: 20px; }

  /* Header */
  .site-header__inner { height: 72px; }
  .site-header__logo { width: 72px; height: auto; }
  .site-header__logo img { width: 72px; height: auto; }
  .site-header__nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { top: 72px; }

  /* Hero */
  .hero { padding: 72px var(--px); }
  .hero__title { font-size: 32px; line-height: 40px; letter-spacing: -0.64px; }
  .hero__subtitle { font-size: 16px; line-height: 26px; }
  .hero__meta { font-size: 10px; white-space: normal; letter-spacing: 1.4px; }
  .hero__buttons { flex-direction: column; align-items: flex-start; }
  .hero__motif { display: none; }

  /* Positioning */
  .section-positioning { padding: 56px var(--px); gap: 28px; }
  .pos-grid { grid-template-columns: 1fr; }
  .pos-card { min-height: 130px; }
  .positioning-lead { font-size: 16px; }

  /* Numbers */
  .numbers-band {
    flex-direction: column;
    border-top: none;
  }
  .numbers-band__item {
    border-right: none;
    border-top: 1px solid var(--line);
    padding: 28px 0;
    width: 100%;
  }
  .numbers-band__item:first-child { padding-top: 28px; border-top: 1px solid var(--line); }

  /* Projects */
  .section-projects { padding: 56px var(--px); gap: 24px; }
  .section-projects__heading { font-size: 28px; line-height: 34px; }
  .project-cards { grid-template-columns: 1fr; }
  .project-card__image { height: 220px; }

  /* UAE */
  .section-uae { padding: 56px var(--px); }
  .uae-heading { font-size: 28px; line-height: 34px; }
  .uae-lead { font-size: 16px; }
  .entity-dl__val { font-size: 12px; }

  /* CTA */
  .section-cta { padding: 56px var(--px); flex-direction: column; }
  .cta-heading { font-size: 28px; line-height: 34px; }
  .cta-buttons { width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .site-footer { padding: 40px var(--px) 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { width: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .footer-bottom__tagline { display: none; }
}


/* ============================================================
   Shared — Section heading + lead patterns
   ============================================================ */
.section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: var(--ink);
  max-width: 760px;
}
.section-heading--paper { color: var(--paper); }

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #333;
  max-width: 680px;
}

/* ============================================================
   Page — About
   ============================================================ */
.section-snapshot {
  background: var(--paper);
  padding: 80px var(--px);
}
.snapshot-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.snapshot-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 6px;
}
.snapshot-year {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--ink);
  line-height: 1;
}
.snapshot-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.snapshot-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.snapshot-body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #333;
  max-width: 680px;
}
.snapshot-body--secondary {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  max-width: 680px;
}
.section-founder {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-bio-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #333;
}
.founder-creds { display: flex; flex-direction: column; gap: 0; }
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.cred-item__title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.cred-item__detail {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--muted);
}
.section-timeline {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.timeline-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.timeline-phase {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timeline-phase__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.timeline-cards { display: flex; flex-direction: column; gap: 0; }
.timeline-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-card:first-child { padding-top: 0; }
.timeline-card:last-child { border-bottom: none; padding-bottom: 0; }
.timeline-card__year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--stone);
}
.timeline-card__event {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.timeline-card__detail {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}
.section-purpose {
  background: var(--stone-tint);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.purpose-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.64px;
  color: var(--ink);
  max-width: 840px;
}
.purpose-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #444;
  max-width: 680px;
}
.section-values {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-card {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.value-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.value-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #444;
}
.section-ceo {
  background: var(--ink);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
.ceo-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.ceo-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.ceo-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.48px;
  color: var(--paper);
}
.ceo-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #cfcdc7;
}
.ceo-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.ceo-attribution__name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
}
.ceo-attribution__role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--muted-dark);
}

/* ============================================================
   Page — What We Do
   ============================================================ */
.section-capabilities {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-capabilities--bottom {
  padding-top: 0;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap-card {
  background: var(--paper);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 34px;
  color: var(--stone);
}
.cap-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  line-height: 24px;
}
.cap-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  color: var(--muted);
}
.cap-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.cap-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.cap-card__list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  top: 0;
}
.cap-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--stone);
  margin-top: auto;
  padding-top: 12px;
  transition: color 0.15s;
}
.cap-card__link:hover { color: var(--ink); }
.section-feature-block {
  background: var(--ink-2);
  padding: 60px var(--px);
  display: flex;
  gap: 80px;
  align-items: center;
}
.feature-block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.feature-block-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: var(--paper);
  max-width: 580px;
}
.feature-block-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #cfcdc7;
  max-width: 520px;
}
.feature-block-cta { flex-shrink: 0; }
.section-urban-numbers {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.urban-numbers-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  gap: 1px;
  background: var(--line);
}
.urban-num-item {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.urban-num-value {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
  white-space: nowrap;
}
.urban-num-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ============================================================
   Page — Projects
   ============================================================ */
.section-case-blocks {
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.case-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.case-block--reverse { direction: rtl; }
.case-block--reverse > * { direction: ltr; }
.case-block__image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--stone-tint);
}
.case-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-block:hover .case-block__image img { transform: scale(1.03); }
.case-block__content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--line);
}
.case-block--reverse .case-block__content {
  border-left: none;
  border-right: 1px solid var(--line);
}
.case-block__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
  text-transform: uppercase;
}
.case-block__title {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.case-block__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #444;
  flex: 1;
}
.case-block__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  margin: 0 -40px -44px;
}
.meta-tile {
  background: var(--paper);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.meta-tile__key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--stone);
  text-transform: uppercase;
}
.meta-tile__val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.section-visual-grid {
  background: #f7f6f2;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.visual-grid__item {
  aspect-ratio: 1;
  background: var(--stone-tint);
  overflow: hidden;
}
.visual-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.visual-grid__item:hover img { transform: scale(1.05); }
.section-register {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.register-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.register-card {
  background: var(--paper);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.register-card__sector {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--stone);
  text-transform: uppercase;
}
.register-card__count {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}
.register-card__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.register-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   Page — Z Arch Hub
   ============================================================ */
.section-design-approach {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.approach-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approach-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.approach-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.approach-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
}
.principle-strip {
  background: var(--stone-tint);
  padding: 22px 28px;
  border: 1px solid var(--line);
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.principle-strip__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  flex-shrink: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.principle-strip__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.section-interior-portfolio {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.portfolio-card__image {
  width: 100%;
  /* aspect-ratio locks the 1280px Figma crop (2-col, 584px wide / 300px tall).
     Crop stays centred as viewport widens instead of going panoramic. */
  aspect-ratio: 146 / 75;
  height: auto;
  overflow: hidden;
  background: var(--stone-tint);
}
.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card__image img { transform: scale(1.03); }
.portfolio-card__content {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
}
.portfolio-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--stone);
  text-transform: uppercase;
}
.portfolio-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.section-facade {
  background: #f7f6f2;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.facade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.facade-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.facade-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--stone-tint);
}
.facade-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.facade-card__content {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}
.facade-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.section-delivery {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.delivery-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivery-card__step {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.delivery-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.delivery-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
}

/* ============================================================
   Page — Z Command
   ============================================================ */
.hero--command {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 460px;
  background: #161615;
}
.hero--command .hero__left {
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero--command .hero__right {
  background: #1a1a18;
  border-left: 1px solid #2e2e2a;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.gov-rail { display: flex; flex-direction: column; flex: 1; }
.gov-rail__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #2e2e2a;
}
.gov-rail__step:last-child { border-bottom: none; }
.gov-rail__node {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a3a38;
  background: #1c1c1a;
}
.gov-rail__node--active {
  border-color: var(--stone);
  background: rgba(146,139,122,0.15);
}
.gov-rail__node-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted-dark);
}
.gov-rail__node--active .gov-rail__node-num { color: var(--stone); }
.gov-rail__info { padding-top: 6px; display: flex; flex-direction: column; gap: 3px; }
.gov-rail__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
}
.gov-rail__sublabel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--muted-dark);
}
.gov-gate {
  background: #111110;
  border: 1px solid var(--stone);
  padding: 10px 14px;
}
.gov-gate__text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--stone);
  text-transform: uppercase;
  text-align: center;
}
.section-framework {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.framework-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.framework-step {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.framework-step__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.framework-step__title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.framework-step__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
}
.section-site-assistant {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.assistant-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.assistant-card {
  background: var(--paper-2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assistant-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.assistant-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.assistant-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
}
.admin-gate-panel {
  background: var(--ink);
  border: 1px solid var(--line-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-gate-panel__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.admin-gate-panel__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.3;
  max-width: 560px;
}
.admin-gate-panel__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #cfcdc7;
  max-width: 560px;
}
.section-gov-statement {
  background: var(--ink-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.gov-statement__main {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--paper);
  max-width: 680px;
}
.gov-statement__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #cfcdc7;
  max-width: 600px;
}
.section-position {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.position-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.position-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.64px;
  color: var(--ink);
}
.position-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #444;
  margin-top: 12px;
}

/* ============================================================
   Page — Presence
   ============================================================ */
.section-entity-uae {
  background: var(--ink);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.entity-uae-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
.entity-uae-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.entity-uae-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.entity-uae-badge img {
  width: 100px;
  display: block;
  filter: invert(1) brightness(1.5);
}
.entity-uae-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--paper);
}
.entity-uae-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}
.entity-uae-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #cfcdc7;
}
.entity-dl--dark {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}
.entity-dl--dark .entity-dl__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.entity-dl--dark .entity-dl__key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--muted-dark);
}
.entity-dl--dark .entity-dl__val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--paper);
}
.section-entity-grid {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.entity-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.entity-card {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.entity-card__market {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.entity-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.section-clients {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.clients-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.clients-col__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.clients-col__list { display: flex; flex-direction: column; }
.clients-col__list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}
.clients-col__list li:last-child { border-bottom: none; }

/* ============================================================
   Page — Contact
   ============================================================ */
.section-direct-enquiries {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.enquiry-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.enquiry-block {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.enquiry-block__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.enquiry-block__value {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-all;
}
.enquiry-block__value a { color: inherit; transition: color 0.15s; }
.enquiry-block__value a:hover { color: var(--stone); }
.enquiry-block__note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}
.section-email-enquiry {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.email-enquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.email-enquiry-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.email-enquiry-btn:hover {
  border-color: var(--stone);
  background: var(--stone-tint);
}
.email-enquiry-btn__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.email-enquiry-btn__text {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-contact-entities {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-entities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-entity-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-entity-card__market {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.contact-entity-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.contact-entity-card__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.contact-entity-card__row { display: flex; flex-direction: column; gap: 2px; }
.contact-entity-card__key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--stone);
  text-transform: uppercase;
}
.contact-entity-card__val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}
.contact-entity-card__address {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   Responsive — Tablet additions (768–1279px)
   ============================================================ */
@media (max-width: 1279px) {
  .snapshot-grid      { grid-template-columns: 1fr; gap: 36px; }
  .founder-grid       { grid-template-columns: 1fr; gap: 40px; }
  .timeline-phases    { grid-template-columns: 1fr; }
  .ceo-grid           { grid-template-columns: 1fr; }
  .cap-grid           { grid-template-columns: repeat(2, 1fr); }
  .approach-cards     { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid      { grid-template-columns: repeat(2, 1fr); }
  .framework-steps    { grid-template-columns: repeat(2, 1fr); }
  .assistant-cards    { grid-template-columns: repeat(2, 1fr); }
  .visual-grid        { grid-template-columns: repeat(3, 1fr); }
  .register-grid      { grid-template-columns: repeat(3, 1fr); }
  .entity-uae-grid    { grid-template-columns: 1fr; gap: 40px; }
  .hero--command      { grid-template-columns: 1fr; }
  .hero--command .hero__right { display: none; }
  .position-two-col   { grid-template-columns: 1fr; gap: 40px; }
  .email-enquiry-grid { grid-template-columns: 1fr; }
  .section-feature-block { flex-direction: column; gap: 32px; }
  .urban-numbers-band { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive — Mobile additions (<768px)
   ============================================================ */
@media (max-width: 767px) {
  .section-snapshot, .section-founder, .section-timeline,
  .section-purpose, .section-values, .section-ceo,
  .section-capabilities, .section-urban-numbers,
  .section-visual-grid, .section-register,
  .section-design-approach, .section-interior-portfolio,
  .section-facade, .section-delivery,
  .section-framework, .section-site-assistant,
  .section-gov-statement, .section-position,
  .section-entity-uae, .section-entity-grid, .section-clients,
  .section-direct-enquiries, .section-email-enquiry,
  .section-contact-entities { padding: 56px var(--px); }
  .section-feature-block { padding: 56px var(--px); flex-direction: column; gap: 24px; }

  .cap-grid, .values-grid, .approach-cards,
  .delivery-grid, .framework-steps, .assistant-cards,
  .entity-two-col                       { grid-template-columns: 1fr; }
  .case-block                           { grid-template-columns: 1fr; }
  .case-block--reverse                  { direction: ltr; }
  .case-block__image                    { height: 240px; }
  .case-block__content                  { padding: 28px 24px; }
  .case-block__meta                     { margin: 0 -24px -28px; }
  .facade-grid                          { grid-template-columns: 1fr; }
  .portfolio-grid                       { grid-template-columns: 1fr; }
  .visual-grid                          { grid-template-columns: repeat(2, 1fr); }
  .register-grid                        { grid-template-columns: repeat(2, 1fr); }
  .clients-two-col                      { grid-template-columns: 1fr; gap: 40px; }
  .enquiry-blocks                       { grid-template-columns: 1fr; }
  .contact-entities-grid                { grid-template-columns: 1fr; }
  .email-enquiry-grid                   { grid-template-columns: 1fr; }

  .section-heading    { font-size: 28px; }
  .purpose-quote      { font-size: 24px; }
  .gov-statement__main { font-size: 28px; }
  .feature-block-heading { font-size: 28px; }
}

/* ============================================================
   Nav — active CTA state
   ============================================================ */
.nav-cta--active {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================================
   Page — Contact (channel blocks)
   ============================================================ */
.section-contact-channels {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-block {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-block__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.contact-block__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-all;
}
.contact-block__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #444;
  flex: 1;
}
.contact-block__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--stone);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: block;
  transition: color 0.15s;
}
.contact-block__link:hover { color: var(--ink); }

/* Email CTA section */
.section-email-cta {
  background: var(--ink);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section-email-cta .section-heading { color: var(--paper); }
.section-email-cta .section-lead { color: #cfcdc7; }
.email-cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.btn--dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--paper);
}
.btn--dark:hover {
  background: #3a3a38;
  border-color: var(--stone);
}
.btn--email {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 24px 28px;
  height: auto;
}
.btn__label {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn__sublabel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--muted-dark);
  text-transform: uppercase;
}

/* Legal entities */
.section-legal-entities {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-entities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.legal-entity-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-entity-card__market {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.legal-entity-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

/* Downloads */
.section-downloads {
  background: var(--ink-2);
  padding: 60px var(--px);
}
.downloads-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.downloads-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.downloads-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.56px;
  color: var(--paper);
}
.downloads-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #cfcdc7;
  max-width: 500px;
}
.downloads-action { flex-shrink: 0; }

/* ============================================================
   Responsive — Contact page additions
   ============================================================ */
@media (max-width: 1279px) {
  .contact-blocks      { grid-template-columns: 1fr; }
  .email-cta-buttons   { grid-template-columns: 1fr; }
  .legal-entities-grid { grid-template-columns: 1fr; }
  .downloads-inner     { flex-direction: column; align-items: flex-start; gap: 32px; }
  .section-contact-channels,
  .section-email-cta,
  .section-legal-entities { padding: 64px var(--px); }
}
@media (max-width: 767px) {
  .section-contact-channels,
  .section-email-cta,
  .section-legal-entities,
  .section-downloads   { padding: 56px var(--px); }
  .contact-block__heading { font-size: 16px; }
  .downloads-heading   { font-size: 22px; }
}


/* ════════════════════════════════════════════════════════════
   FIGMA MATCHING CORRECTION — overrides + new components
   (placed last so base overrides win; new MQs at the very end
    re-collapse responsive grids)
   ════════════════════════════════════════════════════════════ */

/* Shared helpers */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}
.hero__note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--muted-dark);
}

/* ── About — Snapshot (2-col) ── */
.section-snapshot { display: flex; flex-direction: column; gap: 40px; }
.snapshot-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.snapshot-right { gap: 18px; }
.snapshot-year {
  color: var(--stone);
  opacity: 0.45;
  font-size: 64px;
  line-height: 1;
}

/* ── About — Founder (left identity / right bio) ── */
.founder-left { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.founder-name {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--ink);
}
.founder-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.54px;
  color: var(--stone);
  text-transform: uppercase;
}
.founder-creds { margin-top: 16px; width: 100%; }
.cred-item__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--stone);
  text-transform: uppercase;
}
.founder-right { display: flex; flex-direction: column; gap: 18px; padding-top: 4px; }

/* ── About — Journey head ── */
.timeline-head { display: flex; flex-direction: column; gap: 16px; }

/* ── About — Purpose & Promise (2-col) ── */
.section-purpose {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: none;
}
.purpose-left { display: flex; flex-direction: column; gap: 16px; }
.purpose-right { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.purpose-body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 29px;
  color: #333;
}
.purpose-promise {
  background: var(--stone-tint);
  border-left: 2px solid var(--stone);
  padding: 24px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

/* ── About — CEO portrait wrapper ── */
.ceo-portrait-wrap { width: 100%; }

/* ── What We Do — Info split (Z Arch Hub / Governance) ── */
.section-info-split {
  background: var(--paper-2);
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.info-split__head { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.info-split__note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
  max-width: 420px;
}
.info-split__body { display: flex; flex-direction: column; gap: 24px; padding-top: 36px; }
.info-split__text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 29px;
  color: #333;
}
.info-split__strip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--stone);
  text-transform: uppercase;
}

/* ── Projects — Split hero + Public Record Standard ── */
.hero--split { padding-bottom: 80px; }
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: end;
}
.record-standard {
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.03);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.record-standard__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--stone);
  text-transform: uppercase;
}
.record-standard__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}
.record-standard__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 21px;
  color: #cfcdc7;
}
.case-record-head {
  background: var(--paper);
  padding: 72px var(--px) 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Projects — Selected Works / Visual Record ── */
.section-works {
  background: #f7f6f2;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.work-tile { position: relative; overflow: hidden; background: var(--stone-tint); }
.work-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-tile:hover img { transform: scale(1.05); }
.work-tile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(to top, rgba(20,19,17,0.88), rgba(20,19,17,0));
}
.work-tile__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.2px;
  color: #cfcdc7;
  text-transform: uppercase;
}
.work-tile__title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ── Projects — Project Portfolio register ── */
.section-portfolio-register {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portfolio-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.portfolio-group {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-group__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.portfolio-group__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.portfolio-group__list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.portfolio-group__list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--stone);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
}

/* ── Z Arch Hub ── */
.approach-cards--two { grid-template-columns: repeat(2, 1fr); }
.facade-card__content { display: flex; flex-direction: column; gap: 5px; }
.facade-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--stone);
  text-transform: uppercase;
}
.section-visual-record { background: #f7f6f2; }
.archhub-cta {
  background: var(--ink);
  padding: 48px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.archhub-cta__text {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  color: var(--paper);
}
.archhub-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  border: 1px solid var(--paper);
  padding: 13px 22px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.archhub-cta__link:hover { background: var(--paper); color: var(--ink); }

/* ── Z Command — Governance control panel (horizontal flow) ── */
.govctl {
  background: #1a1a18;
  border-left: 1px solid #2e2e2a;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.govctl__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--muted-dark);
  text-transform: uppercase;
}
.govctl__title {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
}
.govctl__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 21px;
  color: #cfcdc7;
}
.govctl__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.govctl__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 12px 10px;
  border: 1px solid #3a3a38;
  background: #1c1c1a;
}
.govctl__step--active { border-color: var(--stone); background: rgba(146,139,122,0.15); }
.govctl__num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted-dark); }
.govctl__step--active .govctl__num { color: var(--stone); }
.govctl__name { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; color: var(--paper); }
.govctl__gate {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--stone);
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--stone);
  padding: 10px;
  margin-top: 6px;
}

/* ── Z Command — Applied field module (2-col) ── */
.assistant-cards--two { grid-template-columns: repeat(2, 1fr); }

/* ── Z Command — Administrative Control Gate ── */
.section-admin-gate {
  background: var(--ink);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.admin-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.admin-gate-left { display: flex; flex-direction: column; gap: 20px; }
.admin-gate-statement {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: var(--paper);
}
.admin-gate-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #cfcdc7;
  max-width: 460px;
}
.admin-gate-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.admin-gate-tile {
  background: var(--ink-2);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.admin-gate-tile__num { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.2px; color: var(--stone); }
.admin-gate-tile__title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--paper);
  text-transform: uppercase;
}
.admin-gate-tile__body { font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 18px; color: var(--muted-dark); }
.admin-gate-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  flex-wrap: wrap;
}
.admin-gate-foot__strip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  color: var(--stone);
  text-transform: uppercase;
}
.admin-gate-foot__note { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted-dark); }
.admin-gate-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Presence — Hero map ── */
.hero--presence { padding-bottom: 64px; }
.hero__split--presence {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}
.presence-map { position: relative; }
.presence-map svg { width: 100%; height: auto; display: block; }
.presence-map__caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--muted-dark);
  text-transform: uppercase;
  text-align: right;
  margin-top: 8px;
}

/* ── Presence — UAE licensed entity ── */
.section-uae {
  background: var(--paper);
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.uae-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: stretch; }
.uae-card { background: var(--ink); padding: 32px 30px; display: flex; flex-direction: column; gap: 12px; }
.uae-card__badge {
  margin-bottom: 28px;
  width: 260px;
  max-width: 100%;
}
.uae-card__badge img { width: 100%; height: auto; display: block; }
.uae-card__market {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--stone);
  text-transform: uppercase;
}
.uae-card__name { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--paper); line-height: 1.4; }
.uae-card__addr { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 20px; color: var(--muted-dark); }
.uae-right { display: flex; flex-direction: column; gap: 28px; }
.licensed { display: flex; flex-direction: column; gap: 20px; flex: 1; background: var(--paper-2); padding: 28px 32px; }
.licensed__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
}
.licensed__list { display: flex; flex-direction: column; gap: 10px; }
.licensed__list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.licensed__list li::before { content: '\2014'; position: absolute; left: 0; color: var(--stone); }
.uae-highlight {
  background: var(--stone-tint);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.uae-highlight__title { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.uae-highlight__body { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 21px; color: #444; }
.uae-highlight__also { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.6px; color: var(--stone); }
.entity-card__addr { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 20px; color: var(--muted); }

/* ── Presence — Clients ── */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.client-item {
  background: transparent;
  padding: 14px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.client-item::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--stone);
}
.client-item__name { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); }
.client-item__meta { font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--muted); }
.clients-note { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); font-style: italic; max-width: 760px; }

/* ── Contact — Direct enquiries / Email an enquiry ── */
.section-contact { background: var(--paper); padding: 80px var(--px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.direct-enquiries { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.enquiry-line { display: flex; flex-direction: column; gap: 6px; }
.enquiry-line__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--stone);
  text-transform: uppercase;
}
.enquiry-line__value { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.enquiry-line__value a { color: inherit; transition: color 0.15s; }
.enquiry-line__value a:hover { color: var(--stone); }
.enquiry-line__value--web {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #444;
}
.email-enquiry { display: flex; flex-direction: column; gap: 20px; }
.email-enquiry__intro { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 27px; color: #333; }
.email-btns { display: flex; flex-direction: column; gap: 12px; }
.email-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.email-btn:hover { border-color: var(--stone); background: var(--stone-tint); }
.email-btn .btn__arrow { color: var(--stone); font-family: 'IBM Plex Mono', monospace; }
.email-enquiry__note { font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 19px; color: var(--muted); }

/* ── Contact — Legal entities ── */
.section-legal-entities { background: var(--paper-2); }
.legal-entity-card__addr { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 20px; color: var(--muted); }
.legal-entities-note { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); font-style: italic; margin-top: 4px; }

/* ════════ Responsive — Figma correction (must follow base overrides) ════════ */
@media (max-width: 1279px) {
  .snapshot-grid        { grid-template-columns: 1fr; gap: 36px; }
  .section-purpose      { grid-template-columns: 1fr; gap: 36px; }
  .section-info-split   { grid-template-columns: 1fr; gap: 36px; }
  .info-split__body     { padding-top: 0; }
  .hero__split          { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .record-standard      { max-width: 440px; }
  .works-grid           { grid-template-columns: repeat(3, 1fr); }
  .portfolio-groups     { grid-template-columns: repeat(2, 1fr); }
  .facade-grid          { grid-template-columns: repeat(2, 1fr); }
  .admin-gate-grid      { grid-template-columns: 1fr; gap: 32px; }
  .hero__split--presence { grid-template-columns: 1fr; gap: 40px; }
  .presence-map         { max-width: 520px; }
  .uae-grid             { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid         { grid-template-columns: 1fr; gap: 44px; }
  .section-uae, .section-clients, .section-contact,
  .section-admin-gate, .section-works,
  .section-portfolio-register { padding: 64px var(--px); }
}

@media (max-width: 767px) {
  .section-purpose, .section-info-split, .section-uae,
  .section-clients, .section-contact, .section-admin-gate,
  .section-works, .section-portfolio-register { padding: 56px var(--px); }
  .case-record-head     { padding: 48px var(--px) 28px; }
  .approach-cards--two  { grid-template-columns: 1fr; }
  .assistant-cards--two { grid-template-columns: 1fr; }
  .works-grid           { grid-template-columns: repeat(2, 1fr); }
  .portfolio-groups     { grid-template-columns: 1fr; }
  .admin-gate-tiles     { grid-template-columns: 1fr; }
  .admin-gate-statement { font-size: 26px; }
  .admin-gate-foot      { flex-direction: column; align-items: flex-start; gap: 10px; }
  .clients-grid         { grid-template-columns: 1fr; }
  .licensed__list       { grid-template-columns: 1fr; }
  .uae-card             { padding: 26px 24px; }
  .archhub-cta          { flex-direction: column; align-items: flex-start; padding: 48px var(--px); gap: 24px; }
  .archhub-cta__text    { font-size: 22px; }
  .enquiry-line__value  { font-size: 18px; }
  .founder-name         { font-size: 24px; }
}

/* ════════════════════════════════════════════════════════════
   Visual Matching Sprint — Figma alignment corrections
   ════════════════════════════════════════════════════════════ */

/* ── Z Command: Admin Gate → LIGHT section (Figma: white bg, ink text) ── */
.section-admin-gate {
  background: var(--paper);
  color: var(--ink);
}
.admin-gate-statement {
  color: var(--ink);
}
.admin-gate-body {
  color: #444;
}
.admin-gate-tiles {
  background: var(--line);
  border-color: var(--line);
}
.admin-gate-tile {
  background: var(--paper);
}
.admin-gate-tile__num {
  color: var(--stone);
}
.admin-gate-tile__title {
  color: var(--ink);
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0;
}
.admin-gate-tile__body {
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}
.admin-gate-foot {
  border-top-color: var(--line);
}
/* Hide the old inline quote — moved to separate .section-gov-statement */
.admin-gate-quote { display: none; }

/* ── Z Command: Gov-statement dark strip (already styled, just ensure it shows) ── */
.section-gov-statement {
  background: var(--ink);
  padding: 72px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.gov-statement__main {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--paper);
  max-width: 700px;
}
.gov-statement__sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #cfcdc7;
  max-width: 560px;
}

/* ── Readability improvements (body, meta, card text) ── */
.meta-tile__key  { font-size: 10px; letter-spacing: 1px; }
.meta-tile__val  { font-size: 13px; }
.case-block__tag { font-size: 12px; letter-spacing: 1.2px; }
.case-block__desc { font-size: 16px; line-height: 26px; }

.framework-step__body  { font-size: 14px; line-height: 22px; }
.assistant-card__title { font-size: 19px; }
.assistant-card__body  { font-size: 14px; line-height: 22px; }

.timeline-card__event  { font-size: 14px; }
.timeline-card__detail { font-size: 13px; line-height: 21px; }

.cap-card__body       { font-size: 15px; line-height: 24px; }
.cap-card__list li    { font-size: 13px; line-height: 22px; }

.portfolio-card__title { font-size: 14px; }
.facade-card__title    { font-size: 14px; }

.ceo-body { font-size: 16px; line-height: 27px; }

.uae-card__addr    { font-size: 14px; line-height: 22px; }
.entity-card__addr { font-size: 14px; line-height: 22px; }
.legal-entity-card__addr { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 22px; color: var(--muted); }
.client-item__meta { font-size: 13px; }

/* ── Projects: case-block meta tiles more breathing room ── */
.case-block__meta { gap: 6px; }
.meta-tile { padding: 14px 18px; gap: 4px; }

/* ── Responsive: admin-gate light mode adjustments ── */
@media (max-width: 1279px) {
  .section-gov-statement { padding: 64px var(--px); }
}
@media (max-width: 767px) {
  .section-gov-statement { padding: 56px var(--px); }
  .gov-statement__main   { font-size: 26px; }
}

/* ================================================================
   Projects page — Builder/Figma layout overrides (scoped to .page-projects)
   ================================================================ */

/* Hero: 500px height, Inter 46px/800, wider record panel */
.page-projects .hero--split {
  min-height: 500px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-projects .hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -1.12px;
}
.page-projects .hero__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #f7f6f2;
  max-width: 660px;
}
.page-projects .hero__split {
  grid-template-columns: 1fr 390px;
  gap: 44px;
}
.page-projects .record-standard {
  background: #161615;
  border: 1px solid #3a3a38;
  border-top: 3px solid #928b7a;
  padding: 28px;
  gap: 12px;
}
.page-projects .record-standard__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.page-projects .record-standard__body {
  font-size: 13.5px;
  line-height: 20px;
  color: #f7f6f2;
}

/* Case blocks: Figma ~40/60 split, 310px image height, meta in 4-col row */
.page-projects .case-block {
  grid-template-columns: 2fr 3fr;
}
.page-projects .case-block__image {
  /* aspect-ratio locks the 1280px Figma crop (477px col / 310px height).
     At 1280px this gives ≈310px tall; grows proportionally at wider viewports
     so the crop never drifts from the centre of the image. */
  aspect-ratio: 477 / 310;
  height: auto;
}
.page-projects .case-block__title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.page-projects .case-block__meta {
  grid-template-columns: repeat(4, 1fr);
}
.page-projects .meta-tile__val {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* Visual Record grid: Figma white-card style, caption below image */
.page-projects .works-grid {
  gap: 20px;
}
.page-projects .work-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: static;
}
.page-projects .work-tile__img {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--stone-tint);
}
.page-projects .work-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  aspect-ratio: unset;
}
.page-projects .work-tile:hover .work-tile__img img {
  transform: scale(1.03);
}
.page-projects .work-tile__cap {
  position: static;
  padding: 10px 4px 4px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-projects .work-tile__label {
  color: var(--stone);
  font-size: 8.5px;
  letter-spacing: 1.02px;
}
.page-projects .work-tile__title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.33;
}

/* Portfolio register: 3-col row 1, 2-col centered row 2 */
.page-projects .portfolio-groups {
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.page-projects .portfolio-group {
  grid-column: span 2;
}
.page-projects .portfolio-group:nth-child(4) {
  grid-column: 2 / span 2;
}
.page-projects .portfolio-group:nth-child(5) {
  grid-column: 4 / span 2;
}
.page-projects .portfolio-group__heading {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
}
.page-projects .portfolio-group__list li {
  font-size: 12.5px;
  line-height: 18px;
  color: #6b6961;
}

/* Responsive overrides for .page-projects */
@media (max-width: 1279px) {
  .page-projects .hero__split { grid-template-columns: 1fr 340px; }
  .page-projects .portfolio-groups { grid-template-columns: repeat(2, 1fr); }
  .page-projects .portfolio-group,
  .page-projects .portfolio-group:nth-child(4),
  .page-projects .portfolio-group:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 1023px) {
  .page-projects .case-block { grid-template-columns: 1fr 1fr; }
  .page-projects .case-block__image { aspect-ratio: 9 / 5; height: auto; }
  .page-projects .case-block__meta { grid-template-columns: repeat(2, 1fr); }
  .page-projects .works-grid { grid-template-columns: repeat(2, 1fr); }
  .page-projects .portfolio-groups { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .page-projects .hero__split { grid-template-columns: 1fr; }
  .page-projects .hero__title { font-size: 32px; line-height: 40px; }
  .page-projects .record-standard { max-width: none; }
  .page-projects .case-block { grid-template-columns: 1fr; }
  .page-projects .case-block__image { aspect-ratio: 16 / 9; height: auto; }
  .page-projects .case-block__meta { grid-template-columns: repeat(2, 1fr); }
  .page-projects .works-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Stronger record separation: 24px warm-gray gap between stacked project blocks */
  .page-projects .section-case-blocks { gap: 24px; }
}

@media (max-width: 767px) {
  /* Presence route meta: shrink to single row on iPhone */
  .page-presence .hero__meta {
    font-size: 8px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
  }
}

/* ─── Z Command — page-scoped overrides ──────────────────────────────────── */

/* Hero: title/subtitle sizing */
.page-zcommand .hero__title {
  font-size: 68px;
  line-height: 76px;
  letter-spacing: -1.36px;
}
.page-zcommand .hero__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #f7f6f2;
}

/* Hero: decorative diagonal line motif — exact Builder spec (18 divs, 460×500px clipped container) */
.page-zcommand .hero-motif {
  position: absolute;
  top: 0;
  right: 0;
  width: 460px;
  height: 500px;
  opacity: 0.12;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Hero govctl panel: absolutely positioned to match Figma exactly
   Figma: left:690px, width:490px → right edge at 1180px (100px gap from 1280px edge)
   Ours: width:460px, right:100px → right edge at 1180px (same gap) */
.page-zcommand .hero__right.govctl {
  border: 1px solid #3a3a38;
  border-top: 3px solid var(--stone);
  background: rgba(22,22,21,0.90);
  position: absolute;
  overflow: hidden;
  right: 100px;
  top: 60px;
  width: 460px;
  height: 310px;
  padding: 26px 32px 20px;
  gap: 0;
  z-index: 1;
}
.page-zcommand .hero__right.govctl::after {
  content: '04';
  position: absolute;
  right: 16px;
  top: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -3.8px;
  color: rgba(146,139,122,0.10);
  pointer-events: none;
  user-select: none;
}
/* Panel typography: Figma-exact sizes and spacing */
.page-zcommand .govctl__label { margin-bottom: 22px; }
.page-zcommand .govctl__title {
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  line-height: 31px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-bottom: 9px;
}
.page-zcommand .govctl__desc {
  font-size: 13px;
  line-height: 19px;
  color: #f7f6f2;
  margin-bottom: 14px;
}
/* Hairline separator above rail (matches Figma "upper hairline" at 152px) */
.page-zcommand .approvalrail {
  margin: 0;
  padding: 2px 0 0;
  border-top: 1px solid #3a3a38;
}
/* Reposition connector line for new padding-top:2px (was 16px) */
.page-zcommand .approvalrail::before {
  top: calc(2px + 14px + 8px + 6px);
}
/* Gate pushed to panel bottom via auto top margin */
.page-zcommand .govctl__gate { margin-top: auto; }

/* Approval rail — horizontal nodes with connecting line */
.approvalrail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 16px 0 8px;
  margin: 8px 0;
}
.approvalrail::before {
  content: '';
  position: absolute;
  height: 1px;
  background: #3a3a38;
  left: 6px;
  right: 6px;
  top: calc(16px + 14px + 8px + 6px);
  z-index: 0;
}
.approvalrail__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.approvalrail__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--muted-dark);
  line-height: 14px;
}
.approvalrail__node {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3a3a38;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.approvalrail__step--active .approvalrail__node {
  background: var(--stone);
}
.approvalrail__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--paper);
}

/* Section framework: warm cream bg, white step cards */
.page-zcommand .section-framework {
  background: #f7f6f2;
}
.page-zcommand .framework-step {
  background: var(--paper);
}

/* Applied field module: white bg and white cards */
.page-zcommand .section-site-assistant {
  background: var(--paper);
}
.page-zcommand .assistant-card {
  background: var(--paper);
}

/* Section heading and lead: match Figma Inter 28px */
.page-zcommand .section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -0.28px;
}
.page-zcommand .section-lead {
  font-size: 15px;
  line-height: 22px;
  color: #6c6962;
}

/* Admin gate section: cream bordered box with stone left rule */
.page-zcommand .section-admin-gate {
  background: var(--paper);
  padding: 56px var(--px);
  gap: 0;
}
.page-zcommand .admin-gate-box {
  background: #f7f6f2;
  border: 1px solid var(--line);
  border-left: 4px solid var(--stone);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.page-zcommand .admin-gate-statement {
  font-family: 'Inter', sans-serif;
  font-size: 31px;
  line-height: 38px;
  letter-spacing: -0.31px;
  font-weight: 700;
  color: var(--ink);
}
.page-zcommand .admin-gate-body {
  font-size: 14px;
  line-height: 22px;
  color: #6c6962;
  max-width: 440px;
}
.page-zcommand .admin-gate-tiles {
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}
.page-zcommand .admin-gate-tile {
  background: var(--paper);
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  padding: 20px 22px;
  gap: 0;
}
.page-zcommand .admin-gate-tile__num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.7px;
  color: var(--stone);
  padding-top: 2px;
}
.page-zcommand .admin-gate-tile__title {
  grid-column: 2;
  grid-row: 1;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.86px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 13px;
  margin-bottom: 8px;
}
.page-zcommand .admin-gate-tile__body {
  grid-column: 2;
  grid-row: 2;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #6c6962;
}
.page-zcommand .admin-gate-foot {
  border: 1px solid var(--line);
  border-top: none;
  padding: 16px 24px;
  background: var(--paper);
  margin-top: 0;
}
.page-zcommand .admin-gate-foot__strip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.1px;
  color: var(--stone);
}
.page-zcommand .admin-gate-foot__note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6c6962;
}

/* Governance statement: Figma uses #161615 bg, Inter 600 28px centred */
.page-zcommand .section-gov-statement {
  background: #161615;
  padding: 72px var(--px);
}
.page-zcommand .gov-statement__main {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
  max-width: 700px;
}

/* Position: Inter heading to match Figma */
.page-zcommand .position-heading {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.28px;
  font-weight: 700;
}
.page-zcommand .position-body {
  font-size: 15px;
  line-height: 22px;
  color: #6b6961;
}

/* Responsive */
@media (max-width: 1279px) {
  /* Motif is designed for the 1280px desktop layout only — hide at tablet/mobile */
  .page-zcommand .hero-motif { display: none; }
}
@media (max-width: 767px) {
  .approvalrail { padding: 12px 0; flex-wrap: wrap; gap: 8px; }
  .approvalrail::before { display: none; }
  .approvalrail__step { flex-direction: row; align-items: center; flex: 0 0 calc(50% - 8px); gap: 8px; }
  .page-zcommand .admin-gate-box { padding: 24px 20px; }
  .page-zcommand .section-admin-gate { padding: 40px var(--px); }
  .page-zcommand .gov-statement__main { font-size: 22px; line-height: 30px; }
  .page-zcommand .position-heading { font-size: 24px; }

  /* Compact mobile governance panel — show in normal flow below hero text */
  .page-zcommand .hero--command { overflow: visible; min-height: 0; }
  .page-zcommand .hero__right.govctl {
    display: flex;
    position: static;
    width: 100%;
    height: auto;
    right: auto;
    top: auto;
    padding: 20px;
    gap: 12px;
    border-top: 3px solid var(--stone);
    border-left: 1px solid #3a3a38;
    border-right: 1px solid #3a3a38;
    border-bottom: 1px solid #3a3a38;
    overflow: visible;
  }
  .page-zcommand .hero__right.govctl::after { display: none; }
  .page-zcommand .govctl__label { margin-bottom: 8px; }
  .page-zcommand .govctl__title { font-size: 17px; line-height: 23px; margin-bottom: 0; }
  .page-zcommand .govctl__desc { font-size: 12px; line-height: 17px; margin-bottom: 0; }
  .page-zcommand .govctl__gate { padding: 7px 10px; font-size: 8px; }
  .page-zcommand .hero__title { font-size: 36px; line-height: 44px; letter-spacing: -0.72px; }
}

/* ─── About — page-scoped overrides ──────────────────────────────────────── */
/* Hero title: widen max-width so "From an architectural practice" fits one line
   at desktop before the <br>, giving the Figma 2-line result */
.page-about .hero__title { max-width: 920px; }

/* ─── Z Arch Hub — page-scoped overrides ─────────────────────────────────── */
/* Hero title: widen max-width so "Architecture and interior design" fits one line
   at desktop before the <br>, giving the Figma 2-line result */
.page-zarchhub .hero__title { max-width: 960px; }
.page-zarchhub .section-interior-portfolio {
  background: var(--paper);
}
.page-zarchhub .section-facade:not(.section-visual-record) {
  background: #f7f6f2;
}
.page-zarchhub .section-visual-record .facade-card__image {
  aspect-ratio: 376 / 300;
}
@media (max-width: 767px) {
  .page-zarchhub .facade-grid { grid-template-columns: 1fr 1fr; }
  .page-zarchhub .portfolio-grid { grid-template-columns: 1fr; }
}
