/* ==========================================================================
   Raw Soaps and Suds — "Wash Day at the Roadside Soap Stand"
   Playful/quirky redesign. Concept + tokens documented in /DESIGN.md.
   Static site, one shared stylesheet. Everything derives from the tokens in
   §1 — no magic hex/spacing values scattered below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Suds & Citrus palette */
  --paper: #EDEFFA;        /* pale periwinkle-white background */
  --cloud: #FFFFFF;        /* card / surface */
  --ink: #20223F;          /* deep indigo text + printed outlines/shadows */
  --blue: #3B4CC0;         /* bright bluebonnet cobalt — primary */
  --blue-deep: #2A3690;    /* pressed/hover blue */
  --mango: #FF7A2F;        /* signature accent (juicy citrus orange) */
  --cherry: #EA4E86;       /* berry pink */
  --leaf: #2FA36B;         /* fresh green */
  --sun: #FFC53D;          /* bubble/highlight yellow */

  /* Per-scent accent is set per card; this is the safe default */
  --accent: var(--blue);

  /* Type */
  --font-display: 'Shrikhand', 'Georgia', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1.05rem;
  --text-lg: 1.25rem;
  --text-xl: 1.6rem;
  --text-2xl: 2.1rem;
  --text-3xl: 2.9rem;
  --text-4xl: 3.8rem;
  --text-5xl: 5rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;
  --space-12: 88px;
  --space-16: 120px;

  /* Sticker language */
  --radius: 16px;
  --radius-lg: 26px;
  --outline: 2.5px solid var(--ink);
  --shadow-hard: 5px 5px 0 var(--ink);
  --shadow-hard-lg: 8px 8px 0 var(--ink);
  --shadow-press: 2px 2px 0 var(--ink);

  --max-width: 1120px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1); /* gentle overshoot for "pop" */
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Keyboard focus — loud on purpose, matches the sticker language */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.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-link {
  position: absolute; left: var(--space-4); top: -120%; z-index: 200;
  padding: var(--space-3) var(--space-4);
  background: var(--mango); color: var(--ink);
  border: var(--outline); border-radius: var(--radius);
  font-weight: 700; box-shadow: var(--shadow-hard);
}
.skip-link:focus { top: var(--space-4); }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;          /* Shrikhand ships one weight */
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--ink);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: clamp(1.7rem, 5.5vw, 2.9rem); }
h3 { font-size: var(--text-xl); }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; }

p { line-height: 1.65; }
strong { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

@media (max-width: 640px) {
  :root { --text-5xl: 2.5rem; --text-4xl: 2.1rem; --text-3xl: 1.85rem; --text-2xl: 1.6rem; }
  .eyebrow { letter-spacing: 0.08em; font-size: 0.8rem; }
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section { padding-block: var(--space-12); }
.section--sm { padding-block: var(--space-8); }
.section--lg { padding-block: var(--space-16); }

/* Section colour fields (rhythm comes from alternating these + varied padding) */
.section--paper { background: var(--paper); }
.section--cloud { background: var(--cloud); }
.section--blue { background: var(--blue); color: #fff; }
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--mango { background: var(--mango); }

.section-head {
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  text-align: center;
}
.section-head p { margin-top: var(--space-4); font-size: var(--text-lg); }
.section--blue .section-lead,
.section--ink .section-lead { color: rgba(255,255,255,0.9); }
.section-lead { color: color-mix(in srgb, var(--ink) 78%, transparent); }

.actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; margin-top: var(--space-8); }

/* --------------------------------------------------------------------------
   5. Bubbles — the signature motif
   -------------------------------------------------------------------------- */
.bubbles { display: block; width: 100%; height: auto; overflow: visible; }
.bubble-row { display: flex; justify-content: center; gap: var(--space-4); margin: 0 auto; }

/* A stamped sticker wrapper anything can opt into */
.sticker {
  background: var(--cloud);
  border: var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}
.tilt-l { transform: rotate(-2deg); }
.tilt-r { transform: rotate(2deg); }

/* Small tag/chip */
.tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  background: var(--sun); color: var(--ink);
  border: var(--outline); border-radius: 999px;
}
.tag--mango { background: var(--mango); }
.tag--cherry { background: var(--cherry); color: #fff; }
.tag--leaf { background: var(--leaf); color: #fff; }

/* --------------------------------------------------------------------------
   6. Buttons — chunky printed stickers
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 26px;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-base);
  line-height: 1; text-align: center;
  color: var(--ink);
  background: var(--cloud);
  border: var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background-color .12s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: var(--shadow-press); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }

.btn--primary { background: var(--mango); color: var(--ink); }
.btn--secondary { background: var(--cloud); color: var(--ink); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--on-dark { background: var(--sun); color: var(--ink); }
.btn--lg { padding: 18px 34px; font-size: var(--text-lg); }
.btn--block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 2.5px solid var(--ink); }
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  max-width: var(--max-width); margin-inline: auto;
  padding: var(--space-3) var(--space-5); min-height: 68px;
}
.site-nav__brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.site-nav__logo { width: 40px; height: 40px; transform: rotate(-6deg); }
.site-nav__wordmark { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }

.site-nav__menu { display: flex; align-items: center; gap: var(--space-6); }
.site-nav__links { display: flex; align-items: center; gap: var(--space-5); }
.site-nav__link {
  font-weight: 700; color: var(--ink); padding-block: var(--space-1);
  border-bottom: 3px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.site-nav__link:hover { color: var(--blue); }
.site-nav__link[aria-current="page"] { color: var(--blue); border-bottom-color: var(--mango); }

.site-nav__cta { padding: 10px 20px; font-size: var(--text-sm); box-shadow: var(--shadow-press); }
.site-nav__cta:hover { transform: translate(1px,1px); box-shadow: 0 0 0 var(--ink); }

.site-nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: var(--space-2);
  border: var(--outline); border-radius: 12px; background: var(--cloud); box-shadow: var(--shadow-press);
}
.site-nav__toggle-bar { display: block; width: 22px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-nav__toggle { display: flex; }
  .site-nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: var(--space-3);
    padding: var(--space-5); background: var(--paper);
    border-bottom: 2.5px solid var(--ink); box-shadow: var(--shadow-hard-lg);
    display: none;
  }
  .site-nav__menu[data-open="true"] { display: flex; }
  .site-nav__links { flex-direction: column; align-items: stretch; gap: var(--space-2); }
  .site-nav__link { padding-block: var(--space-3); border-bottom: 2px solid color-mix(in srgb, var(--ink) 15%, transparent); }
  .site-nav__cta { width: 100%; }
}

/* --------------------------------------------------------------------------
   8. Hero + the one orchestrated motion (suds load-in)
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--paper); padding-block: var(--space-10) var(--space-12); }
.hero__inner { position: relative; z-index: 2; max-width: 40ch; margin-inline: auto; text-align: center; }
.hero--page .hero__inner { max-width: 52ch; }

.hero__eyebrow { margin-bottom: var(--space-4); }
.hero__title { font-size: clamp(2rem, 8.5vw, 5rem); transform: rotate(-2deg); margin-bottom: var(--space-5); overflow-wrap: break-word; }
.hero__title .pop { display: inline-block; }
.hero__title .pop--mango { color: var(--mango); -webkit-text-stroke: 1.5px var(--ink); }
.hero__title .pop--blue { color: var(--blue); -webkit-text-stroke: 1.5px var(--ink); }
.hero__lead { font-size: var(--text-lg); color: color-mix(in srgb, var(--ink) 82%, transparent); margin-inline: auto; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; margin-top: var(--space-8); }

/* floating soap bubbles */
.hero__bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__bubble { position: absolute; border-radius: 50%; border: 2.5px solid var(--ink); }
.hero__bubble::after { /* shine */
  content: ""; position: absolute; top: 16%; left: 18%; width: 26%; height: 26%;
  border-radius: 50%; background: rgba(255,255,255,0.75);
}

/* Load-in. Text animations are TRANSFORM-ONLY so hero copy is never invisible
   (no reliance on an animation to reveal it). Only the decorative bubbles fade. */
@keyframes title-pop { 0% { transform: translateY(16px) rotate(-3deg) scale(.9); } 100% { transform: rotate(-2deg); } }
@keyframes slide-up { 0% { transform: translateY(14px); } 100% { transform: none; } }
@keyframes rise-in { 0% { opacity: 0; transform: translateY(40px) scale(.35); } 100% { opacity: 1; transform: none; } }

.hero__title { animation: title-pop .6s .05s var(--ease) both; }
.hero__eyebrow { animation: slide-up .5s both; }
.hero__lead { animation: slide-up .5s .12s both; }
.hero__actions { animation: slide-up .5s .24s both; }
.hero__bubble { animation: rise-in .9s var(--ease) both; }

/* Bubbles are a desktop delight; on narrow screens they crowd the copy, so
   the hero reads clean without them. */
@media (max-width: 720px) {
  .hero__bubbles { display: none; }
  .hero__title { transform: rotate(-1.5deg); }
}

/* --------------------------------------------------------------------------
   9. Trust banner — bold "wash day" strip
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--ink); border-block: 2.5px solid var(--ink); padding-block: var(--space-4); }
.trust-bar__list { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3) var(--space-6); }
.trust-bar__item {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--paper); font-weight: 700; font-size: var(--text-sm);
}
.trust-bar__item::before { content: "✺"; color: var(--sun); font-size: 1.1em; }

/* --------------------------------------------------------------------------
   9b. Notice bar — "new batch on the way" strip on Home + The Bars.
   TODO(go-live): delete this block (and the .notice-bar sections in
   index.html + shop.html) once the new lineup is ready to order,
   around the week of August 3, 2026.
   -------------------------------------------------------------------------- */
.notice-bar { background: var(--sun); border-block: 2.5px solid var(--ink); padding-block: var(--space-4); text-align: center; }
.notice-bar__text { font-weight: 700; font-size: var(--text-sm); max-width: 72ch; margin-inline: auto; padding-inline: var(--space-4); }

/* --------------------------------------------------------------------------
   10. Scent cards — hand-applied fruit-label stickers
   -------------------------------------------------------------------------- */
.scent-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-8) var(--space-6); }

.scent-card {
  position: relative;
  flex: 0 1 320px;
  display: flex; flex-direction: column;
  padding: var(--space-5);
  background: var(--cloud);
  border: var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--accent);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.scent-card:nth-child(odd) { transform: rotate(-1.4deg); }
.scent-card:nth-child(even) { transform: rotate(1.4deg); }
.scent-card:hover, .scent-card:focus-within {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 10px 12px 0 var(--accent);
}

/* per-scent accents (content-justified: four real scents) */
.scent-card--tangerine { --accent: var(--mango); }
.scent-card--beautiful { --accent: var(--cherry); }
.scent-card--bliss { --accent: var(--blue); }
.scent-card--orange-blast { --accent: var(--sun); }

.scent-card__frame {
  position: relative;
  width: 100%; aspect-ratio: 4 / 3;
  margin-bottom: var(--space-4);
  border: var(--outline); border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 18%, var(--cloud));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scent-card__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.scent-card__photo--icon { width: 96px; height: 96px; object-fit: contain; }

/* the "bubble pop" on hover — the touchable thing rewards you */
.scent-card__frame::after {
  content: ""; position: absolute; top: -12px; right: -10px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); border: 2.5px solid var(--ink);
  opacity: 0; transform: scale(0);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.scent-card:hover .scent-card__frame::after,
.scent-card:focus-within .scent-card__frame::after { opacity: 1; transform: scale(1); }

.scent-card__name { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.scent-card__desc { color: color-mix(in srgb, var(--ink) 78%, transparent); flex: 1; margin-bottom: var(--space-4); }
.scent-card__cta { margin-top: auto; }

/* --------------------------------------------------------------------------
   11. Price sticker
   -------------------------------------------------------------------------- */
.price-sticker {
  display: inline-block; text-align: center;
  padding: var(--space-6) var(--space-8);
  background: var(--sun); color: var(--ink);
  border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  transform: rotate(-2deg);
}
.price-sticker__amount { font-family: var(--font-display); font-size: var(--text-3xl); line-height: 1; }
.price-sticker__note { margin-top: var(--space-3); font-weight: 700; max-width: 34ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   12. Prose + panel
   -------------------------------------------------------------------------- */
.prose { max-width: 62ch; margin-inline: auto; text-align: center; }
.prose p { font-size: var(--text-lg); }
.prose p + p { margin-top: var(--space-4); }

.panel {
  max-width: 720px; margin-inline: auto;
  padding: var(--space-8);
  background: var(--cloud);
  border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
}
.panel + .panel { margin-top: var(--space-8); }

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band__inner { max-width: 44ch; margin-inline: auto; }
.cta-band__title { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.cta-band__text { font-size: var(--text-lg); margin-bottom: var(--space-8); }

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-4); }
.faq__item { background: var(--cloud); border: var(--outline); border-radius: var(--radius); box-shadow: var(--shadow-press); overflow: hidden; }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg);
  cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--mango); color: var(--ink); border: 2.5px solid var(--ink);
  font-size: 1.2rem; line-height: 1; transition: transform .25s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(135deg); }
.faq__a { padding: 0 var(--space-5) var(--space-5); color: color-mix(in srgb, var(--ink) 80%, transparent); }
.faq__a a { color: var(--blue); font-weight: 700; text-decoration: underline; }

/* --------------------------------------------------------------------------
   15. Ordering steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-6); max-width: 960px; margin-inline: auto; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  text-align: center; padding: var(--space-6);
  background: var(--cloud); border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
}
.step:nth-child(1) { --accent: var(--mango); }
.step:nth-child(2) { --accent: var(--cherry); }
.step:nth-child(3) { --accent: var(--leaf); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: var(--space-4);
  border-radius: 50%; background: var(--accent); color: var(--ink);
  border: var(--outline); box-shadow: var(--shadow-press);
  font-family: var(--font-display); font-size: var(--text-xl);
}
.step:nth-child(2) .step__num, .step:nth-child(3) .step__num { color: #fff; }
.step__title { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step__desc { color: color-mix(in srgb, var(--ink) 78%, transparent); }

/* --------------------------------------------------------------------------
   16. Form
   -------------------------------------------------------------------------- */
.request-form { max-width: 560px; text-align: left; }
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.field__label { font-weight: 700; }
.field__optional { font-weight: 400; color: color-mix(in srgb, var(--ink) 60%, transparent); }
.input {
  width: 100%; padding: 12px 14px;
  background: var(--paper); color: var(--ink);
  border: var(--outline); border-radius: 12px;
  transition: box-shadow .12s ease, transform .12s ease;
}
.input::placeholder { color: color-mix(in srgb, var(--ink) 50%, transparent); }
.input:focus { box-shadow: var(--shadow-press); transform: translate(-1px,-1px); }
/* keep the loud blue ring for keyboard users; only drop the UA outline for pointer focus */
.input:focus:not(:focus-visible) { outline: none; }
textarea.input { resize: vertical; min-height: 110px; }
.field__hint { font-size: var(--text-sm); color: color-mix(in srgb, var(--ink) 62%, transparent); }
.form-note { margin-top: var(--space-5); text-align: center; font-size: var(--text-sm); }
.form-note a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.form-status {
  margin-top: var(--space-5); padding: 12px 14px;
  border: var(--outline); border-radius: 12px;
  box-shadow: var(--shadow-press); font-weight: 700;
}
.form-status[data-state="ok"] { background: var(--mango); color: var(--ink); }
.form-status[data-state="error"] { background: var(--paper); color: var(--ink); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: var(--space-10) var(--space-6); border-top: 2.5px solid var(--ink); }
.site-footer__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--space-8); text-align: center;
  max-width: var(--max-width); margin-inline: auto; padding-inline: var(--space-5);
}
@media (min-width: 760px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-10); text-align: left; } }
.site-footer__brand { font-family: var(--font-display); font-size: var(--text-xl); color: #fff; margin-bottom: var(--space-3); }
.site-footer__description { font-size: var(--text-sm); color: rgba(255,255,255,0.82); max-width: 42ch; margin-inline: auto; }
@media (min-width: 760px) { .site-footer__description { margin-inline: 0; } }
.site-footer__heading { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: var(--text-sm); color: var(--sun); margin-bottom: var(--space-4); }
.site-footer__list { display: flex; flex-direction: column; gap: var(--space-3); align-items: center; }
@media (min-width: 760px) { .site-footer__list { align-items: flex-start; } }
.site-footer__link { color: rgba(255,255,255,0.88); font-size: var(--text-sm); font-weight: 700; }
.site-footer__link:hover { color: var(--sun); }
.site-footer__item { font-size: var(--text-sm); color: rgba(255,255,255,0.82); }
.site-footer__bottom {
  max-width: var(--max-width); margin: var(--space-8) auto 0; padding: var(--space-5) var(--space-5) 0;
  border-top: 1px solid rgba(255,255,255,0.2); text-align: center;
  font-size: var(--text-xs); color: rgba(255,255,255,0.7);
}

/* --------------------------------------------------------------------------
   18. Reduced motion — respect it fully
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__title, .hero__eyebrow, .hero__lead, .hero__actions, .hero__bubble { opacity: 1 !important; transform: none !important; }
  .hero__title { transform: rotate(-2deg) !important; }
  .scent-card:nth-child(odd) { transform: rotate(-1.4deg); }
  .scent-card:nth-child(even) { transform: rotate(1.4deg); }
}
