/* palette: bg=#E8E7E3 fg=#191919 accent=#712B34 */
/* fonts: display="Fraunces" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #E8E7E3;        /* dominant cool light-grey from reference editorial band */
  --bg-alt: #F3F2EF;    /* alternating slightly lighter section background */
  --paper: #FCFBF9;     /* card / paper surface */
  --fg: #191919;        /* primary text */
  --fg-soft: #33322F;   /* slightly lighter foreground */
  --muted: #7C7A74;     /* secondary text */
  --ghost: #D6D4CE;     /* giant ghost display type */
  --navy: #16202E;      /* dark header / inverted band */
  --navy-soft: #22303F;
  --accent: #712B34;    /* maroon / oxblood accent block from header */
  --accent-deep: #521E25;  /* darker accent for hover */
  --border: rgba(25, 25, 25, 0.14);
  --border-soft: rgba(25, 25, 25, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, 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);
  --container: 1280px;
}

*, *::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.75;
  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; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 110px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin: 0 0 22px;
}
.eyebrow--muted { color: var(--muted); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 62ch;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation: none !important; }
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 32, 46, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: #EDEBE6;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(22, 32, 46, 0.95);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 10px 30px -18px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #F4E9E6;
  padding: 0 22px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  align-self: stretch;
}
.brand b { font-weight: 500; }
.nav {
  display: none;
  align-items: stretch;
  flex: 1;
}
.nav a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #DAD7D1;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav a:first-child { border-left: 0; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,0.06); color: #fff; }
.header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--navy-soft);
  color: #EDEBE6;
  padding: 0 22px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s var(--ease);
}
.header__cta:hover { background: #2c3d50; }
.header__cta span { transition: transform 0.3s var(--ease); }
.header__cta:hover span { transform: translateX(4px); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 56px;
  align-self: stretch;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 0 auto;
  background: #EDEBE6;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav, .header__cta { display: flex; }
  .menu-toggle { display: none; }
  .header__inner { min-height: 60px; }
}

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  color: #EDEBE6;
  padding: 90px 28px 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: none; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.8rem);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #EDEBE6;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: #9a988f;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #F4F2ED;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,32,0.5) 0%, rgba(15,22,32,0.05) 32%, rgba(15,22,32,0.72) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(48px, 8vw, 96px); padding-top: 120px; }
.hero .eyebrow { color: #E7C9C4; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: #D98C82; }
.hero__sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.68;
  color: rgba(244,242,237,0.86);
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta {
  position: absolute;
  z-index: 1;
  bottom: clamp(48px, 8vw, 96px);
  right: 32px;
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,242,237,0.72);
  text-align: right;
  line-height: 2;
}
@media (min-width: 1024px) { .hero__meta { display: block; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--accent); color: #F6ECEA; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: #F4F2ED; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); background: #fff; }
.btn--ghost { border: 1px solid rgba(244,242,237,0.5); color: #F4F2ED; }
.btn--ghost:hover { border-color: #F4F2ED; transform: translateY(-2px); }
.btn--dark { background: var(--navy); color: #EDEBE6; }
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.arrow-link:hover { gap: 14px; border-color: var(--accent); }
.arrow-link span { transition: transform 0.3s var(--ease); }

/* ---------- editorial / ghost band ---------- */
.editorial { position: relative; background: var(--bg); overflow: hidden; }
.ghost-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(9rem, 34vw, 30rem);
  line-height: 1;
  color: var(--ghost);
  letter-spacing: -0.04em;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.editorial__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding: clamp(80px, 12vw, 150px) 0;
}
.editorial__card {
  justify-self: center;
  width: min(340px, 78vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.35);
}
.editorial__card img { width: 100%; height: 100%; object-fit: cover; }
.editorial__caption {
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.editorial__caption .tag {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.editorial__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.editorial__download:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ---------- section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { margin-top: 22px; }
.section-head--split {
  display: grid;
  gap: 24px;
  max-width: none;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.3fr 1fr; }
  .section-head--split p { margin-top: 0; }
}

/* ---------- services grid ---------- */
.grid { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.svc {
  background: var(--bg-alt);
  padding: clamp(30px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  transition: background 0.35s var(--ease);
}
.svc:hover { background: var(--paper); }
.svc__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.svc h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
.svc p { font-size: 15.5px; line-height: 1.68; color: var(--fg-soft); }
.svc ul { margin: 4px 0 0; padding: 0; list-style: none; margin-top: auto; }
.svc li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); padding: 5px 0; border-top: 1px solid var(--border-soft); }

/* ---------- manifesto dark band ---------- */
.manifesto { background: var(--navy); color: #EDEBE6; text-align: center; }
.manifesto__inner { max-width: 960px; margin: 0 auto; }
.manifesto .eyebrow { color: #D98C82; }
.manifesto blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.manifesto blockquote em { font-style: italic; color: #D98C82; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 0.4em;
}
.manifesto cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,235,230,0.6);
}

/* ---------- work / case cards ---------- */
.work-list { display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 800px) { .work-list { grid-template-columns: repeat(2, 1fr); } }
.work {
  display: block;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
}
.work__media { aspect-ratio: 16 / 11; overflow: hidden; }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work:hover .work__media img { transform: scale(1.05); }
.work__body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; }
.work__meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.work h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.15rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; }
.work p { font-size: 15.5px; color: var(--fg-soft); line-height: 1.66; }

/* ---------- stats ---------- */
.stats { background: var(--bg-alt); }
.stats__grid { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 700px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-alt); padding: clamp(34px, 4vw, 52px) clamp(24px, 3vw, 36px); }
.stat__n { font-family: var(--serif); font-weight: 300; font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat__n em { font-style: normal; color: var(--accent); }
.stat__l { margin-top: 14px; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 44px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 26px;
  font-family: var(--sans);
  font-size: 26px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 44px 30px 0; max-width: 68ch; color: var(--fg-soft); font-size: 16px; line-height: 1.72; }

/* ---------- cta band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  color: #F4F2ED;
  background: var(--navy);
}
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(22,32,46,0.9), rgba(22,32,46,0.55)); }
.cta__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.cta .eyebrow { color: #D98C82; }
.cta h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.02; letter-spacing: -0.02em; }
.cta h2 em { font-style: italic; color: #D98C82; }
.cta p { margin: 24px auto 36px; max-width: 54ch; color: rgba(244,242,237,0.84); }

/* ---------- contact form ---------- */
.form-wrap { display: grid; gap: clamp(40px, 6vw, 80px); }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1fr; } }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-self: start; margin-top: 6px; }

.contact-aside { display: grid; gap: 28px; align-content: start; }
.contact-block { border-top: 1px solid var(--border); padding-top: 18px; }
.contact-block .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-block .v { font-size: 16px; line-height: 1.6; color: var(--fg-soft); }
.contact-block a:hover { color: var(--accent); }

/* ---------- team / principles ---------- */
.principles { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
@media (min-width: 700px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principle { background: var(--bg-alt); padding: clamp(30px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.principle .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; color: #F4EFEE;
  letter-spacing: 0.02em;
}
.principle h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; letter-spacing: -0.01em; }
.principle .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: -8px; }
.principle p { font-size: 15px; line-height: 1.66; color: var(--fg-soft); }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; line-height: 1.04; margin-bottom: 12px; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.01em; margin: 48px 0 14px; }
.prose p { margin: 0 0 18px; color: var(--fg-soft); line-height: 1.78; }
.prose ul { margin: 0 0 18px; padding-left: 20px; color: var(--fg-soft); line-height: 1.78; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--border); }
.page-lead { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 30px; }

/* ---------- page hero (interior) ---------- */
.page-hero { background: var(--navy); color: #EDEBE6; padding: clamp(120px, 18vw, 200px) 0 clamp(60px, 8vw, 100px); }
.page-hero .eyebrow { color: #D98C82; }
.page-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.98; letter-spacing: -0.03em; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: #D98C82; }
.page-hero p { margin-top: 26px; max-width: 56ch; color: rgba(237,235,230,0.82); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.7; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #C9C7C1; padding: clamp(64px, 8vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; color: #F4F2ED; letter-spacing: -0.02em; }
.footer__tag { margin-top: 16px; max-width: 34ch; font-size: 15px; line-height: 1.7; color: #9d9b94; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #7f7d76; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: #C9C7C1; font-size: 15px; transition: color 0.25s var(--ease); }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 12.5px; color: #85837c;
}
.footer__bottom .mono { font-family: var(--mono); letter-spacing: 0.04em; }

/* ---------- 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(10,14,20,0.42); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--paper); padding: 32px 36px; max-width: 480px; border-radius: 4px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.66; color: var(--fg-soft); }
.cookie-popup__card p a { color: var(--accent); border-bottom: 1px solid var(--border); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 9999px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg); }
.cookie-popup__actions button:last-child { background: var(--navy); color: #EDEBE6; border-color: var(--navy); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- misc ---------- */
.divider-word { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 12vw, 10rem); color: var(--ghost); letter-spacing: -0.03em; line-height: 0.9; text-align: center; }
.split { display: grid; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-left { grid-template-columns: 1.15fr 0.85fr; } }
.split__media { overflow: hidden; aspect-ratio: 4/5; background: var(--paper); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.4); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; }
.split__body h2 em { font-style: italic; color: var(--accent); }
.split__body p { margin-top: 20px; color: var(--fg-soft); }
.split__body p + p { margin-top: 16px; }
