/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Color: 1 primary, 1 accent, neutrals */
  --color-primary: #2480BA;
  --color-primary-dark: #1C6796;
  --color-primary-light: #3D94CE;
  --color-primary-light-dark: #2C7AB0;
  --color-primary-tint: #FBE7EE;
  --color-primary-stripe: #F2A8C2;

  --color-accent: #3FB8D6;
  --color-accent-light: #7DD4E8;
  --color-accent-tint: #E4F6FA;

  --color-bg: #FFFFFF;
  --color-bg-subtle: #FAF8F9;
  --color-text: #18141A;
  --color-text-muted: #65606B;
  --color-text-faint: #948F97;
  --color-border: #ECE6E9;

  /* Spacing scale */
  --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: 96px;
  --space-16: 140px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(24,20,26,0.05), 0 1px 1px rgba(24,20,26,0.04);
  --shadow-md: 0 8px 24px rgba(24,20,26,0.08);
  --shadow-lg: 0 24px 48px rgba(24,20,26,0.12);
  --shadow-primary: 0 12px 28px rgba(214,51,108,0.28);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-base: 0.28s;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

/* ============================================
   RESET
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-primary-tint);
  background-image: repeating-linear-gradient(
    90deg,
    var(--color-primary-stripe) 0px,
    var(--color-primary-stripe) 4px,
    transparent 4px,
    transparent 32px
  );
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Readable "card" surface for content that sits over the striped background */
.panel {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; }

/* Contains horizontal slide-in transforms so they can't create page-level
   horizontal scroll before/between reveals; header sits outside <main>
   so position: sticky there is unaffected. */
#main { overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.92); }

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

/* Staggered grid children ("pop" reveal) */
[data-reveal].stagger {
  opacity: 1;
  transform: none;
  transition: none;
}
[data-reveal].stagger > * {
  opacity: 0;
  transform: translateY(22px) scale(0.94);
  transition: opacity 0.5s var(--ease), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-reveal].stagger.in-view > * {
  opacity: 1;
  transform: none;
}
[data-reveal].stagger > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal].stagger > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal].stagger > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal].stagger > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal].stagger > *:nth-child(5) { transition-delay: 0.34s; }
[data-reveal].stagger > *:nth-child(6) { transition-delay: 0.42s; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; }

p { margin: 0; color: var(--color-text-muted); }

em {
  font-style: italic;
  color: var(--color-primary-light);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 var(--space-3) 0;
}

.section-head {
  max-width: 620px;
  margin: 0 auto var(--space-10) auto;
  text-align: center;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8) var(--space-6);
}

.section-sub {
  margin-top: var(--space-3);
  font-size: 1.05rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary-light);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--color-primary-light-dark);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--t-base) var(--ease);
}
.site-header.scrolled .nav-row {
  height: 62px;
}

/* ============================================
   HEADER FLOWER CLIPART
   ============================================ */
.header-flowers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.header-flower {
  position: absolute;
  display: block;
  aspect-ratio: 1 / 1;
  will-change: transform;
}
.header-flower svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flower-pink { color: var(--color-primary-stripe); --flower-center-color: var(--color-accent-light); }
.flower-blue { color: var(--color-primary-light); --flower-center-color: var(--color-primary-stripe); }

.hf-1 { top: 6px;   left: 1%;   width: 30px; opacity: 0.55; }
.hf-2 { top: -12px; left: 12%;  width: 20px; opacity: 0.4; }
.hf-3 { top: 18px;  left: 46%;  width: 16px; opacity: 0.3; }
.hf-4 { top: -10px; right: 24%; width: 22px; opacity: 0.4; }
.hf-5 { top: 14px;  right: 9%;  width: 26px; opacity: 0.5; }
.hf-6 { top: -8px;  right: 1%;  width: 32px; opacity: 0.5; }
.hf-7 { display: none; }

@media (max-width: 980px) {
  .hf-3, .hf-4 { display: none; }
}
@media (max-width: 720px) {
  /* Nav links collapse behind the hamburger here, freeing the center
     of the bar — keep a small, curated set clear of the logo and
     toggle button instead of hiding flowers entirely. The left/right
     gutters are a fixed 24px (the container padding) at every mobile
     width, so fixed-px offsets here stay clear of the logo and the
     toggle button reliably instead of drifting with percentages. */
  .hf-2, .hf-4, .hf-5 { display: none; }
  .hf-1 { top: 4px; left: 4px; right: auto; width: 16px; }
  .hf-3 { display: block; top: 22px; left: 58%; width: 18px; }
  .hf-6 { top: 10px; right: 2px; left: auto; width: 12px; }
  .hf-7 {
    display: block;
    top: 42px;
    left: 85px;
    width: 13px;
    opacity: 0.45;
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-text);
  text-decoration: none;
}

.logo-pop {
  color: var(--color-primary-stripe);
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px 0 var(--color-accent-light);
  transition: transform var(--t-fast) var(--ease);
  display: inline-block;
}
.logo-pop:hover { transform: translateY(-1px) rotate(-1deg); }

.nav-links {
  display: flex;
  gap: var(--space-6);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--color-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--color-text);
  transition: color var(--t-fast) var(--ease);
}
.cart-link:hover { color: var(--color-primary-light); }
.cart-link .icon { width: 22px; height: 22px; stroke-width: 1.8; }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: var(--space-12) 0 var(--space-10);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-10);
  align-items: center;
}

.hero-copy {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
}

.hero h1 { color: var(--color-text); }

.hero-sub {
  margin-top: var(--space-5);
  font-size: 1.15rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero-trust .icon { color: var(--color-primary); width: 16px; height: 16px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.bottle-card {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.bottle-mock {
  width: 130px;
  height: 260px;
  background: linear-gradient(165deg, var(--color-accent), var(--color-primary));
  border-radius: 18px 18px 34px 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -20px 30px rgba(0,0,0,0.08);
}

.bottle-mock.small { width: 100px; height: 200px; }

.bottle-photo {
  width: 220px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.bottle-photo.small { width: 170px; }

.bottle-cap {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 24px;
  background: var(--color-primary-dark);
  border-radius: 6px;
}

.bottle-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  background: rgba(0,0,0,0.1);
  padding: 5px 12px;
  border-radius: 6px;
}

.float-badge {
  position: absolute;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.badge-top { top: 8%; right: -4%; }
.badge-bottom { bottom: 10%; left: -8%; }

/* ============================================
   CERTIFICATION BADGES
   ============================================ */
.certs {
  padding: var(--space-6) 0 var(--space-8);
}

.certs-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-8);
  flex-wrap: wrap;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6) var(--space-8);
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 110px;
  text-align: center;
}

.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease);
}
.cert-icon-accent {
  background: var(--color-accent-tint);
  color: var(--color-accent);
}
.cert-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cert-badge:hover .cert-icon { transform: translateY(-3px); }

.cert-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ============================================
   SECTIONS - shared rhythm
   ============================================ */
section { padding: var(--space-12) 0; }

/* ============================================
   BENEFITS / CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-tint);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }

.card h3 { margin-bottom: var(--space-2); }
.card p { font-size: 0.92rem; }

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.process-step {
  text-align: center;
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-8) var(--space-6);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.process-step h3 { margin-bottom: var(--space-2); }
.process-step p { font-size: 0.92rem; max-width: 260px; margin: 0 auto; }

/* ============================================
   MISSION
   ============================================ */
.mission-grid {
  display: grid;
  justify-content: center;
}

.mission-copy {
  max-width: 720px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
}
.mission-copy p { margin-top: var(--space-4); font-size: 1.02rem; }
.mission-copy h2 { margin-top: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap var(--t-fast) var(--ease);
}
.link-arrow .icon { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-hint {
  display: none;
}

.testimonial-scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--space-5);
  padding-bottom: var(--space-3);
  margin: 0 calc(var(--space-5) * -1);
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-stripe) transparent;
}
.testimonial-scroll::-webkit-scrollbar { height: 6px; }
.testimonial-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary-stripe);
  border-radius: var(--radius-full);
}
.testimonial-scroll::-webkit-scrollbar-track { background: transparent; }

.testimonial-card {
  margin: 0;
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.stars { color: var(--color-primary-light); letter-spacing: 2px; margin-bottom: var(--space-4); }

blockquote {
  margin: 0 0 var(--space-5) 0;
  font-size: 0.98rem;
  color: var(--color-text);
  line-height: 1.6;
}

figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  font-weight: 600;
}
figcaption small {
  display: block;
  font-weight: 400;
  color: var(--color-text-faint);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   SHOP
   ============================================ */
.shop-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.shop-visual { display: flex; justify-content: center; }

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin: var(--space-3) 0;
}

.price-shipping {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.shop-copy .btn { margin-top: var(--space-6); }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.accordion {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-3) var(--space-6);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-5) var(--space-2);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.chevron { color: var(--color-text-faint); transition: transform var(--t-base) var(--ease); }
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); color: var(--color-primary-light); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease);
}

.accordion-panel p {
  padding: 0 var(--space-2) var(--space-5);
  font-size: 0.95rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-light-dark));
  color: #fff;
}

.final-cta-inner {
  text-align: center;
  max-width: 560px;
}

.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.85); margin-top: var(--space-3); }

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

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: #C8ECF8;
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: inherit;
}
.cta-form input::placeholder { color: var(--color-text-faint); }
.cta-form input:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.final-cta .btn-primary {
  background: #fff;
  color: var(--color-primary-light);
  box-shadow: none;
}
.final-cta .btn-primary:hover { background: rgba(255,255,255,0.9); }

.form-note {
  margin-top: var(--space-4);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}

.footer-brand p { margin-top: var(--space-2); font-size: 0.9rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-3);
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
}

.footer-bottom p { font-size: 0.82rem; color: var(--color-text-faint); margin: 0; }

.footer-socials { display: flex; gap: var(--space-4); }
.footer-socials a {
  color: var(--color-text-muted);
  transition: color var(--t-fast) var(--ease);
}
.footer-socials a:hover { color: var(--color-primary-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; margin-top: var(--space-6); }
  .badge-top { right: 0; }
  .badge-bottom { left: 0; }
  .shop-grid { grid-template-columns: 1fr; text-align: center; }
  .shop-visual { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .testimonials-hint { display: block; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root {
    --space-12: 64px;
    --space-10: 48px;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-5);
    gap: var(--space-4);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn-sm { display: none; }
  .nav-toggle { display: flex; }

  .certs-grid { gap: var(--space-6) var(--space-5); padding: var(--space-6) var(--space-5); }
  .cert-badge { width: 88px; }
  .cert-icon { width: 48px; height: 48px; }
  .cert-icon svg { width: 22px; height: 22px; }
  .cert-badge span { font-size: 0.74rem; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: 84%; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .hero-copy,
  .mission-copy,
  .section-head,
  .process-step {
    padding: var(--space-6) var(--space-5);
  }
  .shop-grid { padding: var(--space-6) var(--space-5); }
  .accordion { padding: var(--space-2) var(--space-4); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  pointer-events: none;
  cursor: pointer;
  z-index: 40;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), background var(--t-fast) var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--color-primary-light-dark);
  transform: translateY(-3px);
}
.back-to-top .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

@media (max-width: 720px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page { min-height: 50vh; }
.cart-page .section-head h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.cart-panel {
  max-width: 720px;
  margin: 0 auto var(--space-6) auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.cart-item[hidden] { display: none; }

.cart-item-photo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 { margin-bottom: 4px; }
.cart-item-info .section-sub { margin-top: 0; font-size: 0.85rem; }

.remove-link {
  display: inline-block;
  margin-top: var(--space-2);
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  color: var(--color-text-faint);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.remove-link:hover { color: var(--color-primary-light); }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.qty-btn:hover { border-color: var(--color-primary-light); color: var(--color-primary-light); }

#qty-value { min-width: 16px; text-align: center; font-weight: 600; }

.cart-item-total {
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary-light);
}

.cart-empty { text-align: center; padding: var(--space-8) 0; }
.cart-empty p { margin-bottom: var(--space-6); font-size: 1.05rem; }

.cart-summary { margin-top: var(--space-6); }

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.cart-summary-total {
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-checkout {
  width: 100%;
  margin-top: var(--space-6);
}

#preorder-cta {
  margin-top: var(--space-6);
  text-align: center;
}
#preorder-cta .form-note { margin-top: var(--space-3); }

.preorder-form {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.preorder-form[hidden] { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-row-3 { grid-template-columns: 1.4fr 0.8fr 1fr; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.form-field input {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: inherit;
}
.form-field input:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 1px;
}

.preorder-form #preorder-submit-btn { margin-top: var(--space-2); }
.preorder-form #preorder-error { color: var(--color-primary); text-align: center; }

@media (max-width: 600px) {
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}

.preorder-success {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-accent-tint);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--color-text);
}
.preorder-success p { margin: 0; }

@media (max-width: 720px) {
  .cart-panel { padding: var(--space-6) var(--space-5); }
  .cart-item { flex-wrap: wrap; gap: var(--space-3); }
  .cart-item-info { flex-basis: 100%; order: 1; }
  .cart-item-photo { order: 0; }
  .cart-item-qty { order: 2; }
  .cart-item-total { order: 3; margin-left: auto; }
}
