/* palette: bg=#FFFFFF fg=#0D0D0F accent=#00C16E */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F1F3;
  --bg-rose: #F8E7EB;
  --fg: #0D0D0F;
  --fg-soft: #2B2B30;
  --muted: #6C6C75;
  --accent: #00C16E;
  --accent-deep: #009B58;
  --line: #D9D9DE;
  --border: rgba(0, 0, 0, 0.12);
  --dark: #101013;
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space 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: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  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-family: var(--serif); font-weight: 700; }
p { margin: 0; }

/* ---------- layout ---------- */
.container { width: 100%; 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, 96px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--light { color: var(--accent); }

.h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 60ch;
}
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
  white-space: nowrap;
}
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--accent { background: var(--accent); color: #06231a; }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-deep); color: #fff; }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--fg); }
.btn--light { background: var(--bg); color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); opacity: 0.86; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.arrow-link::after { content: "→"; transition: transform 0.3s var(--ease); }
.arrow-link:hover { color: var(--accent-deep); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 30px -18px rgba(0,0,0,0.25);
  border-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__mark {
  width: 13px; height: 13px;
  background: var(--accent);
  border-radius: 3px;
  display: inline-block;
}
.nav { display: none; }
@media (min-width: 940px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--fg); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 940px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s 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); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
  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(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 42%, rgba(255,255,255,0.45) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 80px; }
.hero__title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 16ch;
  margin: 0 0 30px;
}
.hero__title em { font-style: normal; color: var(--accent-deep); }
.hero__sub { max-width: 52ch; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero__meta div span {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__meta div small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(56px, 8vw, 96px); background: var(--bg-alt); }
.page-hero__title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 0 26px;
}
.page-hero__title em { font-style: normal; color: var(--accent-deep); }

/* ---------- capabilities (spec list) ---------- */
.cap__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .cap__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.cap__media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
}
.cap__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6) contrast(1.05); }
.cap__list { list-style: none; margin: 28px 0 0; padding: 0; }
.cap__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.cap__item:last-child { border-bottom: 1px solid var(--line); }
.cap__num { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); padding-top: 3px; }
.cap__item h3 { font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 6px; }
.cap__item p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ---------- dark band / manifesto + stats ---------- */
.band { background: var(--dark); color: #fff; }
.band .eyebrow { color: var(--accent); }
.band .eyebrow::before { background: var(--accent); }
.band__statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0;
}
.band__statement em { font-style: normal; color: var(--accent); }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--dark); padding: 36px 28px; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ---------- section head ---------- */
.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .lead { margin-top: 24px; }
.section__head--row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }

/* ---------- services grid ---------- */
.svc__grid { display: grid; gap: 20px; }
@media (min-width: 680px) { .svc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .svc__grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px 28px 34px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 290px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); border-color: transparent; }
.svc-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 22px;
}
.svc-card h3 { font-size: 1.55rem; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 14px; }
.svc-card p { color: var(--muted); font-size: 15.5px; line-height: 1.62; flex: 1; }
.svc-card .arrow-link { margin-top: 24px; }

/* document-style cards (rose section) */
.docs { background: var(--bg-rose); }
.doc__grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .doc__grid { grid-template-columns: repeat(2, 1fr); } }
.doc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 22px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.doc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.16); }
.doc-card__icon {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.doc-card h4 { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.doc-card small { color: var(--muted); font-size: 12.5px; }

/* ---------- reviews ---------- */
.review-grid { display: grid; gap: 20px; }
@media (min-width: 760px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.review-card p { font-size: 16px; line-height: 1.6; color: var(--fg-soft); }
.review-card__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar--mono {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.review-card__person b { display: block; font-size: 14.5px; font-family: var(--sans); }
.review-card__person span { font-size: 12.5px; color: var(--muted); }
.placeholder-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.logos span { font-family: var(--serif); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--muted); }

/* ---------- process steps ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { background: var(--bg); padding: 38px 34px; }
.step__num { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); margin-bottom: 18px; }
.step h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.62; }

/* ---------- FAQ ---------- */
.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: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--mono); font-weight: 400; font-size: 1.6rem; color: var(--accent-deep); transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 48px 28px 0; font-size: 16px; line-height: 1.7; max-width: 78ch; }

/* ---------- principles ---------- */
.principles { display: grid; gap: 28px; }
@media (min-width: 760px) { .principles { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
.principle { border-top: 2px solid var(--fg); padding-top: 22px; }
.principle h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.principle p { color: var(--muted); font-size: 16px; line-height: 1.65; }

/* ---------- team (text-only / monogram) ---------- */
.team__grid { display: grid; gap: 20px; }
@media (min-width: 680px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { border: 1px solid var(--border); border-radius: 6px; padding: 28px 26px; }
.team-card .avatar--mono { width: 56px; height: 56px; font-size: 18px; margin-bottom: 22px; border-radius: 8px; }
.team-card h3 { font-size: 1.2rem; letter-spacing: -0.01em; font-family: var(--sans); font-weight: 700; }
.team-card span { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); display: block; margin: 6px 0 14px; }
.team-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: #06231a; }
.cta__inner { display: grid; gap: 32px; align-items: center; }
@media (min-width: 880px) { .cta__inner { grid-template-columns: 1.4fr 1fr; } }
.cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cta p { font-size: 1.1rem; margin-top: 20px; max-width: 46ch; }
.cta__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
@media (min-width: 880px) { .cta__actions { align-items: flex-end; } }
.cta .btn--dark { background: #06231a; }
.cta .btn--dark:hover { background: #02140f; }

/* ---------- contact ---------- */
.contact__grid { display: grid; gap: 56px; }
@media (min-width: 920px) { .contact__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-info dt { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 6px; }
.contact-info dd { margin: 0 0 28px; font-size: 17px; line-height: 1.6; }
.contact-info dd a:hover { color: var(--accent-deep); }

/* ---------- legal ---------- */
.legal { padding: clamp(120px, 16vw, 180px) 0 clamp(72px, 10vw, 120px); }
.legal__body { max-width: 760px; }
.legal__body h2 { font-family: var(--serif); font-size: 1.6rem; letter-spacing: -0.01em; text-transform: none; margin: 48px 0 16px; }
.legal__body h2:first-of-type { margin-top: 36px; }
.legal__body p, .legal__body li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.75; }
.legal__body ul { padding-left: 20px; }
.legal__body li { margin-bottom: 10px; }
.legal__updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }

/* ---------- thanks ---------- */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 620px; margin: 0 auto; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 24px; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: #fff; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 880px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand .brand { color: #fff; margin-bottom: 20px; }
.footer__brand p { color: rgba(255,255,255,0.62); max-width: 34ch; font-size: 15.5px; }
.footer h4 { font-family: var(--mono); font-weight: 400; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.82); padding: 7px 0; font-size: 15px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}

/* ---------- 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); padding: 32px 36px; max-width: 480px; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 999px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:first-child: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); }

/* ---------- utilities ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.split-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .split-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; } }
.prose p { margin-bottom: 22px; color: var(--fg-soft); }
.prose p:last-child { margin-bottom: 0; }
