/* ============================================================
   GACE-inspired design — OMC Branding
   Minimal · Editorial · Professional Engineering
============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0e1520;
  --dark-alt:    #151f2e;
  --dark-mid:    #1c2a3d;
  --accent:      #c93535;
  --accent-dark: #a82b2b;
  --white:       #ffffff;
  --off-white:   #f6f6f4;
  --border:      rgba(255,255,255,0.1);
  --border-dark: rgba(0,0,0,0.1);
  --text-muted:  #8a97a8;
  --text-body:   #4a5568;

  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  /* Client feedback: unify typography — headings use the sans body font, not serif */
  --font-serif: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-solid {
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }

.logo-img {
  height: 40px;
  width: auto;
}

/* Primary Nav */
.primary-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-link.is-active { color: var(--white); }
.nav-link.is-active::after { width: 100%; }

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header-social {
  display: flex;
  gap: 14px;
}

.header-social a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.header-social a:hover { color: var(--white); }

/* Consult Button */
.btn-consult {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-consult:hover { background: var(--accent-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   MOBILE DRAWER
============================================================ */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 80vw);
  height: 100%;
  z-index: 950;
  background: var(--dark);
  padding: 80px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
}

.mobile-drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.drawer-close:hover { color: var(--white); }

.mobile-nav-list { display: flex; flex-direction: column; gap: 6px; }

.mobile-nav-list a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-list a:hover {
  color: var(--white);
  padding-left: 6px;
}

.mobile-nav-list a.is-active {
  color: var(--white);
  padding-left: 6px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.drawer-social {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.drawer-social a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.drawer-social a:hover { color: var(--white); }

.btn-consult-drawer {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-consult-drawer:hover { background: var(--accent-dark); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 7s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s var(--ease);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,21,32,0.5) 0%,
    rgba(14,21,32,0.3) 40%,
    rgba(14,21,32,0.65) 100%
  );
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 0; right: 0;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
}

.hero-type {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  transition: opacity 0.4s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  transition: opacity 0.4s;
}

.hero-loc {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: opacity 0.4s;
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-arrow:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 52px;
  justify-content: center;
}

.hero-current { color: var(--white); }
.hero-sep { opacity: 0.4; }

/* Explore link */
.hero-explore {
  position: absolute;
  bottom: 50px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.hero-explore:hover { color: var(--white); }

.hero-explore svg { transition: transform 0.2s; }
.hero-explore:hover svg { transform: translateX(3px); }


/* ============================================================
   VALUES SECTION
============================================================ */
.values {
  background: var(--white);
  padding: 100px 0;
}

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-card {
  padding: 56px 40px 56px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}

.value-card:first-child { border-left: 1px solid rgba(0,0,0,0.07); }

.value-card:hover { background: #fafafa; }

.value-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--dark-alt);
  transition: border-color 0.3s, color 0.3s;
}

.value-card:hover .value-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.value-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.value-desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
}


/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 60px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat strong span {
  font-size: 28px;
  color: var(--accent);
}

.stat-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}


/* ============================================================
   SERVICES SECTION
============================================================ */
.svc-section {
  background: var(--off-white);
  padding: 100px 0;
}

.svc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.svc-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.svc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.svc-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.25s;
}

.svc-card:hover { background: #fafafa; }

.svc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--dark-alt);
  transition: border-color 0.25s, color 0.25s;
}

.svc-card:hover .svc-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.svc-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-card-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 20px;
}

.svc-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}

.svc-footer {
  margin-top: 48px;
  text-align: center;
}

.link-all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.link-all:hover { color: var(--accent); border-color: var(--accent); }


/* ============================================================
   PROJECTS SECTION
============================================================ */
.proj-section {
  background: var(--white);
  padding: 100px 0;
}

.proj-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.proj-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.proj-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
}

.proj-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.proj-all:hover { color: var(--dark); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.proj-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark);
  min-height: 340px;
}

.proj-card--large {
  grid-column: 1 / -1;
  min-height: 480px;
}

.proj-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.proj-card:hover .proj-img { transform: scale(1.03); }

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,21,32,0.88) 0%, rgba(14,21,32,0.15) 60%);
  pointer-events: none;
}

.proj-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 36px;
  color: var(--white);
}

.proj-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.proj-dot { opacity: 0.4; }

.proj-card-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 10px;
}

.proj-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  max-width: 560px;
}

.proj-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.proj-card:hover .proj-link { color: var(--white); }


/* ============================================================
   PRESS SECTION
============================================================ */
.press-section {
  background: #f8f7f5;
  padding: 100px 0;
  color: var(--dark);
}

.press-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.press-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.press-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.press-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.press-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}

.press-title em { font-style: italic; }

.press-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

.press-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 18px rgba(0,0,0,0.05);
}

.press-cover {
  background: var(--dark);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
}

.press-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.press-cover-mast {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.press-cover-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.press-cover-headline {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  flex: 1;
  margin-bottom: 20px;
}

.press-cover-by {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.press-cover-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: auto;
}

.press-body {
  padding: 52px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.press-pub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.press-pub::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.press-article-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}

.press-byline {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.press-excerpt {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 40px;
}

.press-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
  margin-top: auto;
}

.press-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  padding-right: 8px;
}

.press-stats strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.press-stats strong em {
  font-style: normal;
  font-size: 14px;
  color: var(--accent);
  margin-left: 2px;
}

.press-stats span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testi-section {
  background: var(--white);
  padding: 100px 0;
}

.testi-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.testi-head {
  margin-bottom: 56px;
}

.testi-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}

.testi-sub {
  font-size: 14px;
  color: var(--text-body);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.testi {
  background: var(--off-white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-stars {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #c93535;
}

.testi blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  flex: 1;
  font-style: italic;
}

.testi figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}


/* ============================================================
   CTA FORM SECTION (overrides)
============================================================ */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,53,53,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-split {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-left { padding-top: 8px; }

.cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.cta-trust li svg { flex-shrink: 0; color: var(--accent); }

/* Contact Form */
.cta-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row { display: flex; gap: 16px; }
.cf-row--2 > * { flex: 1; }

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cf-field select { appearance: none; cursor: pointer; }
.cf-field textarea { resize: vertical; min-height: 100px; }

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: rgba(255,255,255,0.3); }

.cf-field select option { background: var(--dark-alt); color: var(--white); }

.cf-submit {
  height: 52px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.cf-submit:hover { background: var(--accent-dark); }

.cf-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

.cf-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.cf-success.is-visible { display: flex; }


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark-alt);
  color: var(--white);
  padding-top: 72px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.8fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social-links {
  display: flex;
  gap: 14px;
}

.footer-social-links a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-links a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-col li strong {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Client feedback: shift the second (NY) office block down for clearer separation */
.footer-col li.footer-addr-shift { margin-top: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-size: 13px;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.28);
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(3) { border-left: 1px solid rgba(0,0,0,0.07); }
  .value-card:nth-child(1),
  .value-card:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.07); }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  .proj-grid { grid-template-columns: 1fr; }
  .proj-card--large { grid-column: auto; min-height: 420px; }

  .press-card { grid-template-columns: 220px 1fr; }
  .press-body { padding: 40px; }

  .press-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-split { gap: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 48px; }
}

@media (max-width: 900px) {
  .primary-nav,
  .header-social,
  .btn-consult { display: none; }

  .nav-toggle { display: flex; }

  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat { width: 50%; padding: 24px 20px; }
  .stat-divider:nth-child(4) { display: none; }
  .stat-divider { height: 40px; }

  .hero-explore { display: none; }

  .press-card { grid-template-columns: 1fr; }
  .press-cover { min-height: auto; }
  .press-body { padding: 36px; }

  .cta-split { grid-template-columns: 1fr; gap: 48px; padding: 72px 40px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .header-inner { padding: 0 20px; }
  .logo-img { height: 32px; }

  .values { padding: 64px 0; }
  .values-inner { padding: 0 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none !important; border-left: none !important; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 40px 0; }
  .value-card:last-child { border-bottom: none; }

  .stats-bar { padding: 48px 0; }
  .stats-inner { padding: 0 20px; }
  .stat { width: 50%; padding: 20px 12px; }
  .stat strong { font-size: 36px; }
  .stat-divider:nth-child(2) { display: none; }
  .stat-divider:nth-child(4) { display: none; }
  .stat-divider:nth-child(6) { width: 100%; height: 1px; }

  .svc-section { padding: 64px 0; }
  .svc-inner { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 32px 24px; }

  .proj-section { padding: 64px 0; }
  .proj-inner { padding: 0 20px; }
  .proj-head { flex-direction: column; gap: 16px; }
  .proj-card { min-height: 300px; }
  .proj-card--large { min-height: 360px; }
  .proj-body { padding: 24px; }

  .press-section { padding: 64px 0; }
  .press-inner { padding: 0 20px; }
  .press-stats { grid-template-columns: repeat(2, 1fr); }

  .testi-section { padding: 64px 0; }
  .testi-inner { padding: 0 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { padding: 32px 24px; }

  .cta-split { padding: 64px 20px; }
  .cta-form { padding: 28px 20px; }
  .cf-row--2 { flex-direction: column; }

  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-cert { display: none; }

  .hero-content { bottom: 80px; }
  .hero-controls { bottom: 20px; gap: 14px; }
  .hero-arrow { width: 36px; height: 36px; }
}


/* ============================================================
   Client feedback: justify running body copy site-wide
   (paragraph text only — headings, kickers, labels, roles,
   locations, meta and small notes stay left-aligned)
============================================================ */
.section-sub,
.svc-desc,
.careers-lead,
.job-desc,
.press-sub,
.press-excerpt,
.cta-sub,
.pm-desc,
.approach-lead,
.story-body p {
  text-align: justify;
  text-align-last: left;
}
