/* ============================================================
   LEFT Development — Site Stylesheet
   Dark cinematic hero + light editorial body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --forest:       #022F17;
  --forest-deep:  #001A0D;
  --sage:         #6B8E5A;
  --paper:        #F7F6F2;
  --stone:        #E8E6E0;
  --stone-soft:   #EFEDE7;
  --mid:          #A8A8A1;
  --graphite:     #0F1612;
  --fg-2:         #3D4641;
  --fg-3:         #6A726D;
  --on-dark:      #F7F6F2;
  --on-dark-2:    rgba(247, 246, 242, 0.72);
  --on-dark-3:    rgba(247, 246, 242, 0.5);
  --hairline:     rgba(15, 22, 18, 0.10);
  --hairline-dark:rgba(247, 246, 242, 0.16);

  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-caps:    'Cinzel', 'Trajan Pro', serif;
  --font-sans:    'Hanken Grotesk', 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--forest); color: var(--paper); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 280ms var(--ease), box-shadow 280ms var(--ease),
              border-color 280ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 48.4px; width: auto; transition: opacity 240ms var(--ease); }
.nav-logo .logo-dark { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  position: relative;
  padding: 6px 0;
  transition: color 240ms var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--hairline-dark);
  padding: 10px 22px !important;
  transition: background 240ms var(--ease), color 240ms var(--ease),
              border-color 240ms var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--paper); color: var(--forest) !important; border-color: var(--paper); }

/* Scrolled state */
.nav.scrolled {
  background: rgba(247, 246, 242, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline);
}
.nav.scrolled .nav-logo .logo-white { display: none; }
.nav.scrolled .nav-logo .logo-dark { display: block; }
.nav.scrolled .nav-links a { color: var(--graphite); }
.nav.scrolled .nav-cta { border-color: var(--forest); color: var(--forest) !important; }
.nav.scrolled .nav-cta:hover { background: var(--forest); color: var(--paper) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--on-dark);
  margin: 7px auto;
  transition: transform 280ms var(--ease), opacity 280ms var(--ease),
              background 280ms var(--ease);
}
.nav.scrolled .nav-burger span { background: var(--graphite); }
body.menu-open .nav-burger span { background: var(--paper) !important; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms var(--ease), visibility 320ms var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 400;
  color: var(--paper);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 60ms; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 120ms; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 180ms; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 240ms; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 300ms; }
.mobile-menu .mm-meta {
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--forest-deep);
}
.hero.hero-short { min-height: 64vh; }
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(1, 26, 13, 0.55) 0%,
      rgba(1, 26, 13, 0.18) 34%,
      rgba(1, 26, 13, 0.30) 62%,
      rgba(1, 26, 13, 0.86) 100%),
    rgba(2, 47, 23, 0.16);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 110px);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--on-dark-2);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 17ch;
  margin-bottom: 28px;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--on-dark-2);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline-dark);
  margin-top: clamp(40px, 6vh, 72px);
  padding-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  flex-wrap: wrap;
}
.hero-foot .dot { opacity: 0.5; }

/* Entrance animation for hero content */
.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 800ms var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 150ms; }
.hero-content > *:nth-child(2) { animation-delay: 300ms; }
.hero-content > *:nth-child(3) { animation-delay: 450ms; }
.hero-content > *:nth-child(4) { animation-delay: 600ms; }
.hero-content > *:nth-child(5) { animation-delay: 700ms; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 240ms var(--ease), color 240ms var(--ease),
              border-color 240ms var(--ease);
}
.btn-solid { background: var(--paper); color: var(--forest); }
.btn-solid:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-ghost { border-color: var(--hairline-dark); color: var(--on-dark); }
.btn-ghost:hover { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.btn-forest { background: var(--forest); color: var(--paper); }
.btn-forest:hover { background: var(--forest-deep); }
.btn-outline { border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--paper); }
.btn .arrow { transition: transform 240ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Text link */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 4px;
  transition: gap 240ms var(--ease), opacity 240ms var(--ease);
}
.tlink:hover { gap: 16px; opacity: 0.75; }

/* ============================================================
   Sections / typography
   ============================================================ */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section-stone { background: var(--stone-soft); }
.section-dark { background: var(--forest); color: var(--on-dark); }
.section-deep { background: var(--forest-deep); color: var(--on-dark); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--sage);
}
.section-dark .eyebrow, .section-deep .eyebrow { color: var(--on-dark-2); }
.section-dark .eyebrow::before, .section-deep .eyebrow::before { background: var(--on-dark-2); }

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--graphite);
}
.section-dark .h-display, .section-deep .h-display { color: var(--paper); }
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.section-dark .h-display em, .section-deep .h-display em { color: var(--sage); }

.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  color: var(--fg-2);
  font-weight: 300;
}
.section-dark .lede, .section-deep .lede { color: var(--on-dark-2); }

.body-copy p { margin-bottom: 1.2em; color: var(--fg-2); }
.body-copy p:last-child { margin-bottom: 0; }

/* Two-column statement layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.split-rev { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

/* ============================================================
   Stats band
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.stat { border-top: 1px solid var(--hairline-dark); padding-top: 28px; }
.stat-fig {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 4.6vw, 76px);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 14px;
  font-variant-numeric: lining-nums;
}
.stat-fig sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-dark-2);
  max-width: 24ch;
}

/* ============================================================
   Pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(48px, 5vw, 72px);
}
.pillars-4 { grid-template-columns: repeat(2, 1fr); }
.pillar {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.section-dark .pillar, .section-deep .pillar { border-top-color: var(--hairline-dark); }
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  display: block;
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--graphite);
}
.section-dark .pillar h3, .section-deep .pillar h3 { color: var(--paper); }
.pillar p { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); }
.section-dark .pillar p, .section-deep .pillar p { color: var(--on-dark-2); }

/* ============================================================
   Process steps
   ============================================================ */
.process { margin-top: clamp(40px, 5vw, 64px); }
.process-step {
  display: grid;
  grid-template-columns: 110px minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
}
.process-step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 38px);
  color: var(--sage);
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.2;
  color: var(--graphite);
}
.step-body { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); }

/* Capability tags */
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tag {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  color: var(--fg-2);
}
.section-dark .tag, .section-deep .tag { border-color: var(--hairline-dark); color: var(--on-dark-2); }

/* ============================================================
   Project cards
   ============================================================ */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
  margin-top: clamp(48px, 5vw, 72px);
}
.proj-card { grid-column: span 4; display: block; }
.proj-card.span-6 { grid-column: span 6; }
.proj-card.span-8 { grid-column: span 8; }
.proj-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
/* Uniform green tint across all project imagery */
.proj-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--forest);
  mix-blend-mode: color;
  opacity: 0.30;
  pointer-events: none;
}
.proj-card.span-6 .proj-media, .proj-card.span-8 .proj-media { aspect-ratio: 16 / 10; }
.proj-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.proj-card:hover .proj-media img { transform: scale(1.045); }
.proj-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 26, 13, 0.34), transparent 42%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.proj-card:hover .proj-media::after { opacity: 1; }
.proj-city {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(1, 26, 13, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
}
.proj-info {
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 0;
}
.proj-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.15;
  color: var(--graphite);
  transition: color 240ms var(--ease);
}
.proj-card:hover .proj-name { color: var(--forest); }
.proj-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}

/* ============================================================
   Image band (full-bleed CTA)
   ============================================================ */
.band {
  position: relative;
  padding: clamp(110px, 16vw, 200px) 0;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--forest-deep);
}
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(1, 26, 13, 0.88) 18%, rgba(1, 26, 13, 0.55) 60%, rgba(1, 26, 13, 0.35) 100%);
}
.band .container { position: relative; z-index: 2; }
.band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 32px;
}

/* ============================================================
   Photo strip
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.photo-strip figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.photo-strip figure:hover img { transform: scale(1.04); }

/* ============================================================
   Leadership
   ============================================================ */
.leads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(48px, 5vw, 72px);
}
.lead-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: clamp(28px, 3vw, 44px);
}
.section-stone .lead-card { background: var(--paper); }
.lead-mono {
  width: 64px; height: 64px;
  border: 1px solid var(--forest);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-caps);
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.lead-photo {
  width: 132px; height: 132px;
  object-fit: cover;
  object-position: 50% 30%;
  border: 1px solid var(--hairline);
  filter: grayscale(1) contrast(1.03);
  margin-bottom: 26px;
  display: block;
}
.lead-role {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.lead-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--graphite);
}
.lead-card p { font-size: 15px; line-height: 1.65; color: var(--fg-2); }
.lead-card .lead-edu {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
}
.lead-card.is-tbd { background: transparent; }
.lead-card.is-tbd .lead-mono { border-color: var(--mid); color: var(--mid); }
.lead-card.is-tbd p { color: var(--fg-3); font-style: italic; }

/* Single-partner leadership layout (no extra grid whitespace) */
.leads-solo { grid-template-columns: 1fr; max-width: 860px; }
.lead-card-solo {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
}
.lead-photo-solo { width: 200px; height: 200px; margin-bottom: 0; }
.lead-card-solo .lead-body p { margin-bottom: 1.1em; }
.lead-card-solo .lead-body p:last-of-type { margin-bottom: 0; }
@media (max-width: 640px) {
  .lead-card-solo { grid-template-columns: 1fr; }
  .lead-photo-solo { width: 132px; height: 132px; }
}

/* ============================================================
   Project detail
   ============================================================ */
.detail-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
}
.facts {
  border-top: 1px solid var(--hairline);
}
.facts > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.facts dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.facts dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--graphite);
  text-align: right;
}
.detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Breadcrumb back link */
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  transition: color 240ms var(--ease);
}
.crumb:hover { color: var(--paper); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
}
.contact-item { border-top: 1px solid var(--hairline); padding: 22px 0; }
.contact-item .ci-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.contact-item .ci-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--graphite);
}
.contact-item a.ci-value:hover { color: var(--forest); font-style: italic; }

.form-field { margin-bottom: 28px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--graphite);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(15, 22, 18, 0.22);
  padding: 10px 0;
  border-radius: 0;
  transition: border-color 240ms var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--forest);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--forest-deep);
  color: var(--on-dark);
  padding: clamp(72px, 9vw, 120px) 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.footer-logo img { height: 72px; width: auto; margin-bottom: 28px; }
.footer-tag {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--on-dark-2);
  max-width: 30ch;
  line-height: 1.4;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 15px;
  color: var(--on-dark-2);
  padding: 5px 0;
  transition: color 240ms var(--ease);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-dark-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }
.reveal-d4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hero-content > * { animation-duration: 1ms; }
  .reveal { transition-duration: 1ms; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .proj-card, .proj-card.span-6, .proj-card.span-8 { grid-column: span 6; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-inner { height: 72px; }
  .nav-logo img { height: 41.8px; }
  .split, .split-rev, .detail-head, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .proj-card, .proj-card.span-6, .proj-card.span-8 { grid-column: span 12; }
  .pillars, .pillars-4 { grid-template-columns: 1fr; }
  .leads { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip figure { aspect-ratio: 3 / 2; }
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step .step-body { grid-column: 2; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 86vh; }
  .hero.hero-short { min-height: 56vh; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
