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

:root {
  --ink: #161412;
  --ink-2: #1f1c19;
  --paper: #f6f3ee;
  --paper-2: #efeae2;
  --white: #fbfaf7;
  --bronze: #9a7b4f;
  --bronze-soft: #c4a574;
  --muted: #6e6860;
  --muted-2: #8a847c;
  --line: rgba(22, 20, 18, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --nav-h: 84px;
  --max: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 8px; z-index: 9999; background: #fff; color: #000; padding: 8px 14px; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.wrap-wide { width: min(1480px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex; align-items: center;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s;
}
.site-header.scrolled,
.site-header.force-solid {
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.header-inner {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: inherit; }
.brand img { width: 28px; height: 28px; filter: invert(1); }
.site-header.scrolled .brand img,
.site-header.force-solid .brand img { filter: none; }
.brand-word {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 13px;
}
.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button.nav-link {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  background: none;
  border: 0;
  opacity: 0.88;
}
.nav-item > a:hover,
.nav-item:hover > button.nav-link { opacity: 1; }
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 520px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s var(--ease);
  box-shadow: 0 24px 60px rgba(22, 20, 18, 0.12);
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1; visibility: visible; transform: none;
}
.nav-item:nth-child(2) .mega { left: auto; right: 0; }
.mega a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}
.mega a small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 3px;
}
.mega a:hover { color: var(--bronze); }
.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-left: 8px;
  transition: 0.25s;
}
.header-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.site-header:not(.scrolled):not(.force-solid) .header-cta:hover {
  background: #fff; border-color: #fff; color: var(--ink);
}
.nav-toggle {
  display: none; width: 42px; height: 42px; color: inherit; margin-left: auto;
}
.nav-toggle span { display: block; height: 1px; background: currentColor; margin: 7px 8px; }

.mobile-nav {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--ink);
  z-index: 199;
  padding: 28px 28px 60px;
  overflow: auto;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav .m-label {
  display: block; color: #fff; font-size: 22px; font-weight: 400; padding: 8px 0;
  font-family: var(--serif);
}
.mobile-nav .m-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-top: 18px;
}
.mobile-nav .sub { padding-left: 4px; }
.mobile-nav .sub a { font-size: 16px; font-family: var(--sans); color: rgba(255,255,255,0.72); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 24px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
}
.btn-solid { background: #fff; color: var(--ink); }
.btn-solid:hover { background: var(--paper); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #2a2622; }
.btn-line { border: 1px solid var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero — Poggenpohl full-bleed */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,0.18) 0%, rgba(22,20,18,0.08) 38%, rgba(22,20,18,0.62) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto 96px;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero p.lead {
  margin-top: 22px;
  max-width: 480px;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
}
.hero .cta-row { margin-top: 36px; }

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 72px;
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,0.22), rgba(22,20,18,0.68));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 14ch;
}
.page-hero p { margin-top: 18px; max-width: 560px; color: rgba(255,255,255,0.82); font-size: 17px; font-weight: 300; }

.plain-hero {
  padding: calc(var(--nav-h) + 88px) 0 48px;
  background: var(--paper);
  color: var(--ink);
}
.plain-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.plain-hero p { margin-top: 16px; color: var(--muted); max-width: 640px; }
.plain-hero .kicker { color: var(--bronze); }

.section { padding: 112px 0; }
.section-ink { background: var(--ink); color: #fff; }
.section-paper { background: var(--paper); }
.section-tight { padding: 80px 0; }
.split-head {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: end;
  margin-bottom: 56px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-ink .eyebrow { color: var(--bronze-soft); }
h2.display {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.lede { font-size: 18px; color: var(--muted); max-width: 560px; font-weight: 300; }
.section-ink .lede { color: rgba(255,255,255,0.68); }

.bleed-photo {
  position: relative;
  height: min(92vh, 920px);
  overflow: hidden;
  background: #111;
}
.bleed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bleed-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,20,18,0.78));
}
.bleed-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto 72px;
  color: #fff;
}
.bleed-cap h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.bleed-cap p { margin-top: 12px; color: rgba(255,255,255,0.8); max-width: 460px; font-weight: 300; }
.bleed-cap a {
  display: inline-block;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--bronze-soft);
  padding-bottom: 4px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journey a {
  padding: 28px 8px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
}
.journey a:last-child { border-right: 0; }
.journey a:hover, .journey a.on { color: var(--ink); }
.section-ink .journey { border-color: var(--line-light); }
.section-ink .journey a { color: rgba(255,255,255,0.55); border-color: var(--line-light); }
.section-ink .journey a:hover, .section-ink .journey a.on { color: #fff; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 56px;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  color: var(--bronze-soft);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,0.62); font-size: 13px; letter-spacing: 0.04em; }

.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.exp-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background: var(--ink-2);
}
.exp-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.exp-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(22,20,18,0.78));
}
.exp-card:hover img { transform: scale(1.05); }
.exp-card h3, .exp-card p, .exp-card .more { position: relative; z-index: 1; }
.exp-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.exp-card p { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 300; }
.exp-card .more {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.proj-card { display: block; color: #fff; }
.proj-frame {
  position: relative; overflow: hidden; aspect-ratio: 16 / 11; background: var(--ink);
}
.proj-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.proj-card:hover img { transform: scale(1.04); }
.proj-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 38%, rgba(22,20,18,0.72));
}
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag {
  background: transparent;
  color: #fff;
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 0;
  border: 0;
}
.proj-overlay h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.proj-overlay p { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 4px; font-weight: 300; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.why-item { border-top: 1px solid var(--bronze); padding-top: 22px; }
.why-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 12px 0 10px;
}
.why-item p { color: var(--muted); font-size: 15px; font-weight: 300; }
.section-ink .why-item p { color: rgba(255,255,255,0.68); }

.two-col {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.two-col.top { align-items: start; }
.media-frame { overflow: hidden; background: var(--ink); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.play-btn span {
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(22,20,18,0.2);
  backdrop-filter: blur(8px);
}
.prose h2, .prose h3 { margin: 32px 0 12px; font-weight: 500; font-family: var(--serif); }
.prose h2 { font-size: 36px; }
.prose h3 { font-size: 24px; }
.prose p { margin: 0 0 16px; color: var(--muted); font-weight: 300; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--muted); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 6px 0; font-weight: 300; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--bronze); }
.section-ink .prose p, .section-ink .prose li { color: rgba(255,255,255,0.68); }
.section-ink .prose a { color: var(--bronze-soft); }

.quote-block {
  border-left: 1px solid var(--bronze);
  padding: 8px 0 8px 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  margin: 28px 0;
  font-style: italic;
}
.quote-block cite {
  display: block; font-size: 12px; color: var(--muted); margin-top: 14px;
  font-style: normal; font-weight: 500; font-family: var(--sans);
  letter-spacing: 0.14em; text-transform: uppercase;
}

.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.spec-grid small {
  display: block; font-size: 11px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.spec-grid b { display: block; margin-top: 8px; font-weight: 400; font-family: var(--serif); font-size: 20px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { display: block; background: transparent; }
.insight-card img { width: 100%; height: 240px; object-fit: cover; }
.insight-card .body { padding: 22px 0 8px; }
.insight-card .meta {
  font-size: 11px; color: var(--bronze); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.insight-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0;
}
.insight-card p { color: var(--muted); font-size: 14px; font-weight: 300; }

.jobs { display: flex; flex-direction: column; }
.job {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.job h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.job span { color: var(--muted); font-size: 14px; }
.job:hover h3 { color: var(--bronze); }
.job-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.job-meta small {
  display: block; font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.job-meta b { display: block; margin-top: 8px; font-weight: 400; }

.form { display: grid; gap: 18px; }
.form label {
  display: grid; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.form input, .form select, .form textarea {
  font-family: inherit; font-size: 16px; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent; color: var(--text, var(--ink)); font-weight: 400;
  border-radius: 0;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-bottom-color: var(--ink);
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 20px; font-weight: 500; display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--serif);
}
.faq-item .ans { display: none; padding: 0 0 22px; color: var(--muted); font-weight: 300; max-width: 720px; }
.faq-item.open .ans { display: block; }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.filter-row button {
  padding: 8px 16px;
  border: 1px solid var(--line-light);
  color: rgba(255,255,255,0.8);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.filter-row button.on, .filter-row button:hover {
  background: #fff; border-color: #fff; color: var(--ink);
}

.cta-band {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band .cta-bg { position: absolute; inset: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(22,20,18,0.55);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -0.02em;
  font-weight: 500;
}
.cta-band p { margin: 16px auto 32px; max-width: 480px; color: rgba(255,255,255,0.78); font-weight: 300; }
.cta-band .cta-row { justify-content: center; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding: 72px 0 28px;
  font-size: 14px;
  font-weight: 300;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 16px; }
.foot-brand img { width: 24px; height: 24px; filter: invert(1); }
.foot-brand span {
  font-family: var(--serif);
  letter-spacing: 0.24em;
  font-size: 13px;
  font-weight: 500;
}
.site-footer h4 {
  color: var(--bronze-soft);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { display: block; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; font-size: 12px; color: var(--muted-2);
}
.foot-bottom nav { display: flex; gap: 18px; }

.cookie {
  position: fixed; left: 50%; bottom: 20px; z-index: 400;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 40px));
  background: var(--ink-2); color: #fff; border: 1px solid var(--line-light);
  padding: 20px 22px; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  pointer-events: auto;
}
.cookie[hidden] { display: none !important; }
.cookie p { font-size: 13px; color: rgba(255,255,255,0.75); max-width: 420px; font-weight: 300; }
.cookie p a { text-decoration: underline; pointer-events: auto; }
.cookie .row { display: flex; gap: 8px; position: relative; z-index: 1; }
.cookie .btn { height: 36px; padding: 0 14px; font-size: 10px; cursor: pointer; pointer-events: auto; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { background: var(--paper); }
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-card .pad { padding: 22px 4px; }
.team-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.team-card .role {
  color: var(--bronze); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; margin: 6px 0 10px;
}
.team-card p { color: var(--muted); font-size: 14px; font-weight: 300; }

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.gallery a:first-child { grid-row: 1 / 3; }
.gallery a {
  position: relative; overflow: hidden; display: block; background: var(--ink);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery a:hover img { transform: scale(1.04); }
.gallery span {
  position: absolute; left: 18px; bottom: 16px;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  z-index: 1;
}
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,20,18,0.55));
}

.mat-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 520px;
}
.mat-panel.reverse { grid-template-columns: 0.8fr 1.2fr; }
.mat-panel.reverse .mat-copy { order: -1; }
.mat-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.mat-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px;
  background: var(--paper);
}
.mat-copy h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  margin: 8px 0 16px;
}
.mat-copy p { color: var(--muted); font-weight: 300; max-width: 420px; }
.mat-copy a {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bronze);
  align-self: flex-start;
  padding-bottom: 4px;
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .split-head, .two-col, .exp-grid, .why-grid, .insight-grid, .stats, .foot-grid, .spec-grid, .team-grid, .related, .journey, .mat-panel, .mat-panel.reverse {
    grid-template-columns: 1fr 1fr;
  }
  .mat-panel.reverse .mat-copy { order: 0; }
  .proj-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery a:first-child { grid-row: auto; grid-column: 1 / -1; }
  .mat-copy { padding: 40px 28px; }
}
@media (max-width: 680px) {
  .split-head, .two-col, .exp-grid, .why-grid, .insight-grid, .stats, .foot-grid, .spec-grid, .team-grid, .related, .job-meta, .journey, .mat-panel {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 92vh; }
  .hero-copy { margin-bottom: 56px; }
  .section { padding: 72px 0; }
  .wrap { width: calc(100% - 32px); }
  .gallery { grid-template-columns: 1fr; }
}
