/* palette: bg=#0B2E22 fg=#F4EFE6 accent=#C9A15A */
/* fonts: display="Bodoni Moda" body="Lato" mono="Space Mono" */

:root {
  --bg: #0B2E22;        /* deep emerald */
  --bg-alt: #103A2C;    /* alternating section */
  --bg-deep: #071E17;   /* darkest band */
  --fg: #F4EFE6;        /* champagne cream */
  --fg-soft: #DED7C6;   /* softened cream */
  --muted: #9DB0A5;     /* muted sage */
  --accent: #C9A15A;    /* champagne gold */
  --accent-deep: #A9823F; /* darker gold hover */
  --border: rgba(244, 239, 230, 0.14);
  --border-strong: rgba(244, 239, 230, 0.28);
  --serif: 'Bodoni Moda', ui-serif, Georgia, serif;
  --sans: 'Lato', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { 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; }

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

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

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

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 46, 34, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 14px 40px -22px rgba(0,0,0,0.7);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 10px; font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.01em; }
.brand__mark { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; align-self: center; }
.brand strong { font-weight: 500; }
.brand span { color: var(--muted); font-weight: 400; }

.nav { display: none; gap: 38px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-soft); transition: color 0.3s var(--ease); position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 9999px; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--bg-deep); font-weight: 700; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.header .btn { display: none; }
@media (min-width: 1024px) { .header .btn { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { height: 1.5px; width: 100%; 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(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); }

.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--bg-deep);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  padding: 40px 24px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--fg-soft);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 100px; padding-bottom: 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,30,23,0.72) 0%, rgba(7,30,23,0.80) 45%, rgba(11,46,34,0.95) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem); line-height: 0.96; letter-spacing: -0.03em; font-weight: 300;
  max-width: 15ch; margin: 22px 0 0;
}
.hero__sub { margin-top: 34px; max-width: 54ch; }
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 72px); margin-top: clamp(56px, 9vw, 96px); border-top: 1px solid var(--border); padding-top: 34px; }
.hero__meta .stat { }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; display: block; }
.stat__num em { color: var(--accent); font-style: normal; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; display: block; }

/* ---------- section heads ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 84px); }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; }
.section-head p { margin-top: 24px; }
.section-head--split { display: grid; gap: 28px; max-width: none; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1fr 1fr; align-items: end; } .section-head--split p { margin-top: 0; } }

/* ---------- publication / TOC list ---------- */
.toc { border-top: 1px solid var(--border); }
.toc__row {
  display: grid; grid-template-columns: auto 1fr; gap: 20px 28px; align-items: start;
  padding: clamp(28px, 4vw, 46px) 0; border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}
@media (min-width: 860px) { .toc__row { grid-template-columns: 90px 1fr 1.3fr auto; align-items: center; } }
.toc__row:hover { padding-left: 14px; }
.toc__num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; }
.toc__title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; }
.toc__desc { color: var(--muted); font-size: 1rem; }
.toc__link { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); white-space: nowrap; }
.toc__row:hover .toc__link { color: var(--accent); }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 800px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  border: 1px solid var(--border); border-radius: 6px; padding: 34px 30px; background: var(--bg-alt);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.35);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 18px 46px -14px rgba(0,0,0,0.55); }
.card__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.card h3 { font-size: 1.6rem; margin: 20px 0 14px; line-height: 1.14; }
.card p { color: var(--muted); font-size: 1rem; }
.card__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); border: 1px solid var(--border); padding: 5px 11px; border-radius: 9999px; }

/* work / case cards with image */
.work-card { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--bg-alt); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -16px rgba(0,0,0,0.6); }
.work-card__media { aspect-ratio: 16 / 11; overflow: hidden; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__body { padding: 26px 26px 30px; }
.work-card__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: 1.5rem; margin: 14px 0 10px; }
.work-card p { color: var(--muted); font-size: 0.98rem; }
.work-card__arrow { margin-top: 20px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-soft); display: inline-flex; gap: 8px; }
.work-card:hover .work-card__arrow { color: var(--accent); }

/* ---------- alternating / dark band ---------- */
.band-alt { background: var(--bg-alt); }
.band-deep { background: var(--bg-deep); }

/* ---------- manifesto ---------- */
.manifesto { background: var(--bg-deep); text-align: center; }
.manifesto__quote {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18; letter-spacing: -0.02em; max-width: 20ch; margin: 0 auto;
}
.manifesto__quote em { color: var(--accent); font-style: italic; }
.manifesto__mark { font-family: var(--serif); font-size: clamp(5rem, 12vw, 10rem); line-height: 0.6; color: var(--accent); display: block; margin-bottom: 10px; opacity: 0.5; }
.manifesto__by { margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- split feature (text + image) ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); } .split--reverse .split__media { order: -1; } }
.split__media { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3.2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); line-height: 1.05; }
.split .lede { margin-top: 22px; }
.feature-list { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; list-style: none; padding: 0; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.feature-list li::before { content: ''; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-top: 11px; }
.feature-list strong { font-weight: 700; }
.feature-list span { color: var(--muted); display: block; font-size: 0.98rem; }

/* ---------- process steps ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--bg); padding: 38px 28px; }
.step__num { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.step h3 { font-size: 1.3rem; margin: 18px 0 12px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- team / principles text cards ---------- */
.people { display: grid; gap: 24px; }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { border: 1px solid var(--border); border-radius: 6px; padding: 30px; background: var(--bg-alt); }
.avatar--mono {
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; color: var(--bg-deep); font-weight: 500; margin-bottom: 22px;
}
.person h3 { font-size: 1.35rem; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 6px; display: block; }
.person p { color: var(--muted); font-size: 0.96rem; margin-top: 16px; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 850px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote-card { border: 1px solid var(--border); border-radius: 6px; padding: 38px 34px; background: var(--bg-alt); }
.quote-card blockquote { margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; font-weight: 300; }
.quote-card figcaption { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.quote-card figcaption .avatar--mono { width: 44px; height: 44px; font-size: 1rem; margin: 0; }
.quote-card .who strong { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; }
.quote-card .who span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ''; position: absolute; background: var(--accent); transition: transform 0.35s var(--ease); }
.faq summary .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq summary .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq details[open] summary .plus::after { transform: translateX(-50%) scaleY(0); }
.faq details p { color: var(--muted); padding: 0 0 30px; max-width: 72ch; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--accent); color: var(--bg-deep); text-align: center;
}
.cta h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; max-width: 18ch; margin: 0 auto; }
.cta p { max-width: 52ch; margin: 26px auto 0; color: rgba(7,30,23,0.78); }
.cta .btn { margin-top: 40px; }
.cta .btn--primary { background: var(--bg-deep); color: var(--fg); }
.cta .btn--primary:hover { background: #04140f; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 950px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 90px); } }
.info-list { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-direction: column; gap: 26px; }
.info-list li { border-top: 1px solid var(--border); padding-top: 22px; }
.info-list .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.info-list .v { font-size: 1.1rem; }
.info-list a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-deep); }
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form .btn { justify-self: start; margin-top: 6px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { font-size: 0.85rem; color: var(--muted); }
.form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- legal / prose ---------- */
.prose { max-width: 780px; }
.prose h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 20px; display: block; }
.prose h2 { font-size: 1.6rem; margin: 52px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; font-family: var(--sans); font-weight: 700; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1.02rem; margin-bottom: 16px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- thanks ---------- */
.thanks { min-height: 82vh; display: flex; align-items: center; text-align: center; }
.thanks h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 1; }
.thanks p { max-width: 50ch; margin: 28px auto 0; }
.thanks .btn { margin-top: 40px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: clamp(70px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .brand { font-size: 1.6rem; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer__col a { color: var(--fg-soft); font-size: 0.98rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: clamp(56px, 8vw, 90px); padding-top: 30px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__bottom p { color: var(--muted); font-size: 0.85rem; }
.footer__bottom .legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bottom .legal a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.footer__bottom .legal a:hover { color: var(--accent); }

/* ---------- 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(0,0,0,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-alt); border: 1px solid var(--border); padding: 32px 36px; max-width: 480px; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.cookie-popup__card h3 { font-size: 1.5rem; margin: 12px 0 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border-strong); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 9999px; transition: all 0.3s var(--ease); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); font-weight: 700; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); border: 1px solid var(--border); padding: 8px 16px; border-radius: 9999px; }
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 60px; animation: scrollx 34s linear infinite; }
.marquee span { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--muted); font-style: italic; }
.marquee span::after { content: '·'; margin-left: 60px; color: var(--accent); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track, .hero__bg img { animation: none; } .reveal { transition: none; } }
