/* palette: bg=#E4E1D6 fg=#15171A accent=#3D6B4C */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #E4E1D6;
  --bg-soft: #EDEAE0;
  --bg-alt: #0E1114;
  --bg-alt-soft: #161A1E;
  --fg: #15171A;
  --fg-soft: #2E3236;
  --muted: #6B6E69;
  --line: #C7C3B5;
  --line-dark: #2A2E33;
  --accent: #3D6B4C;
  --accent-deep: #234A33;
  --accent-light: #6A9077;
  --border: rgba(21, 23, 26, 0.14);

  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
p { margin: 0 0 1.2em; }
h1, h2, h3, h4 { margin: 0 0 0.6em; font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }

/* =========================================
   LAYOUT
   ========================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow--dot::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 1px;
}

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--dark { background: var(--bg-alt); color: #E8E5DC; }
.section--dark .eyebrow { color: #8A8C86; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #F0EDE4; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }

/* =========================================
   HEADER
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(228, 225, 214, 0);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(228, 225, 214, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.header--solid {
  background: rgba(228, 225, 214, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.brand__mark {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}
.nav { display: flex; gap: 38px; align-items: center; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
}
.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--fg);
  color: var(--fg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__cta:hover { background: var(--fg); color: var(--bg); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 1px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  padding: 14px 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 920px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-alt);
  color: #ECE9E0;
  overflow: hidden;
  margin-top: -85px;
  padding-top: 85px;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(0.4) contrast(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 10vh, 110px);
  padding-top: clamp(60px, 10vh, 100px);
}
.hero__rule {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(236, 233, 224, 0.18);
  z-index: 2;
}
.hero__rule::before, .hero__rule::after {
  content: attr(data-label);
  position: absolute;
  top: -8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(236, 233, 224, 0.5);
  background: var(--bg-alt);
  padding: 0 10px;
}
.hero__rule::before { left: 32px; }
.hero__rule::after { right: 32px; content: attr(data-label-right); }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.7);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent-light);
}
.hero h1 {
  font-size: clamp(3.2rem, 9.5vw, 8.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 40px;
  color: #F4F1E8;
  max-width: 1100px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 300;
}
.hero__sub {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(236, 233, 224, 0.78);
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__meta {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 4;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.55);
  text-align: right;
  line-height: 1.7;
}
.hero__coords {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 4;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.55);
}
@media (max-width: 720px) {
  .hero__meta, .hero__coords { position: static; margin-top: 24px; text-align: left; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #F4F1E8;
}
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost-light {
  border-color: rgba(236, 233, 224, 0.4);
  color: #ECE9E0;
}
.btn--ghost-light:hover { background: #ECE9E0; color: var(--fg); border-color: #ECE9E0; }
.btn--ghost-dark {
  border-color: var(--fg);
  color: var(--fg);
}
.btn--ghost-dark:hover { background: var(--fg); color: var(--bg); }
.btn__arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  padding-bottom: 6px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 16px; color: var(--accent); border-bottom-color: var(--accent); }

/* =========================================
   MANIFESTO
   ========================================= */
.manifesto {
  text-align: left;
  padding: clamp(100px, 16vw, 200px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: start;
}
.manifesto__label {
  position: sticky;
  top: 120px;
}
.manifesto h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0;
  max-width: 880px;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--accent);
}
.manifesto__signature {
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 20px;
}
.manifesto__signature::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--fg);
}
@media (max-width: 820px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto__label { position: static; }
}

/* =========================================
   TIMELINE (Architecture: Skeleton D)
   ========================================= */
.timeline {
  position: relative;
}
.timeline__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: end;
}
.timeline__head h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
.timeline__intro p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: rgba(236, 233, 224, 0.78);
}
.timeline__scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(236, 233, 224, 0.2);
  margin-bottom: 8px;
}
.timeline__scale span {
  padding: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(236, 233, 224, 0.5);
  position: relative;
}
.timeline__scale span::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 1px; height: 10px;
  background: rgba(236, 233, 224, 0.4);
}
.timeline__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(236, 233, 224, 0.2);
}
.timeline__step {
  padding: 40px 30px 40px 0;
  border-left: 1px solid rgba(236, 233, 224, 0.14);
  padding-left: 24px;
  position: relative;
}
.timeline__step:first-child { border-left-color: rgba(236, 233, 224, 0.3); }
.timeline__step::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  background: var(--accent-light);
}
.timeline__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(236, 233, 224, 0.5);
  margin-bottom: 24px;
  display: block;
}
.timeline__step h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: #F0EDE4;
}
.timeline__step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(236, 233, 224, 0.7);
  margin: 0;
}
@media (max-width: 920px) {
  .timeline__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .timeline__scale { grid-template-columns: repeat(3, 1fr); }
  .timeline__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .timeline__list { grid-template-columns: 1fr; }
}

/* =========================================
   SERVICES
   ========================================= */
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.services__head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
.services__head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0;
  max-width: 460px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 44px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--bg-soft); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.service h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.service p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0 0 14px;
}
.service__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 920px) {
  .services__head { grid-template-columns: 1fr; gap: 30px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* =========================================
   PRINCIPLES (text-only team replacement)
   ========================================= */
.principles {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.principles__intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
}
.principles__intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.principles__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  align-self: start;
}
.principle {
  background: var(--bg);
  padding: 38px 30px;
}
.principle__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #F4F1E8;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}
.principle h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  font-family: var(--sans);
}
.principle p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
}
@media (max-width: 920px) {
  .principles { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .principles__list { grid-template-columns: 1fr; }
}

/* =========================================
   STATS / METRICS BAND
   ========================================= */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(236, 233, 224, 0.18);
  border-bottom: 1px solid rgba(236, 233, 224, 0.18);
}
.metric {
  padding: 50px 28px;
  border-left: 1px solid rgba(236, 233, 224, 0.14);
}
.metric:first-child { border-left: none; }
.metric__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #F0EDE4;
  margin-bottom: 12px;
  display: block;
}
.metric__num em { color: var(--accent-light); font-style: normal; }
.metric__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.6);
}
@media (max-width: 720px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { border-left: none; border-top: 1px solid rgba(236, 233, 224, 0.14); }
  .metric:first-child, .metric:nth-child(2) { border-top: none; }
}

/* =========================================
   CASE / WORK
   ========================================= */
.work {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.work__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  gap: 60px;
}
.work__head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
.work__head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0;
  max-width: 480px;
}
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.case:last-child { border-bottom: 1px solid var(--line); }
.case__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.case__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.case:hover .case__img img { transform: scale(1.04); filter: grayscale(0) contrast(1); }
.case--reverse .case__img { order: 2; }
.case__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.case h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.case__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.case p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0 0 24px;
  max-width: 480px;
}
.case__meta {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case__meta div {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.case__meta span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
@media (max-width: 820px) {
  .work__head { grid-template-columns: 1fr; gap: 24px; }
  .case { grid-template-columns: 1fr; gap: 30px; }
  .case--reverse .case__img { order: 0; }
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.faq__intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
}
.faq__intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.faq__list { border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 30px 60px 30px 0;
  position: relative;
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item[open] summary { color: var(--accent); }
.faq__answer {
  padding: 0 80px 32px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
}
@media (max-width: 820px) {
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq__item summary { font-size: 19px; padding-right: 40px; }
  .faq__answer { padding-right: 0; }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-alt);
  color: #ECE9E0;
  position: relative;
  overflow: hidden;
}
.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 1100px;
}
.cta h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 30px 0 40px;
  color: #F4F1E8;
}
.cta h2 em { font-style: italic; color: var(--accent-light); }
.cta p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(236, 233, 224, 0.78);
  max-width: 600px;
  margin: 0 0 48px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-info {
  position: sticky; top: 120px;
  padding: 44px 40px;
  background: var(--bg-alt);
  color: #ECE9E0;
}
.contact-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #F0EDE4;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.55);
  margin-top: 26px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.6;
}
.contact-info dd a { border-bottom: 1px solid rgba(236, 233, 224, 0.3); }
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-info { position: static; }
}

/* =========================================
   PAGE HERO (sub-pages)
   ========================================= */
.page-hero {
  padding: clamp(120px, 18vh, 220px) 0 clamp(80px, 12vw, 140px);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 24px 0 0;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0;
  max-width: 480px;
}
@media (max-width: 820px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-alt);
  color: #ECE9E0;
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(236, 233, 224, 0.15);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: 20px;
  color: #F4F1E8;
  line-height: 1;
}
.footer__tagline {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(236, 233, 224, 0.65);
  max-width: 320px;
  margin-bottom: 24px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.55);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14.5px;
  color: rgba(236, 233, 224, 0.85);
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--accent-light); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 233, 224, 0.5);
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: var(--accent-light); }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =========================================
   COOKIE POPUP
   ========================================= */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background: rgba(14, 17, 20, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--line);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.cookie-popup p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0 0 24px;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
}
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cookie-popup__actions button:hover { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); color: #F4F1E8; }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) 32px clamp(80px, 10vw, 120px);
}
.legal h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-soft);
}
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 10px; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* Thanks page */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.thanks h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.thanks h1 em { font-style: italic; color: var(--accent); }
.thanks p {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 auto 40px;
}
