/* palette: bg=#F4F6F0 fg=#1E2A21 accent=#5E7B57 */
/* fonts: display="Fraunces" body="Work Sans" mono="IBM Plex Mono" */

:root {
  --bg: #F4F6F0;        /* herbarium paper, cool cream-green */
  --bg-alt: #E8ECE0;    /* alternating section, deeper sage paper */
  --bg-deep: #DDE3D2;   /* third tone */
  --fg: #1E2A21;        /* deep moss ink (green-black, not brown) */
  --fg-soft: #364338;   /* slightly lighter foreground */
  --muted: #6C7868;     /* sage-grey secondary text */
  --accent: #5E7B57;    /* sage / moss green */
  --accent-deep: #43603C;   /* deeper moss for hover */
  --paper: #FBFCF8;     /* card / pure paper */
  --border: rgba(30, 42, 33, 0.14);
  --border-soft: rgba(30, 42, 33, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  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; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { max-width: var(--maxw); 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, 100px) 0; }

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

.lede {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 60ch;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 32px -10px rgba(30,42,33,0.5); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--paper); }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.arrow-link .arr { transition: transform .3s var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover .arr { transform: translateX(5px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 246, 240, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(30,42,33,0.04), 0 8px 30px -18px rgba(30,42,33,0.4);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent);
  position: relative; flex: 0 0 auto;
  display: grid; place-items: center;
}
.brand__mark::after {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--paper);
}
.brand__name {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  letter-spacing: -0.01em;
}
.nav { display: none; gap: 34px; align-items: center; }
.nav a {
  font-size: 14px; color: var(--fg-soft); letter-spacing: 0.01em;
  position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .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(--fg); }
.header__cta { display: none; }
@media (min-width: 920px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 10px; margin-right: -10px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: transform .35s var(--ease), opacity .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 920px) { .menu-toggle { display: none; } }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  display: block; font-family: var(--serif); font-size: 30px;
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .btn { margin-top: 28px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.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(20,28,22,0.30) 0%, rgba(20,28,22,0.10) 40%, rgba(20,28,22,0.78) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero .eyebrow { color: #C7D6BD; }
.hero__title {
  color: #F7FAF3;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 0 28px;
}
.hero__title em { font-style: italic; color: #BFD7A8; }
.hero__row { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: flex-end; justify-content: space-between; }
.hero__sub { color: rgba(247,250,243,0.82); max-width: 46ch; font-size: 1.05rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--ghost { color: #F7FAF3; border-color: rgba(247,250,243,0.4); }
.hero .btn--ghost:hover { border-color: #F7FAF3; }
.hero__badge {
  position: absolute; top: 110px; right: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(247,250,243,0.7);
  writing-mode: vertical-rl; display: none;
}
@media (min-width: 768px) { .hero__badge { display: block; } }

/* ---------- intro / manifesto inline ---------- */
.intro__grid { display: grid; gap: 40px; }
@media (min-width: 860px) { .intro__grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; } }
.intro__statement {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18; letter-spacing: -0.02em;
}
.intro__statement em { font-style: italic; color: var(--accent); }
.intro__body p + p { margin-top: 22px; color: var(--fg-soft); }

/* ---------- section heading block ---------- */
.sec-head { max-width: var(--maxw); }
.sec-head__top { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: baseline; justify-content: space-between; margin-bottom: clamp(40px, 6vw, 70px); }
.sec-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em; line-height: 1.02; font-weight: 300;
  max-width: 18ch;
}
.sec-head__aside { max-width: 38ch; color: var(--muted); font-size: 1rem; padding-top: 8px; }

/* ---------- full-bleed media band (clone of reference photo sections) ---------- */
.media-band { position: relative; height: clamp(420px, 70vh, 760px); overflow: hidden; }
.media-band img { width: 100%; height: 100%; object-fit: cover; }
.media-band__caption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 28px 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(0deg, rgba(20,28,22,0.7), transparent);
  color: #F7FAF3;
}
@media (min-width: 768px) { .media-band__caption { padding: 36px 32px; } }
.media-band__caption span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.media-band__caption .t { font-family: var(--serif); font-size: clamp(1.3rem,3vw,2.2rem); font-weight: 300; max-width: 24ch; }

/* ---------- services / capability list ---------- */
.cap-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.cap {
  display: grid; gap: 14px; padding: clamp(30px,4vw,48px) 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .4s var(--ease);
}
@media (min-width: 860px) {
  .cap { grid-template-columns: 70px 1fr 1.3fr auto; gap: 40px; align-items: baseline; }
  .cap:hover { padding-left: 16px; }
}
.cap__num { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.cap__title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 400; letter-spacing: -0.01em; }
.cap__desc { color: var(--fg-soft); font-size: 1rem; }
.cap__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cap__tags span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 5px 12px; border: 1px solid var(--border); border-radius: 9999px; color: var(--muted);
}

/* ---------- article / library cards ---------- */
.card-grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: 8px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 4px 24px -4px rgba(30,42,33,0.08);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px -8px rgba(30,42,33,0.16); }
.card__media { aspect-ratio: 16/11; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__meta { display: flex; gap: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; }
.card__meta .dot { color: var(--muted); }
.card__title { font-family: var(--serif); font-size: 1.4rem; line-height: 1.22; font-weight: 400; }
.card__excerpt { color: var(--fg-soft); font-size: 0.97rem; line-height: 1.6; }
.card__foot { margin-top: auto; padding-top: 8px; }

/* ---------- topics grid ---------- */
.topics { display: grid; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 8px; overflow: hidden; }
@media (min-width: 640px) { .topics { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .topics { grid-template-columns: repeat(3,1fr); } }
.topic {
  background: var(--bg); padding: 34px 30px; display: flex; flex-direction: column; gap: 12px; min-height: 200px;
  transition: background .4s var(--ease);
}
.topic:hover { background: var(--paper); }
.topic__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.topic h3 { font-size: 1.5rem; font-weight: 400; letter-spacing: -0.01em; }
.topic p { color: var(--muted); font-size: 0.95rem; }
.topic__count { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--fg-soft); }

/* ---------- stats ---------- */
.stats { display: grid; gap: 36px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }

/* ---------- dark manifesto band ---------- */
.band-dark { background: var(--fg); color: var(--bg); }
.band-dark .eyebrow { color: #BFD7A8; }
.manifesto {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.18; letter-spacing: -0.02em;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.manifesto em { font-style: italic; color: #BFD7A8; }
.manifesto__mark { font-family: var(--serif); font-size: 6rem; line-height: 0.6; color: var(--accent); display: block; margin-bottom: 10px; }

/* ---------- newsletter / CTA ---------- */
.cta-band { background: var(--bg-alt); }
.cta__wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .cta__wrap { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; font-weight: 300; letter-spacing: -0.02em; }
.field-row { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
@media (min-width: 520px) { .field-row { flex-direction: row; } }
.field {
  flex: 1; padding: 15px 18px; border: 1px solid var(--border); border-radius: 9999px;
  background: var(--paper); font-size: 15px; color: var(--fg);
  transition: border-color .3s var(--ease);
}
.field:focus { outline: none; border-color: var(--accent); }
.field-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }

/* ---------- contact form ---------- */
.form { display: grid; gap: 20px; }
.form__group { display: grid; gap: 8px; }
.form__group label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 6px;
  background: var(--paper); font-family: var(--sans); font-size: 16px; color: var(--fg);
  transition: border-color .3s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); }
.form textarea { min-height: 140px; resize: vertical; }
.form .two { display: grid; gap: 20px; }
@media (min-width: 640px) { .form .two { grid-template-columns: 1fr 1fr; } }

.contact-grid { display: grid; gap: 50px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.contact-info { display: grid; gap: 28px; align-content: start; }
.contact-item { border-top: 1px solid var(--border); padding-top: 18px; }
.contact-item__k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 8px; }
.contact-item__v { font-size: 1.05rem; color: var(--fg); }
.contact-item__v a:hover { color: var(--accent); }

/* ---------- team / principles (text-only, no faces) ---------- */
.principles { display: grid; gap: 28px; }
@media (min-width: 700px) { .principles { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .principles { grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); } }
.principle { background: var(--bg); padding: 34px 30px; display: flex; flex-direction: column; gap: 14px; }
.principle__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.principle h3 { font-size: 1.55rem; font-weight: 400; letter-spacing: -0.01em; }
.principle p { color: var(--fg-soft); font-size: 1rem; }

.people { display: grid; gap: 24px; }
@media (min-width: 640px) { .people { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .people { grid-template-columns: repeat(4,1fr); } }
.person { border: 1px solid var(--border-soft); border-radius: 8px; padding: 26px 24px; background: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.avatar--mono {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: var(--paper);
  font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.02em;
}
.person__name { font-family: var(--serif); font-size: 1.3rem; }
.person__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--accent); text-transform: uppercase; }
.person__bio { color: var(--fg-soft); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 26px 0; font-family: var(--serif); font-size: clamp(1.2rem,2.4vw,1.6rem); font-weight: 400; }
.faq__q .ic { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .4s var(--ease); }
.faq__q .ic::before, .faq__q .ic::after { content:""; position:absolute; background: var(--accent); border-radius:2px; }
.faq__q .ic::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__q .ic::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform .4s var(--ease); }
.faq__item[data-open="true"] .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 0 28px; color: var(--fg-soft); max-width: 70ch; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: rgba(247,250,243,0.8); padding: clamp(60px,8vw,100px) 0 40px; }
.footer a { color: rgba(247,250,243,0.8); transition: color .3s var(--ease); }
.footer a:hover { color: #BFD7A8; }
.footer__top { display: grid; gap: 48px; margin-bottom: 60px; }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: #F7FAF3; }
.footer__tag { margin-top: 20px; max-width: 34ch; color: rgba(247,250,243,0.6); font-size: 0.97rem; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: #BFD7A8; margin-bottom: 20px; font-weight: 400; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col li { font-size: 0.95rem; }
.footer__bottom { border-top: 1px solid rgba(247,250,243,0.14); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; font-size: 0.85rem; color: rgba(247,250,243,0.55); }
.footer__bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .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; transform: none; transition: none; }
  .hero__media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(50px, 8vw, 90px); background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 300; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lede { margin-top: 28px; }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 16px; font-weight: 400; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 10px; font-weight: 500; font-family: var(--serif); }
.prose p { margin-bottom: 18px; color: var(--fg-soft); }
.prose ul { margin: 0 0 18px; padding-left: 22px; color: var(--fg-soft); }
.prose li { margin-bottom: 8px; }
.prose__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- thanks ---------- */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 120px 0; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 300; letter-spacing: -0.02em; }
.thanks p { margin: 24px auto 32px; max-width: 50ch; color: var(--fg-soft); }

/* ---------- cookie popup ---------- */
.cookie-popup { position:fixed; inset:0; z-index:9999; display:flex; align-items:flex-end; padding:24px; background:rgba(20,28,22,0.4); backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1; pointer-events:all; }
.cookie-popup__card { background:var(--bg); padding:32px 36px; max-width:480px; border-radius:8px; box-shadow: 0 20px 60px -20px rgba(20,28,22,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 400; }
.cookie-popup__card p { font-size: 0.95rem; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display:flex; gap:12px; margin-top:20px; }
.cookie-popup__actions button { padding:12px 24px; border:1px solid var(--border); cursor:pointer; font-size:14px; border-radius: 9999px; transition: background .3s var(--ease), color .3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background:var(--fg); color:var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* selection */
::selection { background: var(--accent); color: var(--paper); }
