/* ==========================================================================
   Love2Live — organic minimalism
   Palette from the 2026 strategy document (Brand Book §04, proposed palette):
   white and soft cream grounds, bamboo and wood tones, muted olive, capsule
   purple as the one saturated accent. Type: an elegant serif for titles, a
   clean sans for reading (Brand Book §05, 2026 direction).
   Component rules (Brand Book §08): radius 100px or 10px, nothing between.
   Focus visible on every interactive element. Body copy is always Ink.
   ========================================================================== */

:root {
  /* grounds */
  --white:   #FFFFFF;
  --cream:   #F3EDE3;
  --sand:    #E8DFCF;
  --linen:   #FAF7F1;
  /* woods */
  --bamboo:  #B08A5A;
  --bark:    #5C4632;
  --walnut:  #3E2F22;
  /* greens */
  --olive:   #7D8B5F;
  --moss:    #4F5A3A;
  --sage:    #C9CFB6;
  /* accent */
  --purple:  #6B4E9E;
  --purple-soft: #EDE7F4;
  /* type */
  --ink:     #1F1A16;      /* warm near-black, never pure #000 */
  --ink-2:   #4A4038;
  --muted:   #7A6E64;
  --hair:    #E1D8C8;

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Jost", "Century Gothic", "Avenir Next", system-ui, sans-serif;

  --r-card: 10px;
  --r-pill: 100px;
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--walnut); }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
p { margin: 0 0 1.1em; max-width: 68ch; }
strong, b { font-weight: 500; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 10px 18px;
  border-radius: var(--r-pill); font-size: 14px;
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; }
.display { font-size: clamp(48px, 8vw, 96px); }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  margin: 0 0 14px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 18px;
}
.lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 34em;
}
.serif { font-family: var(--serif); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* --------------------------------------------------------------------------
   Buttons — pills, saying what happens
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--r-pill);
  border: 1px solid var(--ink); background: var(--ink); color: var(--white);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { background: var(--walnut); border-color: var(--walnut); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn-olive { background: var(--moss); border-color: var(--moss); }
.btn-olive:hover { background: var(--olive); border-color: var(--olive); }
.btn-purple { background: var(--purple); border-color: var(--purple); }
.btn-purple:hover { background: #57408A; border-color: #57408A; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.arrow-link::after { content: "\2192"; transition: transform .2s; }
.arrow-link:hover { border-color: var(--moss); }
.arrow-link:hover::after { transform: translateX(4px); }

.tag {
  display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--cream); color: var(--bark);
}
.tag-olive { background: var(--sage); color: var(--moss); }
.tag-purple { background: var(--purple-soft); color: var(--purple); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--sans); font-weight: 400; font-size: 20px; letter-spacing: 0.22em; }
.brand-tag { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px; white-space: nowrap; }
.site-nav a {
  font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2); padding: 6px 0; border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--bamboo); }
.nav-lang a { border: 1px solid var(--hair); border-radius: var(--r-pill); padding: 7px 16px; }
.nav-lang a:hover, .nav-lang a[aria-current] { border-color: var(--bamboo); border-bottom-color: var(--bamboo); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 1.5px; background: var(--ink); transition: transform .25s, top .25s, opacity .25s;
}
.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { top: -8px; left: 0; }
.nav-toggle-bar::after  { top: 8px;  left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1320px) {
  .site-nav ul { gap: 18px; }
  .site-nav a { font-size: 12px; letter-spacing: .08em; }
  .brand-tag { display: none; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--hair); padding: 12px var(--gutter) 24px; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-top: 1px solid var(--hair); }
  .site-nav a { display: block; padding: 14px 0; font-size: 14px; border-bottom: 0; }
  .site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom: 0; color: var(--moss); }
  .nav-lang { padding-top: 14px; }
  .nav-lang a { display: inline-block; padding: 8px 18px; }
}

/* --------------------------------------------------------------------------
   Sections & layout
   -------------------------------------------------------------------------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-cream { background: var(--cream); }
.bg-linen { background: var(--linen); }
.bg-sand  { background: var(--sand); }
.bg-moss  { background: var(--moss); color: var(--white); }
.bg-walnut{ background: var(--walnut); color: var(--white); }
.bg-moss h1, .bg-moss h2, .bg-moss h3, .bg-walnut h1, .bg-walnut h2, .bg-walnut h3 { color: var(--white); }
.bg-moss .eyebrow, .bg-walnut .eyebrow { color: var(--sage); }
.bg-moss .lead, .bg-walnut .lead { color: rgba(255,255,255,.85); }
.bg-moss a:not(.btn), .bg-walnut a:not(.btn) { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } .grid-2 { gap: 40px; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

.img-card { border-radius: var(--r-card); overflow: hidden; background: var(--cream); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-16x9 { aspect-ratio: 16 / 9; }

.card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--r-card);
  padding: 32px 28px;
}
.card h3 { margin-top: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-cream { background: var(--cream); border-color: transparent; }
.card-num {
  font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--bamboo); font-weight: 300;
}

.rule { border: 0; border-top: 1px solid var(--hair); margin: 0; }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero { background: var(--cream); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  min-height: min(82vh, 760px); padding: clamp(48px, 7vw, 96px) 0;
}
.hero h1 { max-width: 12ch; }
.hero .lead { margin-top: 20px; }
.hero-media { position: relative; }
.hero-media .img-card { aspect-ratio: 5 / 4; box-shadow: 0 30px 60px -30px rgba(62,47,34,.35); }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--white);
  border-radius: var(--r-card); padding: 16px 20px; max-width: 250px;
  box-shadow: 0 20px 40px -24px rgba(62,47,34,.4);
}
.hero-badge .label { margin-bottom: 4px; color: var(--olive); }
.hero-badge p { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.3; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero h1 { max-width: none; }
  .hero-badge { left: 16px; }
}

/* Page hero (interior) */
.page-hero { padding: clamp(56px, 8vw, 104px) 0 clamp(32px, 5vw, 56px); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 18px; }

/* --------------------------------------------------------------------------
   Pillars
   -------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--hair); border-radius: var(--r-card); overflow: hidden; background: var(--white); }
.pillar { padding: 36px 28px; border-left: 1px solid var(--hair); position: relative; }
.pillar:first-child { border-left: 0; }
.pillar-n { font-family: var(--serif); font-size: 52px; line-height: 1; color: var(--bamboo); font-weight: 300; margin-bottom: 18px; }
.pillar h3 { font-size: 26px; margin-bottom: 10px; }
.pillar p { font-size: 15.5px; margin-bottom: 14px; }
.pillar .via { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); font-weight: 500; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr 1fr; } .pillar:nth-child(3) { border-left: 0; } .pillar:nth-child(n+3) { border-top: 1px solid var(--hair); } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } .pillar { border-left: 0; border-top: 1px solid var(--hair); } .pillar:first-child { border-top: 0; } }

/* Pillars — long form on method page */
.pillar-row { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 32px; padding: 40px 0; border-top: 1px solid var(--hair); align-items: start; }
.pillar-row:last-child { border-bottom: 1px solid var(--hair); }
.pillar-row .pillar-n { margin: 0; }
.pillar-row h2 { font-size: 34px; margin-bottom: 8px; }
@media (max-width: 800px) { .pillar-row { grid-template-columns: 60px 1fr; } .pillar-row > :last-child { grid-column: 2; } }

/* --------------------------------------------------------------------------
   Word field — Brand Book §01, the fixed vocabulary as a repeating band
   -------------------------------------------------------------------------- */
.wordfield {
  overflow: hidden; padding: 34px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  background: var(--linen);
}
.wordfield-track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.wordfield span {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); font-weight: 300; font-style: italic;
  color: var(--bark); padding: 0 28px; white-space: nowrap;
}
.wordfield span:nth-child(3n) { color: var(--olive); }
.wordfield span:nth-child(5n) { color: var(--bamboo); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wordfield-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */
.product-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-tile { position: relative; border-radius: var(--r-card); overflow: hidden; background: var(--cream); min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.product-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-tile .tile-body {
  position: relative; padding: 36px; background: linear-gradient(to top, rgba(31,26,22,.78), rgba(31,26,22,0)); color: var(--white);
}
.product-tile h3 { color: var(--white); font-family: var(--sans); font-weight: 400; letter-spacing: .2em; font-size: 22px; margin-bottom: 8px; }
.product-tile p { color: rgba(255,255,255,.9); margin-bottom: 18px; font-size: 16px; }
.product-tile .arrow-link { color: var(--white); }
.product-tile .arrow-link:hover { border-color: var(--white); }
.product-tile.tile-plain { background: var(--moss); }
.product-tile.tile-plain .tile-body { background: none; padding-top: 36px; }
@media (max-width: 700px) { .product-pair { grid-template-columns: 1fr; } .product-tile { min-height: 400px; } }

/* Shop */
.shop-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.price-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.price { border: 1px solid var(--hair); border-radius: var(--r-card); padding: 20px 22px; background: var(--white); }
.price .label { margin-bottom: 6px; }
.price .amount { font-family: var(--serif); font-size: 44px; line-height: 1; font-weight: 300; }
.price .amount small { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.price .note { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.price-featured { border-color: var(--bamboo); background: var(--linen); }
.shop-marks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
@media (max-width: 900px) { .shop-hero { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .price-block { grid-template-columns: 1fr; } }

.includes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.includes .card { padding: 0; overflow: hidden; }
.includes .img-card { border-radius: 0; aspect-ratio: 4/3; }
.includes .card-body { padding: 24px; }
.includes h3 { font-size: 22px; }
.includes p { font-size: 15px; }
@media (max-width: 900px) { .includes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .includes { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { padding: 28px 0 0; border-top: 1px solid var(--bamboo); }
.step-n { font-family: var(--serif); font-size: 15px; letter-spacing: .1em; color: var(--bamboo); margin-bottom: 12px; }
.step h3 { font-size: 26px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Quote / callout
   -------------------------------------------------------------------------- */
.quote {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 300; font-style: italic;
  line-height: 1.2; color: var(--ink); max-width: 22ch; margin: 0;
}
.quote-mark { font-family: var(--serif); font-size: 90px; line-height: .5; color: var(--bamboo); display: block; margin-bottom: 20px; }
.callout {
  border-left: 3px solid var(--bamboo); padding: 6px 0 6px 24px; margin: 32px 0;
}
.callout h3 { font-size: 20px; margin-bottom: 6px; }
.callout p { font-size: 15.5px; margin: 0; }
.notice {
  background: var(--purple-soft); border-radius: var(--r-card); padding: 24px 28px; margin: 32px 0;
  border: 1px solid #DCD2EA;
}
.notice h3 { color: var(--purple); font-size: 20px; margin-bottom: 6px; }
.notice p { margin: 0; font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Ingredients catalogue
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 32px 0 20px; }
.filters .label { margin: 0 12px 0 0; }
.filter {
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r-pill); border: 1px solid var(--hair); background: var(--white);
  color: var(--ink-2); cursor: pointer; transition: all .15s;
}
.filter:hover { border-color: var(--bamboo); color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.filter-count { font-size: 13px; color: var(--muted); margin: 0 0 24px; }

.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing { border: 1px solid var(--hair); border-radius: var(--r-card); padding: 26px 26px 22px; background: var(--white); transition: border-color .2s; }
.ing:hover { border-color: var(--bamboo); }
.ing[hidden] { display: none; }
.ing-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.ing h3 { font-size: 25px; margin: 0; }
.ing .latin { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; margin: 2px 0 12px; }
.ing p { font-size: 15px; margin-bottom: 16px; }
.ing-codes { display: flex; flex-wrap: wrap; gap: 6px; }
.ing-codes .tag { font-size: 10px; padding: 4px 10px; }
@media (max-width: 900px) { .ing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ing-grid { grid-template-columns: 1fr; } }

.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.mosaic .img-card { aspect-ratio: 1; border-radius: 6px; }
.mosaic .img-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) { .mosaic { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form { max-width: 620px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--bark); margin-bottom: 8px; }
.field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--white);
  border: 1px solid var(--hair); border-radius: var(--r-card); padding: 14px 16px;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bamboo); outline: 2px solid var(--purple); outline-offset: 2px; }
.field-check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.field-check input { margin-top: 5px; accent-color: var(--moss); width: 18px; height: 18px; }
.field-check label { font-family: var(--sans); font-size: 15px; letter-spacing: 0; text-transform: none; font-weight: 300; color: var(--ink); margin: 0; }
.form-inline { display: flex; gap: 10px; max-width: 520px; }
.form-inline input { flex: 1; font: inherit; font-size: 16px; padding: 14px 18px; border-radius: var(--r-pill); border: 1px solid var(--hair); }
.form-inline input:focus { border-color: var(--bamboo); }
@media (max-width: 520px) { .form-inline { flex-direction: column; } }
.hp { position: absolute; left: -9999px; }
.alert { border-radius: var(--r-card); padding: 16px 20px; margin-bottom: 24px; font-size: 15px; }
.alert-ok { background: #EAF0E2; color: var(--moss); border: 1px solid var(--sage); }
.alert-err { background: #F6E7E2; color: #7A3B2A; border: 1px solid #E8CFC5; }

/* --------------------------------------------------------------------------
   CTA band — one per screenful
   -------------------------------------------------------------------------- */
.cta-band { background: var(--moss); color: var(--white); padding: clamp(56px, 8vw, 96px) 0; }
.cta-band .cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band .eyebrow { color: var(--sage); }
@media (max-width: 760px) { .cta-band .cta-inner { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--walnut); color: rgba(255,255,255,.8); padding: clamp(56px, 7vw, 88px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { width: 120px; }
.footer-heals { font-family: var(--sans); letter-spacing: .3em; font-size: 12px; font-weight: 500; color: var(--sage); margin: 18px 0 0; }
.site-footer .label { color: var(--bamboo); }
.footer-links { list-style: none; margin: 0 0 28px; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.85); font-size: 15px; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 80ch; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.5); margin: 0; letter-spacing: .04em; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* --------------------------------------------------------------------------
   Reveal on scroll (progressive; content is visible without JS)
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
