/* palette: bg=#FAF6EA fg=#1F2B18 accent=#E3A81F */
/* fonts: display="Fraunces" body="Nunito" mono="Space Mono" */

:root {
  --bg: #FAF6EA;        /* warm ivory background */
  --bg-alt: #EFEBD8;    /* soft sand-green alternating band */
  --fg: #1F2B18;        /* deep leaf-forest, near-black green */
  --fg-soft: #37452C;   /* softer forest */
  --muted: #6E7A5F;     /* sage secondary text */
  --accent: #E3A81F;    /* marigold yellow accent */
  --accent-deep: #B8850F; /* deeper amber for hover */
  --leaf: #4C7A34;      /* leaf green */
  --leaf-deep: #35591F;
  --clay: #C77B4A;      /* warm clay */
  --border: rgba(31, 43, 24, 0.14);
  --border-soft: rgba(31, 43, 24, 0.08);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', 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);
  font-size: 18px;
  line-height: 1.76;
  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 ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(72px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 22px;
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); line-height: 1.7; color: var(--fg-soft); max-width: 60ch; }
.muted { color: var(--muted); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 234, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(31,43,24,0.06), 0 10px 30px -20px rgba(31,43,24,0.4);
  border-color: var(--border-soft);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.brand em { color: var(--accent-deep); font-style: normal; }
.nav { display: none; gap: 34px; align-items: center; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  font-size: 14px; color: var(--fg-soft); position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent-deep); transition: width .3s 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;
  border: 1px solid var(--fg); border-radius: 9999px;
  padding: 10px 22px; font-size: 14px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
@media (min-width: 940px) { .header__cta { display: inline-block; } }
.header__cta:hover { background: var(--fg); color: var(--bg); }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--fg); transition: transform .3s var(--ease), opacity .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 ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft); color: var(--fg-soft);
}
.mobile-menu a:hover { color: var(--fg); }
.mobile-menu__foot { margin-top: auto; padding-top: 30px; font-size: 14px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero__img {
  position: absolute; top: 0; bottom: 0; width: 34%;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(to var(--dir, right), rgba(0,0,0,0), rgba(0,0,0,.55) 55%, rgba(0,0,0,0));
  mask-image: linear-gradient(to var(--dir, right), rgba(0,0,0,0), rgba(0,0,0,.55) 55%, rgba(0,0,0,0));
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) sepia(0.12) contrast(0.96); animation: heroZoom 9s var(--ease) forwards; }
.hero__img--left { left: 0; --dir: left; display: none; }
.hero__img--right { right: 0; --dir: right; display: none; }
@media (min-width: 1024px) { .hero__img--left, .hero__img--right { display: block; } }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.hero__inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.hero h1 .line { display: block; }
.hero h1 .faded { color: rgba(31,43,24,0.22); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-deep); }
.hero__sub { margin: 34px auto 0; max-width: 52ch; font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: var(--fg-soft); }
.hero__scroll { margin-top: 54px; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero__scroll .chev { width: 18px; height: 18px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg); animation: bob 2.2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: rotate(45deg) translate(0,0);} 50% { transform: rotate(45deg) translate(3px,3px);} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 9999px; padding: 15px 30px;
  font-size: 15px; font-weight: 600;
  background: var(--fg); color: var(--bg);
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--leaf-deep); box-shadow: 0 12px 34px -12px rgba(31,43,24,0.5); }
.btn--accent { background: var(--accent); color: var(--fg); }
.btn--accent:hover { background: var(--accent-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--fg);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--accent-deep); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Section heading block ---------- */
.head-block { max-width: 760px; }
.head-block h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; }
.head-block p { margin-top: 24px; }
.section--center .head-block { margin: 0 auto; text-align: center; }
.section--center .head-block p { margin-left: auto; margin-right: auto; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.16;
  letter-spacing: -0.02em; max-width: 980px; margin: 0 auto;
}
.manifesto p em { font-style: italic; color: var(--accent-deep); }
.manifesto .mark { font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.4; color: var(--accent); display: block; height: 0.5em; }

/* ---------- Dark band ---------- */
.band-dark { background: var(--fg); color: var(--bg); }
.band-dark .eyebrow { color: var(--accent); }
.band-dark .muted { color: rgba(250,246,234,0.6); }
.band-dark .head-block h2 { color: var(--bg); }
.pull-quote { text-align: center; }
.pull-quote blockquote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem); line-height: 1.22;
  letter-spacing: -0.02em; max-width: 1000px; margin: 0 auto; color: var(--bg);
}
.pull-quote blockquote em { font-style: italic; color: var(--accent); }
.pull-quote cite { display: block; margin-top: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,246,234,0.55); font-style: normal; }

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

.card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px -14px rgba(31,43,24,0.18); border-color: var(--border); }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--leaf); }
.card h3 { font-size: 1.55rem; margin: 18px 0 12px; }
.card p { font-size: 16px; color: var(--fg-soft); line-height: 1.65; }
.card__ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(227,168,31,0.16); display: flex; align-items: center; justify-content: center; color: var(--accent-deep); margin-bottom: 8px; }
.card__ico svg { width: 22px; height: 22px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { border-top: 1px solid var(--border); padding-top: 22px; }
.stat__num { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -0.03em; color: var(--leaf-deep); }
.stat__lbl { margin-top: 12px; font-size: 14px; color: var(--muted); }
.band-dark .stat { border-color: rgba(250,246,234,0.2); }
.band-dark .stat__num { color: var(--accent); }
.band-dark .stat__lbl { color: rgba(250,246,234,0.6); }

/* ---------- Spotlight / work cards ---------- */
.spot { border-radius: 20px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.spot:hover { transform: translateY(-6px); box-shadow: 0 18px 46px -14px rgba(31,43,24,0.2); }
.spot__media { aspect-ratio: 4/3; overflow: hidden; }
.spot__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) contrast(0.98); transition: transform .8s var(--ease); }
.spot:hover .spot__media img { transform: scale(1.05); }
.spot__body { padding: 26px 26px 30px; }
.spot__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--leaf); }
.spot__body h3 { font-size: 1.5rem; margin: 14px 0 10px; }
.spot__body p { font-size: 15.5px; color: var(--fg-soft); }

/* ---------- Member / community profile ---------- */
.profile { display: flex; gap: 18px; align-items: flex-start; padding: 28px; border: 1px solid var(--border-soft); border-radius: 18px; background: var(--bg); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.profile:hover { transform: translateY(-4px); border-color: var(--border); }
.avatar { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; color: #fff; font-weight: 500; }
.profile h3 { font-size: 1.2rem; margin-bottom: 3px; }
.profile__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.profile p { font-size: 14.5px; color: var(--fg-soft); margin-top: 12px; line-height: 1.6; }

/* ---------- Events ---------- */
.event { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 26px 0; border-top: 1px solid var(--border); }
.event:last-child { border-bottom: 1px solid var(--border); }
.event__date { text-align: center; }
.event__day { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--leaf-deep); }
.event__mon { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.event__body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.event__meta { font-size: 14px; color: var(--muted); }
.event__link { margin-left: auto; }
@media (min-width: 760px) { .event { grid-template-columns: auto 1fr auto; } }

/* ---------- 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); }
.faq__q .plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--accent-deep); transition: transform .3s var(--ease); }
.faq__q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq__item[data-open="true"] .plus::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 40px 28px 0; color: var(--fg-soft); font-size: 16.5px; }
.faq__item[data-open="true"] .faq__a { max-height: 360px; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1.02; max-width: 900px; margin: 0 auto; }
.cta p { margin: 24px auto 40px; max-width: 54ch; color: var(--fg-soft); }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Form ---------- */
.form-wrap { display: grid; gap: 40px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(76,122,52,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.contact-aside { display: grid; gap: 26px; align-content: start; }
.contact-line { border-top: 1px solid var(--border); padding-top: 18px; }
.contact-line span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-line a, .contact-line p { font-size: 17px; color: var(--fg); }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: 80px 0 34px; }
.footer__grid { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; }
.footer__brand em { color: var(--accent); font-style: normal; }
.footer__tag { margin-top: 16px; max-width: 34ch; color: rgba(250,246,234,0.66); font-size: 16px; }
.footer h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(250,246,234,0.72); font-size: 15px; padding: 5px 0; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--bg); }
.footer__bottom { display: flex; flex-direction: column; gap: 10px; justify-content: space-between; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(250,246,234,0.16); font-size: 13px; color: rgba(250,246,234,0.55); }
@media (min-width: 700px) { .footer__bottom { flex-direction: row; align-items: center; } }
.footer__bottom a:hover { color: var(--bg); }

/* ---------- 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__img img, .hero__scroll .chev { animation: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 18vw, 200px) 0 clamp(50px, 8vw, 90px); background: var(--bg-alt); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 300; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--accent-deep); }
.page-hero p { margin-top: 26px; max-width: 58ch; font-size: clamp(1.02rem,2.2vw,1.25rem); color: var(--fg-soft); }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.75; }
.prose ul { padding-left: 22px; margin: 12px 0; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Two-column feature ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 70px; } .split--rev .split__media { order: 2; } }
.split__media { border-radius: 22px; overflow: hidden; aspect-ratio: 5/6; }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12); }
.split h2 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.04; }
.split p { margin-top: 22px; color: var(--fg-soft); }
.split ul { list-style: none; padding: 0; margin: 26px 0 0; }
.split li { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border-soft); font-size: 16px; color: var(--fg-soft); }
.split li::before { content: "\2192"; color: var(--accent-deep); }

/* ---------- Values list ---------- */
.value { padding: 30px 0; border-top: 1px solid var(--border); display: grid; gap: 10px; }
@media (min-width: 820px) { .value { grid-template-columns: 0.5fr 1fr; gap: 40px; } }
.value h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.value p { color: var(--fg-soft); font-size: 16.5px; }

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(31,43,24,0.42); 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: 18px; box-shadow: 0 24px 60px -18px rgba(31,43,24,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); border-radius: 9999px; cursor: pointer; font-size: 14px; font-weight: 600; transition: background .25s var(--ease), color .25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.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(--leaf-deep); border-color: var(--leaf-deep); }

@media (min-width: 640px) { .cookie-popup { align-items: flex-end; justify-content: flex-start; } }
