/* ============================================================
   Wildbloom — Florist Studio
   Design system + components

   Strategy: Editorial Botanical — deep aubergine carries the large
   dark surfaces, warm terracotta is the single action colour, blush
   and sage soften, and everything sits on warm bone rather than white.
   Arch-topped imagery is the recurring shape motif.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..800;1,6..96,400..600&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ============================================================
   Tokens
   ============================================================ */
:root {
  /* Aubergine / plum — the dark carrier */
  --plum-950: oklch(0.17 0.045 345);
  --plum-900: oklch(0.23 0.062 345);
  --plum-800: oklch(0.29 0.078 345);
  --plum-700: oklch(0.36 0.095 347);
  --plum-600: oklch(0.44 0.110 350);
  --plum-100: oklch(0.93 0.028 350);

  /* Terracotta / clay — the action colour */
  --clay-800: oklch(0.45 0.115 42);
  --clay-700: oklch(0.53 0.130 42);
  --clay-600: oklch(0.62 0.145 45);
  --clay-500: oklch(0.70 0.140 50);
  --clay-300: oklch(0.85 0.070 55);
  --clay-100: oklch(0.945 0.030 60);

  /* Blush — soft floral tertiary */
  --blush-500: oklch(0.78 0.095 12);
  --blush-300: oklch(0.885 0.055 14);
  --blush-100: oklch(0.955 0.022 16);

  /* Sage — botanical grounding */
  --sage-700: oklch(0.44 0.045 150);
  --sage-500: oklch(0.60 0.050 150);
  --sage-300: oklch(0.855 0.035 150);
  --sage-100: oklch(0.945 0.020 150);

  /* Warm neutrals — bone, never cold white */
  --bg:          oklch(0.972 0.012 78);
  --surface:     oklch(0.995 0.005 80);
  --surface-2:   oklch(0.952 0.016 76);
  --surface-3:   oklch(0.918 0.020 74);
  --ink:         oklch(0.235 0.030 345);
  --muted:       oklch(0.440 0.028 345);
  --line:        oklch(0.885 0.016 72);
  --line-strong: oklch(0.820 0.022 70);

  /* Mapped roles */
  --brand: var(--plum-900);
  --brand-ink: oklch(0.965 0.012 70);
  --accent: var(--clay-800);

  /* Typography */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Type scale */
  --step--2: clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.36rem + 0.7vw, 1.95rem);
  --step-3:  clamp(2rem, 1.72rem + 1.35vw, 2.9rem);
  --step-4:  clamp(2.5rem, 2.0rem + 2.4vw, 4.1rem);
  --step-5:  clamp(3.1rem, 2.25rem + 3.9vw, 5.6rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;  --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Radii — the arch motif lives in --r-arch */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --r-arch: 14rem 14rem var(--r-lg) var(--r-lg);

  /* Shadow — warm, never grey */
  --shadow-sm: 0 1px 2px oklch(0.29 0.08 345 / 0.07), 0 1px 1px oklch(0.29 0.08 345 / 0.04);
  --shadow-md: 0 6px 16px oklch(0.29 0.08 345 / 0.09), 0 2px 5px oklch(0.29 0.08 345 / 0.06);
  --shadow-lg: 0 24px 50px oklch(0.26 0.08 345 / 0.16), 0 8px 18px oklch(0.26 0.08 345 / 0.09);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.45s;

  /* Layout */
  --container: 1240px;
  --container-wide: 1400px;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-backdrop: 300;
  --z-drawer: 400;
  --z-toast: 500;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--plum-900);
  text-wrap: balance;
  font-optical-sizing: auto;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 2.5px solid var(--clay-700);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--clay-300); color: var(--plum-950); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2.5rem); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }

.lead {
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}
.muted { color: var(--muted); }
.measure { max-width: 68ch; }

/* Section heading group */
.heading-group { max-width: 44rem; }
.heading-group.center { margin-inline: auto; }
.kicker {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-800);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--sp-4);
}
.kicker::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--clay-600);
}
.kicker--center::after {
  content: "";
  width: 2rem; height: 1px;
  background: var(--clay-600);
}
.section-title { font-size: var(--step-3); }
.section-title em { font-style: italic; color: var(--clay-700); }
.heading-group .lead { margin-top: var(--sp-4); }

/* Header row: title left, action right */
.section-head {
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--plum-900);
  --btn-fg: var(--brand-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95em 1.7em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--accent { --btn-bg: var(--clay-800); --btn-fg: oklch(0.99 0.008 70); }
.btn--accent:hover { --btn-bg: var(--clay-700); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum-900);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--plum-700); background: var(--surface); }

.btn--light { --btn-bg: var(--brand-ink); --btn-fg: var(--plum-950); }
.btn--outline-light {
  --btn-bg: transparent; --btn-fg: var(--brand-ink);
  border-color: oklch(0.99 0.01 70 / 0.35); box-shadow: none;
}
.btn--outline-light:hover { background: oklch(0.99 0.01 70 / 0.1); border-color: oklch(0.99 0.01 70 / 0.6); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1em 2.1em; font-size: var(--step-0); }
.btn--sm { padding: 0.7em 1.2em; font-size: var(--step--2); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-800);
  transition: gap 0.25s var(--ease-out);
}
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform 0.25s var(--ease-out); }
.link-arrow:hover { gap: 0.75rem; }
.link-arrow:hover svg { transform: translateX(2px); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4em 0.85em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--plum-900);
  box-shadow: var(--shadow-sm);
}
.tag--clay  { background: var(--clay-800); color: oklch(0.99 0.008 70); }
.tag--plum  { background: var(--plum-900); color: var(--brand-ink); }
.tag--sage  { background: var(--sage-300); color: var(--sage-700); }
.tag--blush { background: var(--blush-300); color: var(--plum-900); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: oklch(0.972 0.012 78 / 0.86);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.topbar {
  background: var(--plum-950);
  color: var(--brand-ink);
  font-size: var(--step--2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding-block: 0.6rem; text-align: center; }
.topbar svg { width: 1.1em; height: 1.1em; color: var(--clay-500); flex: none; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-block: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--plum-950);
  margin-right: auto;
}
.brand img, .brand svg { width: 2.2rem; height: 2.2rem; flex: none; }
.brand b { font-weight: 500; font-style: italic; color: var(--clay-700); }

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  position: relative;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-800);
  border-radius: var(--r-sm);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.95rem; right: 0.95rem; bottom: 0.28rem;
  height: 1.5px;
  background: var(--clay-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:hover { color: var(--plum-950); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--plum-950); }

.nav-actions { display: flex; align-items: center; gap: 0.3rem; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.7rem; height: 2.7rem;
  border-radius: var(--r-pill);
  color: var(--plum-800);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn:hover { background: var(--surface-3); color: var(--plum-950); }
.icon-btn svg { width: 1.3rem; height: 1.3rem; }
.cart-count {
  position: absolute;
  top: 0.3rem; right: 0.25rem;
  min-width: 1.15rem; height: 1.15rem;
  padding: 0 0.25rem;
  display: grid; place-items: center;
  font-size: 0.66rem; font-weight: 800;
  font-family: var(--font-body);
  color: oklch(0.99 0.008 70);
  background: var(--clay-800);
  border-radius: var(--r-pill);
  line-height: 1;
}

.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 350px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: var(--z-drawer);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 1rem; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center;
    width: 2.7rem; height: 2.7rem;
    border-radius: var(--r-pill);
    color: var(--plum-950);
    z-index: var(--z-drawer);
    position: relative;
  }
  .nav-toggle svg { width: 1.5rem; height: 1.5rem; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: oklch(0.17 0.045 345 / 0.5);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: var(--z-backdrop);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ============================================================
   Hero — editorial split with arch-topped imagery
   ============================================================ */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--bg); }
.hero::before {
  content: "";
  position: absolute; inset: auto -10% 0 40%;
  height: 62%;
  background: radial-gradient(60% 70% at 50% 100%, var(--blush-100), transparent 70%);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-800);
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot { width: 1.6rem; height: 1.6rem; display: grid; place-items: center; background: var(--clay-800); border-radius: var(--r-pill); flex: none; }
.hero__eyebrow .dot svg { width: 0.95rem; height: 0.95rem; color: oklch(0.99 0.008 70); }

.hero h1 {
  font-size: var(--step-5);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}
.hero h1 em { font-style: italic; color: var(--clay-700); font-weight: 500; }
.hero__lead { font-size: var(--step-1); color: var(--muted); max-width: 44ch; margin-bottom: var(--sp-6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-4); align-items: center; }

.hero__proof {
  display: flex; align-items: center; gap: 1rem;
  margin-top: var(--sp-7); padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.avatar-row { display: flex; }
.avatar-row span {
  width: 2.4rem; height: 2.4rem; border-radius: var(--r-pill);
  border: 2px solid var(--bg);
  margin-left: -0.7rem;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 700; color: var(--brand-ink);
  background: var(--plum-700);
}
.avatar-row span:first-child { margin-left: 0; }
.avatar-row span:nth-child(2) { background: var(--clay-700); }
.avatar-row span:nth-child(3) { background: var(--sage-700); }
.hero__proof .stars { display: inline-flex; color: var(--clay-600); }
.hero__proof .stars svg { width: 1rem; height: 1rem; }
.hero__proof b { display: block; font-size: 0.92rem; color: var(--plum-950); font-weight: 700; }
.hero__proof small { color: var(--muted); font-size: 0.85rem; }

/* Media stack */
.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--r-arch);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__inset {
  position: absolute;
  left: -3rem; bottom: -2rem;
  width: 42%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; }
.hero__seal {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 7.5rem; height: 7.5rem;
  display: grid; place-items: center;
  color: var(--brand-ink);
}
.hero__seal .ring { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.hero__seal .disc { position: absolute; inset: 0; background: var(--plum-900); border-radius: var(--r-pill); }
.hero__seal svg { width: 100%; height: 100%; }
.hero__seal .mark { position: relative; width: 1.9rem; height: 1.9rem; color: var(--clay-500); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__seal .ring { animation: none; } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__media { max-width: 440px; margin-inline: auto; }
  .hero__inset { left: -1rem; width: 38%; }
  .hero__seal { width: 6rem; height: 6rem; right: -0.5rem; top: -1rem; }
}

/* Marquee strip */
.marquee {
  background: var(--plum-950);
  color: var(--brand-ink);
  padding-block: 1rem;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  color: oklch(0.9 0.02 70); white-space: nowrap;
}
.marquee__track svg { width: 0.85rem; height: 0.85rem; color: var(--clay-500); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   Trust / features bar
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.trust__item { display: flex; gap: 0.95rem; align-items: flex-start; }
.trust__item .ic {
  flex: none; width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 50% 50% var(--r-sm) var(--r-sm);
  background: var(--clay-100); color: var(--clay-800);
}
.trust__item .ic svg { width: 1.4rem; height: 1.4rem; }
.trust__item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; color: var(--plum-950); margin-bottom: 0.2rem; letter-spacing: 0; }
.trust__item p { font-size: var(--step--1); color: var(--muted); }

/* ============================================================
   Product cards / grid — larger cards, quick-add on hover
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem) clamp(1.2rem, 2.4vw, 2rem);
}
.product-grid--lg { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }
@media (max-width: 640px) {
  .product-grid, .product-grid--lg { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform var(--dur) var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(140deg, var(--blush-100), var(--surface-2) 55%, var(--sage-100));
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease-out);
}
.product-card:hover .product-card__media { box-shadow: var(--shadow-lg); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.product-card:hover .product-card__media img { transform: scale(1.045); }
.product-card__badges { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2; display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.product-card__wish {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  background: oklch(1 0 0 / 0.88);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  color: var(--plum-800);
  box-shadow: var(--shadow-sm);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.product-card__wish:hover { color: var(--clay-700); transform: scale(1.08); }
.product-card__wish svg { width: 1.15rem; height: 1.15rem; }

/* Quick-add bar slides up on hover / focus-within */
.product-card__quick {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 0.85rem;
  background: linear-gradient(to top, oklch(0.17 0.045 345 / 0.55), transparent);
  transform: translateY(101%);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick { transform: translateY(0); opacity: 1; }
.quick-add {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.8rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--plum-950); background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.quick-add:hover { background: var(--clay-800); color: oklch(0.99 0.008 70); }
.quick-add svg { width: 0.95rem; height: 0.95rem; }
/* Touch devices have no hover — keep the bar permanently visible */
@media (hover: none) {
  .product-card__quick { transform: none; opacity: 1; background: none; }
}

.product-card__body { padding: 1.1rem 0.2rem 0; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.product-card__cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-800); }
.product-card__stems { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted); }
.product-card__stems::before { content: "·"; margin-right: 0.5rem; }
.product-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--plum-950); line-height: 1.15; }
.product-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-card__rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--muted); }
.product-card__rating .stars { display: inline-flex; gap: 1px; color: var(--clay-600); }
.product-card__rating .stars svg { width: 0.9rem; height: 0.9rem; }
.product-card__foot { margin-top: auto; padding-top: 0.7rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.price { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--plum-950); }
.price del { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--muted); margin-left: 0.45rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s ease, gap 0.2s var(--ease-out);
}
.card-link svg { width: 0.9rem; height: 0.9rem; }
.product-card:hover .card-link { color: var(--clay-800); gap: 0.5rem; }

/* ============================================================
   Shop toolbar
   ============================================================ */
.shop-toolbar {
  position: sticky; top: var(--header-h, 7rem);
  z-index: var(--z-dropdown);
  background: oklch(0.972 0.012 78 / 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 0.9rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.shop-toolbar__row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.filter-rail {
  display: flex; gap: 0.5rem; align-items: center;
  overflow-x: auto; scrollbar-width: none;
  padding-bottom: 0.15rem;
  margin-inline: -0.2rem; padding-inline: 0.2rem;
}
.filter-rail::-webkit-scrollbar { display: none; }
.filter-pill {
  flex: none;
  padding: 0.55rem 1.05rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--plum-800);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all 0.22s ease;
}
.filter-pill:hover { border-color: var(--line-strong); }
.filter-pill.is-active { background: var(--plum-900); border-color: var(--plum-900); color: var(--brand-ink); }

.toolbar-controls { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.select-wrap { position: relative; display: inline-flex; align-items: center; }
.select-wrap select {
  appearance: none;
  padding: 0.6rem 2.4rem 0.6rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--plum-900);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
}
.select-wrap svg { position: absolute; right: 0.9rem; width: 0.9rem; height: 0.9rem; color: var(--muted); pointer-events: none; }
.result-count { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; }
@media (max-width: 960px) { .shop-toolbar { top: 0; } }

/* ============================================================
   Category tiles — arch topped
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(1rem, 2.2vw, 1.6rem); }
.cat-tile {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px;
  padding: 1.4rem;
  border-radius: 10rem 10rem var(--r-lg) var(--r-lg);
  overflow: hidden;
  color: var(--brand-ink);
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, oklch(0.17 0.045 345 / 0) 40%, oklch(0.17 0.045 345 / 0.82) 100%);
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease-out); }
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile h3 { color: var(--brand-ink); font-size: 1.4rem; }
.cat-tile span { font-size: var(--step--2); letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.86 0.03 60); margin-top: 0.35rem; display: block; }

/* ============================================================
   Split feature (about / process)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media > img, .split__media .arch {
  width: 100%; border-radius: var(--r-arch); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.split__media .float-card {
  position: absolute; bottom: -1.4rem; right: -1.2rem;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.85rem; max-width: 260px;
}
.split__media .float-card .ic { width: 2.6rem; height: 2.6rem; flex: none; display: grid; place-items: center; border-radius: var(--r-pill); background: var(--clay-100); color: var(--clay-800); }
.split__media .float-card .ic svg { width: 1.25rem; height: 1.25rem; }
.split__media .float-card b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--plum-950); }
.split__media .float-card small { font-size: 0.8rem; color: var(--muted); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 520px; margin-inline: auto; }
}

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin-top: var(--sp-6); padding-top: var(--sp-6); border-top: 1px solid var(--line); }
.stat-row .n { font-family: var(--font-display); font-size: var(--step-2); color: var(--plum-950); line-height: 1; display: block; }
.stat-row .l { font-size: var(--step--2); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.45rem; display: block; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.step { position: relative; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.step .num { font-family: var(--font-display); font-size: 2.6rem; font-style: italic; color: var(--clay-600); line-height: 1; }
.step h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; margin: 0.7rem 0 0.45rem; color: var(--plum-950); }
.step p { color: var(--muted); font-size: var(--step--1); }
.steps--dark .step { border-top-color: oklch(0.99 0.01 70 / 0.18); }
.steps--dark .step h3 { color: var(--brand-ink); }
.steps--dark .step p { color: oklch(0.84 0.02 60); }
.steps--dark .step .num { color: var(--clay-500); }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.testi {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.testi .stars { display: inline-flex; gap: 2px; color: var(--clay-600); }
.testi .stars svg { width: 1.05rem; height: 1.05rem; }
.testi blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.45; color: var(--plum-900); }
.testi__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.avatar {
  width: 2.8rem; height: 2.8rem; border-radius: var(--r-pill);
  display: grid; place-items: center; flex: none;
  font-weight: 700; font-size: 0.9rem; color: var(--brand-ink);
  background: var(--plum-700);
}
.testi:nth-child(2) .avatar { background: var(--clay-700); }
.testi:nth-child(3) .avatar { background: var(--sage-700); }
.testi__who b { display: block; font-size: 0.92rem; color: var(--plum-950); font-weight: 700; }
.testi__who small { color: var(--muted); font-size: 0.8rem; }

/* ============================================================
   Dark band + CTA
   ============================================================ */
.band-dark { background: var(--plum-950); color: var(--brand-ink); position: relative; isolation: isolate; overflow: hidden; }
.band-dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("../assets/pattern-leaves.svg"); background-size: 420px; opacity: 0.05;
}
.band-dark h2, .band-dark h3 { color: var(--brand-ink); }
.band-dark .kicker { color: var(--clay-500); }
.band-dark .kicker::before, .band-dark .kicker--center::after { background: var(--clay-600); }
.band-dark .lead, .band-dark p { color: oklch(0.85 0.02 60); }

.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  color: var(--brand-ink);
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--plum-900);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, oklch(0.17 0.045 345 / 0.94) 30%, oklch(0.17 0.045 345 / 0.62));
}
.cta-band h2 { color: var(--brand-ink); font-size: var(--step-4); max-width: 16ch; }
.cta-band p { color: oklch(0.88 0.02 60); max-width: 46ch; margin-top: var(--sp-4); }
.cta-band .hero__cta { margin-top: var(--sp-6); }

/* Newsletter inline */
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 480px; }
.newsletter-form input {
  flex: 1; min-width: 210px;
  padding: 0.95rem 1.2rem;
  border-radius: var(--r-pill);
  border: 1.5px solid oklch(0.99 0.01 70 / 0.28);
  background: oklch(0.99 0.01 70 / 0.1);
  color: var(--brand-ink);
}
.newsletter-form input::placeholder { color: oklch(0.85 0.02 60 / 0.75); }
.newsletter-form input:focus-visible { outline-color: var(--clay-500); }

/* ============================================================
   Forms (generic)
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum-900); }
.field .req { color: var(--clay-700); }
.field input, .field select, .field textarea {
  padding: 0.85rem 1.05rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.6 0.02 345); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay-700);
  box-shadow: 0 0 0 3px var(--clay-100);
}
.field textarea { resize: vertical; min-height: 130px; }
.field small { font-size: 0.8rem; color: var(--muted); text-transform: none; letter-spacing: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--blush-100), var(--bg) 85%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.8rem, 3.5vw, 3rem);
}
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: var(--step--2); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-4); }
.breadcrumbs a:hover { color: var(--clay-800); }
.breadcrumbs svg { width: 0.9em; height: 0.9em; opacity: 0.6; }
.page-hero h1 { font-size: var(--step-4); }
.page-hero h1 em { font-style: italic; color: var(--clay-700); }
.page-hero p { color: var(--muted); font-size: var(--step-1); max-width: 58ch; margin-top: var(--sp-4); }

/* ============================================================
   Legal / long-form content
   ============================================================ */
.prose { max-width: 74ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--sp-7); margin-bottom: var(--sp-3); scroll-margin-top: calc(var(--header-h, 7rem) + 1.5rem); }
.prose h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; margin-top: var(--sp-5); margin-bottom: var(--sp-2); color: var(--plum-950); }
.prose p, .prose li { color: var(--ink); line-height: 1.72; }
.prose p { margin-bottom: var(--sp-4); }
.prose ul, .prose ol { margin: 0 0 var(--sp-4) 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul { list-style: none; margin-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0.2rem; top: 0.62em; width: 0.5rem; height: 0.5rem; border-radius: var(--r-pill); background: var(--clay-600); }
.prose ol { list-style: decimal; }
.prose ol li { padding-left: 0.3rem; }
.prose a { color: var(--clay-800); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--plum-950); }
.prose .updated { display: inline-block; font-size: var(--step--2); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 0.5rem 1rem; background: var(--surface-2); border-radius: var(--r-pill); margin-bottom: var(--sp-5); }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-h, 7rem) + 1.5rem); }
.legal-toc h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.8rem; font-family: var(--font-body); font-weight: 700; }
.legal-toc a { display: block; padding: 0.4rem 0; font-size: 0.88rem; color: var(--muted); transition: color 0.2s ease; }
.legal-toc a:hover { color: var(--clay-800); }
@media (max-width: 860px) { .legal-layout { grid-template-columns: 1fr; } .legal-toc { display: none; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0.2rem; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--plum-950);
  list-style: none;
}
.faq-q .chev { flex: none; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; color: var(--clay-700); transition: transform 0.3s var(--ease-out); }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); }
.faq-a { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 70ch; }
.faq-q::-webkit-details-marker { display: none; }

/* ============================================================
   Product detail
   ============================================================ */
.pd { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.pd__gallery { display: flex; flex-direction: column; gap: 0.9rem; position: sticky; top: calc(var(--header-h, 7rem) + 1.5rem); }
.pd__main { border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.pd__main img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.pd__thumbs button { border-radius: var(--r-md); overflow: hidden; border: 2px solid transparent; aspect-ratio: 1; background: var(--surface-2); transition: border-color 0.2s ease; }
.pd__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumbs button.is-active, .pd__thumbs button:hover { border-color: var(--clay-700); }
.pd__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-800); }
.pd__title { font-size: var(--step-4); margin: 0.7rem 0 0.9rem; }
.pd__price { display: flex; align-items: baseline; gap: 0.9rem; margin-block: 1.3rem; }
.pd__price .price { font-size: 2.2rem; }
.pd__opts { display: flex; flex-direction: column; gap: 1.4rem; margin-block: 1.8rem; }
.opt-group h4 { font-size: 0.72rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; color: var(--plum-950); margin-bottom: 0.7rem; font-weight: 700; }
.opt-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.opt-pill {
  position: relative;
  padding: 0.6rem 1.15rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; background: var(--surface);
}
.opt-pill small { display: block; font-size: 0.68rem; font-weight: 500; opacity: 0.7; }
.opt-pill:has(input:checked) { border-color: var(--plum-900); background: var(--plum-900); color: var(--brand-ink); }
.opt-pill input { position: absolute; opacity: 0; pointer-events: none; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); overflow: hidden; background: var(--surface); }
.qty button { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; color: var(--plum-800); font-size: 1.2rem; transition: background 0.2s ease; }
.qty button:hover { background: var(--surface-3); }
.qty input { width: 2.8rem; text-align: center; border: none; background: transparent; font-weight: 700; }
.pd__buy { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-block: 1.6rem; align-items: center; }
.pd__meta { border-top: 1px solid var(--line); padding-top: 1.4rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.pd__meta div { display: flex; align-items: center; gap: 0.65rem; }
.pd__meta svg { width: 1.15rem; height: 1.15rem; color: var(--sage-500); flex: none; }
.pd__notes { margin-top: 1.8rem; border-top: 1px solid var(--line); }
.pd__notes .faq-item { border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; } .pd__gallery { position: static; } }

/* ============================================================
   Cart
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item__img { width: 100px; height: 120px; border-radius: var(--r-md); overflow: hidden; background: var(--surface-2); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__main { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; }
.cart-item h3 { font-size: 1.15rem; font-family: var(--font-display); font-weight: 500; }
.cart-item small { color: var(--muted); font-size: 0.82rem; }
.cart-item__main .qty { margin-top: 0.6rem; }
.cart-item__price { text-align: right; font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; color: var(--plum-950); }
.cart-remove { color: var(--muted); font-size: 0.78rem; margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s ease; }
.cart-remove:hover { color: var(--clay-800); }
.summary { background: var(--surface); border-radius: var(--r-lg); padding: 1.8rem; position: sticky; top: calc(var(--header-h, 7rem) + 1.5rem); box-shadow: var(--shadow-md); }
.summary h2 { font-size: 1.5rem; margin-bottom: 1.3rem; }
.summary__row { display: flex; justify-content: space-between; padding: 0.55rem 0; color: var(--muted); font-size: 0.92rem; }
.summary__row.total { border-top: 1px solid var(--line); margin-top: 0.7rem; padding-top: 1.1rem; color: var(--plum-950); font-weight: 700; font-size: 1.1rem; }
.summary__row.total .price { font-size: 1.6rem; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--plum-950); color: oklch(0.84 0.02 60); margin-top: var(--sp-8); }
.footer-top { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 5rem); }
.footer-brand .brand { color: var(--brand-ink); margin-bottom: var(--sp-4); }
.footer-brand .brand b { color: var(--clay-500); }
.footer-brand p { max-width: 34ch; font-size: 0.92rem; color: oklch(0.8 0.02 60); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--sp-5); }
.footer-social a { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: var(--r-pill); background: oklch(0.99 0.01 70 / 0.08); color: var(--brand-ink); transition: background 0.2s ease, transform 0.2s ease; }
.footer-social a:hover { background: var(--clay-800); transform: translateY(-2px); }
.footer-social svg { width: 1.2rem; height: 1.2rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand-ink); margin-bottom: var(--sp-4); font-weight: 700; }
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.9rem; color: oklch(0.8 0.02 60); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--clay-300); padding-left: 0.25rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.35rem 0; font-size: 0.9rem; color: oklch(0.8 0.02 60); }
.footer-contact svg { width: 1.1rem; height: 1.1rem; color: var(--clay-500); flex: none; margin-top: 0.2rem; }
.footer-bottom { border-top: 1px solid oklch(0.99 0.01 70 / 0.1); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; color: oklch(0.75 0.02 60); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer-bottom a:hover { color: var(--clay-300); }
.footer-pay { display: flex; gap: 0.5rem; align-items: center; }
.footer-pay span { width: 2.5rem; height: 1.6rem; border-radius: 4px; background: oklch(0.99 0.01 70 / 0.12); display: grid; place-items: center; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.04em; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   Cookie consent
   ============================================================ */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 540px; margin-inline: auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.4rem;
  z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: 0.9rem;
  transform: translateY(150%);
  transition: transform 0.5s var(--ease-out);
}
.cookie.is-visible { transform: translateY(0); }
.cookie p { font-size: 0.86rem; color: var(--muted); }
.cookie p a { color: var(--clay-800); text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }

/* ============================================================
   Toast
   ============================================================ */
.toast-wrap { position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: var(--z-toast); display: flex; flex-direction: column; gap: 0.6rem; }
.toast {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--plum-950); color: var(--brand-ink);
  padding: 0.9rem 1.2rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); font-size: 0.88rem;
  transform: translateY(1rem); opacity: 0;
  animation: toast-in 0.4s var(--ease-out) forwards;
}
.toast svg { width: 1.2rem; height: 1.2rem; color: var(--clay-500); flex: none; }
@keyframes toast-in { to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   Reveal on scroll (progressive — visible without JS)
   ============================================================ */
/* Visible by default (no-JS, crawlers, headless). JS opts each element
   into the hidden state via .will-reveal, then reveals with .is-in.
   A JS safety timer guarantees .is-in is always added eventually. */
.js .reveal { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.will-reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: 0.07s; }
.js .reveal-delay-2 { transition-delay: 0.14s; }
.js .reveal-delay-3 { transition-delay: 0.21s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Utilities
   ============================================================ */
.bg-surface-2 { background: var(--surface-2); }
.bg-blush { background: var(--blush-100); }
.divider { height: 1px; background: var(--line); border: 0; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--plum-950); color: var(--brand-ink); padding: 0.7rem 1.1rem; border-radius: var(--r-sm); z-index: var(--z-toast); transition: top 0.2s ease; }
.skip-link:focus { top: 1rem; }
.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; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
