/* palette: bg=#FFFFFF fg=#15201A accent=#2FA24D */
/* fonts: display="Plus Jakarta Sans" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F6F1;
  --bg-soft: #F7FAF7;
  --fg: #15201A;
  --fg-soft: #33413A;
  --muted: #6A7A70;
  --accent: #2FA24D;
  --accent-deep: #1E7C39;
  --accent-tint: #E4F3E7;
  --ink: #132033;        /* deep navy for dark band */
  --ink-soft: #1C2C45;
  --border: rgba(21, 32, 26, 0.10);
  --border-strong: rgba(21, 32, 26, 0.16);
  --serif: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px -4px rgba(19, 32, 51, 0.08);
  --shadow-lg: 0 18px 48px -12px rgba(19, 32, 51, 0.18);
}

*, *::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;
  -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 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.08; }
p { margin: 0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: clamp(72px, 12vw, 150px) 0; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head h2 { font-size: clamp(2.3rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
.section-head p { margin-top: 22px; color: var(--muted); font-size: 1.06rem; max-width: 620px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(47, 162, 77, 0.7); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { background: var(--ink); }
.btn--ghost { border: 1px solid var(--border-strong); background: transparent; color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); background: var(--fg); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-tint); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-deep);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.arrow-link .arw { transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 12px; color: var(--fg); }
.arrow-link:hover .arw { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -18px rgba(19, 32, 51, 0.35);
  border-bottom-color: var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.03em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.18);
}
.nav { display: none; align-items: center; gap: 34px; }
.nav a { font-size: 0.94rem; color: var(--fg-soft); font-weight: 500; transition: color 0.25s; position: relative; }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--accent); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 960px) {
  .nav, .header__cta { display: inline-flex; }
}

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.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: 960px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 74px 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px 24px 48px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; padding: 14px 4px; border-bottom: 1px solid var(--border); letter-spacing: -0.02em; }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.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.1); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,14,0.30) 0%, rgba(11,20,14,0.35) 45%, rgba(11,20,14,0.82) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(52px, 8vw, 96px); padding-top: 120px; }
.hero .eyebrow { color: #bff0c8; }
.hero .eyebrow::before { background: #bff0c8; }
.hero h1 {
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 16ch;
}
.hero h1 em { font-style: normal; color: #6fe08a; font-weight: 600; }
.hero__sub { margin-top: 26px; max-width: 52ch; font-size: 1.12rem; color: rgba(255,255,255,0.86); line-height: 1.7; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px;
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px;
  max-width: 760px;
}
@media (min-width: 720px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero__stat .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; }
.hero__stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 4px; }

/* ---------- generic bg-alt band ---------- */
.band-alt { background: var(--bg-alt); }
.band-soft { background: var(--bg-soft); }

/* ---------- intro / value ---------- */
.value-grid { display: grid; gap: 26px; }
@media (min-width: 720px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); display: grid; place-items: center; margin-bottom: 22px; }
.value-card__ico svg { width: 24px; height: 24px; stroke: var(--accent-deep); }
.value-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- services grid (cards w/ image) ---------- */
.cards { display: grid; gap: 26px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  color: var(--accent-deep); font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 12px; border-radius: 999px;
}
.card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.42rem; margin-bottom: 12px; }
.card__body p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.card__body .arrow-link { margin-top: 22px; }

/* ---------- feature split ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } .split--rev > *:first-child { order: 2; } }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(2rem, 5vw, 3.3rem); letter-spacing: -0.03em; }
.split__body p { color: var(--muted); margin-top: 20px; font-size: 1.04rem; }
.split__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--fg-soft); }
.split__list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; font-size: 12px; margin-top: 2px; }

/* ---------- manifesto dark band ---------- */
.manifesto { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(closest-side, rgba(47,162,77,0.22), transparent 70%);
  transform: translate(-30%, -20%); width: 60vw; height: 60vw;
}
.manifesto .container { position: relative; z-index: 1; }
.manifesto .eyebrow { color: #6fe08a; justify-content: center; }
.manifesto .eyebrow::before { background: #6fe08a; }
.manifesto blockquote {
  margin: 0 auto; max-width: 940px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.7rem);
  letter-spacing: -0.03em; line-height: 1.18;
}
.manifesto blockquote em { font-style: normal; color: #6fe08a; }
.manifesto__by { margin-top: 34px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); }

/* ---------- process (numbered) ---------- */
.steps { display: grid; gap: 4px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 34px 0; border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step__num { font-family: var(--mono); font-size: 0.9rem; color: var(--accent-deep); letter-spacing: 0.1em; padding-top: 6px; }
.step__body h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 10px; }
.step__body p { color: var(--muted); max-width: 60ch; }
@media (min-width: 760px) { .step { grid-template-columns: 120px 1fr; gap: 44px; } }

/* ---------- stats strip ---------- */
.statstrip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
@media (min-width: 760px) { .statstrip { grid-template-columns: repeat(4, 1fr); } }
.statstrip__item { text-align: left; }
.statstrip__item .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; color: var(--fg); }
.statstrip__item .lbl { color: var(--muted); font-size: 0.94rem; margin-top: 6px; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 26px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--accent); height: 30px; }
.quote p { color: var(--fg-soft); font-size: 1.02rem; margin: 12px 0 26px; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1rem;
  flex: none;
}
.quote__name { font-family: var(--serif); font-weight: 700; font-size: 0.98rem; }
.quote__role { color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 26px 0; font-family: var(--serif); font-weight: 600; font-size: clamp(1.06rem, 2.4vw, 1.28rem); letter-spacing: -0.01em;
}
.faq__q .pm { flex: none; width: 26px; height: 26px; border: 1px solid var(--border-strong); border-radius: 50%; display: grid; place-items: center; transition: background 0.3s, color 0.3s, transform 0.3s; }
.faq__item[data-open="true"] .pm { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { color: var(--muted); padding-bottom: 26px; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--accent);
  color: #fff; border-radius: 26px; overflow: hidden; position: relative;
  padding: clamp(48px, 8vw, 90px) clamp(28px, 6vw, 80px);
}
.cta::after {
  content: ""; position: absolute; right: -10%; top: -40%; width: 55%; height: 180%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 70%);
}
.cta__inner { position: relative; z-index: 1; max-width: 720px; }
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.03em; color: #fff; }
.cta p { margin-top: 18px; color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 54ch; }
.cta__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 44px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.info-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 24px; }
.info-list li { display: grid; gap: 4px; }
.info-list .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-deep); }
.info-list .v { font-size: 1.06rem; color: var(--fg); }
.info-list .v span { display: block; color: var(--muted); font-size: 0.95rem; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border-strong); border-radius: 11px;
  font: inherit; font-size: 0.98rem; background: var(--bg-soft); color: var(--fg);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; margin-top: 6px; }
.form__note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.field-row { display: grid; gap: 20px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 180px) 0 clamp(48px, 7vw, 84px); background: var(--bg-alt); }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5.6rem); font-weight: 400; letter-spacing: -0.035em; max-width: 18ch; }
.page-hero h1 em { font-style: normal; color: var(--accent-deep); font-weight: 600; }
.page-hero p { margin-top: 22px; color: var(--muted); font-size: 1.12rem; max-width: 58ch; }
.crumb { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 24px; }
.crumb a:hover { color: var(--accent-deep); }

/* ---------- prose (legal) ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 44px 0 14px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p { color: var(--fg-soft); margin-bottom: 16px; font-size: 1.02rem; }
.prose ul { color: var(--fg-soft); padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: clamp(60px, 9vw, 96px) 0 40px; }
.footer__top { display: grid; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer .brand { color: #fff; }
.footer__blurb { margin-top: 20px; max-width: 40ch; font-size: 0.96rem; color: rgba(255,255,255,0.6); }
.footer__social { margin-top: 24px; display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; transition: background 0.3s, border-color 0.3s; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__social svg { width: 16px; height: 16px; fill: #fff; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a { font-size: 0.95rem; color: rgba(255,255,255,0.72); transition: color 0.25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 30px; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }

/* ---------- 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; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- 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(11,20,14,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 34px; max-width: 480px; border-radius: 16px; box-shadow: var(--shadow-lg); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.cookie-popup__card a { color: var(--accent-deep); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border-strong); border-radius: 9999px; cursor: pointer; font-size: 0.9rem; font-weight: 600; font-family: var(--serif); transition: background 0.25s, color 0.25s, border-color 0.25s; }
.cookie-popup__actions button:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- misc ---------- */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-cta { margin-top: clamp(48px, 7vw, 90px); }
.logo-strip { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; opacity: 0.7; }
.logo-strip span { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--muted); }
