@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("literata-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("fragment-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --mist: #eef1ec;
  --fog: #f6f7f4;
  --stone: #dde3d8;
  --ink: #1a221c;
  --ink-soft: #4a554c;
  --forest: #1f3d32;
  --forest-mid: #2d5646;
  --citrus: #d4782e;
  --citrus-deep: #b35f1a;
  --leaf: #5a7a62;
  --white: #fcfdfb;
  --rule: #c9d2c4;
  --warning: #3d4528;
  --warning-bg: #e8ecd8;
  --warning-rule: #c5cda8;
  --footer: #152820;
  --radius: 0.2rem;
  --radius-sm: 0.15rem;
  --header-h: 3.75rem;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Literata", Georgia, serif;
  --font-mono: "Fragment Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(45, 86, 70, 0.05) 0%, transparent 42%),
    linear-gradient(180deg, var(--fog) 0%, var(--mist) 55%, var(--stone) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-mid);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--citrus-deep);
}

:focus-visible {
  outline: 2px solid var(--citrus);
  outline-offset: 3px;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2rem));
}

.ad-disclosure {
  background: var(--warning-bg);
  color: var(--warning);
  border-bottom: 2px solid var(--warning-rule);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.ad-disclosure strong:first-child {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.ad-disclosure p {
  margin: 0 auto;
  max-width: 88ch;
}

.health-disclaimer {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: #a8b5a4;
  max-width: 78ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--forest);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
}

.logo-mark {
  width: 0.55rem;
  height: 1.55rem;
  border-radius: 0;
  background: linear-gradient(180deg, var(--citrus) 0%, var(--forest) 100%);
  flex-shrink: 0;
}

.logo span {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.78rem;
  display: none;
  border-left: 1px solid var(--rule);
  padding-left: 0.55rem;
  margin-left: 0.15rem;
}

@media (min-width: 720px) {
  .logo span {
    display: inline;
  }
}

.nav {
  display: none;
  gap: 1.4rem;
  margin-left: auto;
  margin-right: 0.65rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--forest);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 0.95rem 1.6rem;
  min-height: 48px;
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--citrus);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-sm {
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 0.55rem 1rem;
  min-height: 42px;
  font-size: 0.84rem;
  white-space: nowrap;
}

@media (min-width: 860px) {
  .btn-sm {
    margin-left: 0;
  }
}

.btn-sm:hover {
  background: var(--forest);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  gap: 0;
  width: min(100%, 100vw);
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: minmax(280px, 420px) 1fr;
    min-height: calc(100svh - var(--header-h) - 3.2rem);
    align-items: stretch;
  }

  .hero-visual {
    order: -1;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: var(--fog);
}

.brand-hero {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4.2vw, 2.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1;
  animation: brand-in 0.7s ease both;
}

.kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  max-width: 14ch;
}

.lede {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42ch;
  font-size: 1.05rem;
}

.note-card {
  margin: 0.2rem 0 0;
  padding: 0.85rem 0 0.85rem 1rem;
  background: transparent;
  border: none;
  border-left: 3px solid var(--citrus);
  border-radius: 0;
  max-width: 48ch;
}

.note-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink);
}

.buy-rail {
  margin-top: 0.5rem;
  padding-top: 1.15rem;
  border-top: 2px solid var(--forest);
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.price-note,
.merchant-note {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.metric-row {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 560px) {
  .metric-row {
    grid-template-columns: 1fr;
  }
}

.metric-row li {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 0.9rem 0.85rem;
}

.metric-row li:last-child {
  border-right: none;
}

@media (max-width: 560px) {
  .metric-row li {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .metric-row li:last-child {
    border-bottom: none;
  }
}

.metric-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--citrus-deep);
}

.metric-label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.12), transparent 55%),
    var(--forest);
  padding: 1.25rem 1rem 0.75rem;
}

@media (min-width: 920px) {
  .hero-visual {
    min-height: 100%;
    padding: 2rem 1.25rem 1.25rem;
  }
}

.hero-frame {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.hero-frame > img {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: min(420px, 58vh);
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  margin-inline: auto;
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.5rem 0 0.25rem;
  background: transparent;
  width: 100%;
}

.thumb {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.is-active,
.thumb:focus-visible {
  border-color: var(--citrus);
}

.section {
  padding: clamp(2.8rem, 6vw, 5.5rem) 0;
}

.section-split {
  background: var(--white);
  border-block: none;
  box-shadow: inset 0 1px 0 var(--rule), inset 0 -1px 0 var(--rule);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  color: var(--forest);
}

.section-lede {
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  max-width: 54ch;
}

.disclaimer {
  padding: 1rem 0 1rem 1rem;
  background: transparent;
  border: none;
  border-left: 3px solid var(--leaf);
  border-radius: 0;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid var(--rule);
}

.feature-list li::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.45rem;
  border-radius: 0;
  background: var(--citrus);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.botany-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .botany-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.botany-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.botany-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 320ms ease, transform 320ms ease;
}

.botany-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.015);
}

.botany-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--forest);
}

.botany-card p,
.botany-card .card-body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card-body {
  padding: 1rem 0 0;
  border-top: 2px solid var(--forest);
  margin-top: 0.85rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.steps li {
  background: transparent;
  border: none;
  border-top: 2px solid var(--forest);
  border-radius: 0;
  padding: 1.4rem 1.2rem 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 800px) {
  .steps li {
    padding: 1.4rem 1.5rem 1.5rem 0;
    border-right: 1px solid var(--rule);
  }

  .steps li:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.step-num {
  font-family: var(--font-mono);
  color: var(--citrus-deep);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.scene {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 860px) {
  .scene {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border: 2px solid var(--forest);
  border-radius: 0;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.spec-table th {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: 36%;
  background: var(--mist);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.care-panel {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .care-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.care-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  outline: 2px solid var(--forest);
  outline-offset: 8px;
}

.buy-panel {
  display: grid;
  gap: 1.6rem;
  background: var(--forest);
  color: #e4ebe6;
  border-radius: 0;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  position: relative;
  overflow: hidden;
}

.buy-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(212, 120, 46, 0.18));
  pointer-events: none;
}

.buy-panel h2,
.buy-panel .price {
  color: var(--white);
}

.buy-panel p,
.buy-panel li {
  color: #c5d4cb;
}

.buy-panel a {
  color: #f0b978;
}

@media (min-width: 800px) {
  .buy-panel {
    grid-template-columns: 1.35fr 0.8fr;
    align-items: center;
  }
}

.plain-list {
  padding-left: 1.15rem;
}

.buy-panel-cta {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  position: relative;
  z-index: 1;
}

.buy-panel .btn-primary {
  background: var(--citrus);
  color: var(--white);
}

.buy-panel .btn-primary:hover {
  background: #e8923f;
  color: var(--white);
}

.buy-panel .merchant-note {
  color: #a8bbae;
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0.95rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-family: var(--font-mono);
  color: var(--citrus-deep);
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0.65rem 0 0.25rem;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--footer);
  color: #b8c7ba;
  padding: 2.8rem 0 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #e8b878;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.45fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.8rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 210, 196, 0.2);
  font-size: 0.88rem;
}

.legal-main {
  padding: 2rem 0 3.5rem;
}

.legal-kicker {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.legal-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1.5rem;
  color: var(--forest);
}

.legal-body {
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: 0;
  padding: clamp(1.1rem, 3vw, 1.85rem);
  overflow-wrap: anywhere;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin: 1.6rem 0 0.7rem;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-mid);
  margin: 1.25rem 0 0.45rem;
}

.legal-body ol,
.legal-body ul {
  color: var(--ink-soft);
}

.legal-toc {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  background: var(--mist);
  border: none;
  border-left: 3px solid var(--citrus);
  border-radius: 0;
}

.legal-toc p {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-status {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-body td,
.legal-body th {
  border: 1px solid var(--rule);
  padding: 0.5rem 0.65rem;
  vertical-align: top;
}

.legal-source {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.spec-dl {
  display: grid;
  gap: 0;
  margin: 1.25rem 0;
  border-top: 1px solid var(--rule);
}

.spec-dl > div {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 560px) {
  .spec-dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.spec-dl dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.spec-dl dd {
  margin: 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
  }

  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }

  .hero-frame > img {
    animation: hero-fade 0.9s ease both;
  }
}

@keyframes brand-in {
  from {
    opacity: 0;
    letter-spacing: 0.32em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.18em;
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--rule);
  padding: 0.95rem 1.55rem;
  min-height: 48px;
  font-size: 1rem;
}

.btn-ghost:hover {
  background: var(--mist);
  color: var(--forest);
  border-color: var(--forest);
}

.cookie-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  pointer-events: none;
}

.cookie-overlay[hidden] {
  display: none;
}

.cookie-card {
  pointer-events: auto;
  width: min(760px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  background: var(--white);
  border-radius: 0;
  padding: 1rem 1.15rem 1.05rem;
  box-shadow: 0 -8px 32px rgba(21, 40, 32, 0.18);
  border: 2px solid var(--forest);
  animation: cookie-up 0.32s ease;
}

.cookie-card h2 {
  flex: 1 1 100%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  color: var(--forest);
}

.cookie-card p {
  flex: 1 1 14rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.cookie-actions .btn {
  flex: 0 1 auto;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  font-size: 0.92rem;
}

@keyframes cookie-up {
  from {
    transform: translateY(1.25rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-card,
  .brand-hero,
  .hero-frame > img {
    animation: none;
  }
}

.footer-links button.cookie-open {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #e8b878;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
  text-align: left;
}

.footer-links button.cookie-open:hover {
  color: var(--white);
}
