/* =========================================================================
   PEACH RINGS — "Sugar & Sunshine"
   A Texas candy house. Warm, appetite-first, and unapologetically FUN.
   Design system: warm-white canvas, saturated peach + amber, cocoa ink,
   self-hosted Montserrat (Gotham-class geometric sans), real-gummy logo O.
   Playfulness lives in voice AND motion — bounce, squish, shimmer, confetti —
   always behind prefers-reduced-motion, never in the way of the capture flow.
   Self-hosted fonts, zero external requests.
   ========================================================================= */

/* ---------- Font (self-hosted variable, latin subset) ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Adopted palette */
  --cream: #FFF7F0;         /* warm white canvas */
  --peach: #FF6A3D;         /* peach orange */
  --amber: #FFB000;         /* golden amber */
  --ink: #2B1B12;           /* cocoa ink */

  /* Derived */
  --peach-deep: #E8481E;
  --peach-soft: #FF8B63;
  --amber-deep: #F0930A;
  --cream-2: #FFEFE1;       /* slightly deeper warm panel */
  --peach-tint: #FFE7DA;    /* pale peach wash */
  --amber-tint: #FFF0CE;    /* pale amber wash */
  --white: #FFFFFF;

  --ink-80: rgba(43, 27, 18, 0.80);
  --ink-64: rgba(43, 27, 18, 0.64);
  --ink-46: rgba(43, 27, 18, 0.46);
  --line: rgba(43, 27, 18, 0.12);
  --line-soft: rgba(43, 27, 18, 0.07);

  --sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1200px;
  --gutter: clamp(1.15rem, 4.5vw, 3.5rem);
  --section-y: clamp(3.75rem, 9vw, 7rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);   /* overshoot = bounce */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 4px rgba(43,27,18,0.04), 0 18px 40px -22px rgba(43,27,18,0.28);
  --shadow-pop: 0 20px 46px -18px rgba(232,72,30,0.42);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 450;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--amber); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: 1.35rem; font-weight: 750; letter-spacing: -0.01em; }
h4 { font-size: 0.78rem; }
em { font-style: normal; color: var(--peach); }        /* emphasis = peach pop, not italic */
strong { font-weight: 700; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow.center { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-64); max-width: 48ch; line-height: 1.6; font-weight: 500; }

/* ---------- Layout helpers ---------- */
.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.3rem; }

/* ---------- Logo lockup (PEACH ◯ RINGS with the real gummy as the O) ---------- */
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.14em;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--peach);
  white-space: nowrap;
  font-size: clamp(1.15rem, 4.2vw, 1.5rem);  /* nav size; overridden where larger */
}
.lockup__word { display: inline-block; }
.lockup__ring {
  width: 1.02em;
  height: 1.02em;
  margin-inline: 0.06em;
  flex-shrink: 0;
  transition: transform 0.5s var(--spring);
  will-change: transform;
}
.lockup:hover .lockup__ring { transform: rotate(28deg) scale(1.08); }
.lockup--hero { font-size: clamp(2.6rem, 9vw, 6.5rem); color: var(--peach); }
.lockup--footer { font-size: 1.55rem; }

/* ---------- Buttons (springy) ---------- */
.btn {
  --bg: var(--peach);
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 1rem 1.9rem;
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--spring), background 0.25s var(--ease), box-shadow 0.28s var(--ease), color 0.2s var(--ease);
  box-shadow: var(--shadow-pop);
}
.btn:hover { transform: translateY(-3px) scale(1.03); background: var(--peach-deep); }
.btn:active { transform: translateY(0) scale(0.96); }
.btn--amber { --bg: var(--amber); --fg: var(--ink); box-shadow: 0 18px 40px -18px rgba(240,147,10,0.55); }
.btn--amber:hover { background: var(--amber-deep); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink { --bg: var(--ink); --fg: var(--cream); box-shadow: 0 16px 34px -18px rgba(43,27,18,0.6); }
.btn--ink:hover { background: #3a2418; }
.btn--block { width: 100%; }
.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.82rem; }
.btn--lg { padding: 1.15rem 2.3rem; font-size: 1rem; }

.textlink {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 2px solid var(--peach-tint);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease), color 0.2s var(--ease);
}
.textlink:hover { border-color: var(--peach); gap: 0.6rem; }

/* ---------- Value bar (top) ---------- */
.valuebar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  gap: 0.5rem 1.4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.valuebar strong { color: var(--amber); font-weight: 700; }
.valuebar .vb-dot { opacity: 0.4; }
.valuebar svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 0.35rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-64);
  transition: color 0.2s var(--ease);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[data-join] { display: none; }   /* mobile-menu only; shown in .open below */
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--peach);
}
.nav__links a svg { width: 16px; height: 16px; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__toggle { display: none; width: 34px; height: 34px; }
.nav__toggle span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--ink); margin: 5px auto; transition: 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 8%, var(--amber-tint), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, var(--peach-tint), transparent 60%),
    var(--cream);
}
.hero__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(3rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; max-width: 34rem; }
.hero h1 { margin-top: 1.1rem; }
.hero__sub { margin-top: 1.4rem; color: var(--ink-64); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 500; max-width: 40ch; }

/* Interior hero (gifts/learn/about/faq/board/404): single centered column */
.hero--interior .hero__inner {
  display: block;
  text-align: center;
  max-width: 860px;
  padding-block: clamp(3rem, 7vw, 5.25rem) clamp(2rem, 4vw, 3rem);
}
.hero--interior .hero__sub { margin-inline: auto; max-width: 52ch; }
.hero--interior .eyebrow { justify-content: center; }
.hero--interior .hero__actions { margin-top: 2rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* macro product art */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}
.hero__ring {
  width: min(94%, 30rem);
  filter: drop-shadow(0 40px 45px rgba(232,72,30,0.28));
  animation: ring-rise 1s var(--spring) both, ring-float 6.5s ease-in-out 1s infinite;
  touch-action: none;
  cursor: grab;
}
.hero__ring:active { cursor: grabbing; }
.hero__ring.dragging { animation: none; cursor: grabbing; }
@keyframes ring-rise { from { opacity: 0; transform: translateY(30px) scale(0.86) rotate(-8deg); } to { opacity: 1; transform: none; } }
@keyframes ring-float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(3deg); } }
/* sugar shimmer sparkles behind the hero ring */
.hero__art::before, .hero__art::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  z-index: -1;
}
.hero__art::before { background: radial-gradient(circle at 50% 45%, rgba(255,176,0,0.22), transparent 62%); }
.hero__sparkle {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 0.5px, transparent 1.4px),
    radial-gradient(circle, #fff 0.5px, transparent 1.4px);
  background-size: 46px 46px, 70px 70px;
  background-position: 0 0, 24px 30px;
  mix-blend-mode: overlay;
  opacity: 0.35;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { opacity: 0.18; } 50% { opacity: 0.5; } }

/* inline capture form (hero) */
.capture { margin-top: 1.9rem; max-width: 30rem; }
.capture__row {
  display: flex;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.35rem 0.35rem 0.4rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.capture__row:focus-within { border-color: var(--peach); box-shadow: 0 0 0 4px var(--peach-tint); }
.capture__row .field {
  flex: 1;
  border: none;
  background: none;
  padding: 0.7rem 0.5rem 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
}
.capture__row .field:focus { outline: none; }
.capture__row .field::placeholder { color: var(--ink-46); }
.capture__row .btn { flex-shrink: 0; white-space: nowrap; }
.capture .form-status { margin-top: 0.9rem; text-align: left; }
.capture .form-note { margin-top: 0.7rem; text-align: left; }

/* trust icons row under capture */
.trust-icons { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; }
.trust-icons li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-64); }
.trust-icons svg { width: 19px; height: 19px; color: var(--peach); flex-shrink: 0; }

/* social proof line */
.social-proof {
  margin-top: 1.5rem;
  display: none;                 /* revealed by JS only when count >= threshold */
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-64);
}
.social-proof.show { display: inline-flex; }
.social-proof b { color: var(--peach-deep); font-weight: 800; }
.social-proof .dots { display: inline-flex; }
.social-proof .dots span {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--amber); border: 2px solid var(--cream);
  margin-left: -7px; background-size: cover;
}
.social-proof .dots span:first-child { margin-left: 0; }

/* ---------- Section headers ---------- */
.sec-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 0.9rem; }
.sec-head p { margin-top: 1rem; color: var(--ink-64); font-size: 1.08rem; font-weight: 500; }

/* ---------- Divider ---------- */
.rule { height: 0; border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Product grid / cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 6px 12px rgba(43,27,18,0.05), 0 30px 60px -26px rgba(43,27,18,0.4); }
.card__media {
  aspect-ratio: 4 / 3.3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(75% 75% at 50% 42%, var(--amber-tint), var(--cream-2) 72%);
}
.card:nth-child(2) .card__media { background: radial-gradient(75% 75% at 50% 42%, var(--peach-tint), var(--cream-2) 72%); }
.card:nth-child(3) .card__media { background: radial-gradient(75% 75% at 50% 42%, #FFE9CC, var(--cream-2) 72%); }
.card__media img {
  width: 62%;
  transition: transform 0.5s var(--spring);
  filter: drop-shadow(0 16px 20px rgba(232,72,30,0.24));
}
.card:hover .card__media img { transform: scale(1.08) rotate(-6deg); }
.card__flag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__name { font-size: 1.3rem; font-weight: 750; }
.card__name a:hover { color: var(--peach-deep); }
.card__blurb { margin-top: 0.5rem; font-size: 0.92rem; color: var(--ink-64); line-height: 1.55; flex: 1; font-weight: 500; }
.card__foot { margin-top: 1.15rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.price small { font-size: 0.72rem; color: var(--ink-46); font-weight: 600; display: block; letter-spacing: 0; margin-top: 1px; }
.card .btn--sm { flex-shrink: 0; }

/* ---------- Feature / editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.feature-plate {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(70% 60% at 50% 45%, var(--amber-tint), var(--peach-tint) 90%);
}
.feature-plate img { width: 66%; filter: drop-shadow(0 26px 30px rgba(232,72,30,0.28)); }
.feature-plate .card__flag { top: 1rem; left: 1rem; }

/* ---------- Occasions ---------- */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.occasion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  background: var(--white);
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease);
}
.occasion:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.occasion h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.occasion p { font-size: 0.92rem; color: var(--ink-64); font-weight: 500; }
.occasion .num { font-weight: 800; color: var(--amber-deep); font-size: 1rem; display: block; margin-bottom: 0.9rem; }
a.occasion { display: flex; flex-direction: column; }
.occasion__link { margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--peach-deep); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.25s var(--ease); }
a.occasion:hover .occasion__link { gap: 0.65rem; }

/* ---------- Occasion marquee (fun) ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--peach);
  color: var(--white);
  padding-block: 0.85rem;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 26s linear infinite;
  padding-left: 2.5rem;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.01em; text-transform: lowercase; display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee__item::after { content: "◦"; color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.82rem; font-weight: 600; color: var(--ink-46); margin-bottom: 1.75rem; }
.crumbs a { color: var(--peach-deep); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { opacity: 0.5; margin: 0 0.3rem; }
.crumbs .here { color: var(--ink-64); opacity: 1; }

/* ---------- Article prose (gifts / learn / board) ---------- */
.prose { max-width: 68ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.1rem; }
.prose .lede { max-width: none; color: var(--ink-80); font-size: clamp(1.12rem, 1.7vw, 1.35rem); font-weight: 500; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.5rem; }
.prose h2 + p { margin-top: 0.9rem; }
.prose h3 { margin-top: 1.75rem; }
.prose p { color: var(--ink-80); font-size: 1.05rem; line-height: 1.72; font-weight: 450; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--peach-deep); border-bottom: 2px solid var(--peach-tint); transition: border-color 0.25s var(--ease); }
.prose a:hover { border-color: var(--peach); }
.prose ul { margin: 0.5rem 0 0; padding-left: 0; }
.prose ul li { position: relative; padding: 0.4rem 0 0.4rem 1.7rem; color: var(--ink-80); border-bottom: 1px solid var(--line-soft); font-weight: 450; }
.prose ul li::before { content: "◯"; position: absolute; left: 0.15rem; color: var(--peach); font-size: 0.8em; top: 0.55rem; }
.prose blockquote {
  margin: 1.5rem 0; padding: 0.9rem 1.4rem;
  border-left: 4px solid var(--amber); background: var(--amber-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-80); font-weight: 500;
}
.prose code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85em;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 5px; padding: 0.1em 0.4em; color: var(--peach-deep);
}
.prose .prose-rule { height: 0; border: 0; border-top: 1px solid var(--line); margin: 2.25rem 0; }
.prose sup.cite { font-size: 0.62em; line-height: 0; vertical-align: super; margin-left: 1px; }
.prose sup.cite a { color: var(--peach-deep); border: 0; font-weight: 700; }
.prose p.source { font-size: 0.86rem; line-height: 1.6; color: var(--ink-46); padding-left: 1.6rem; text-indent: -1.6rem; margin-top: 0.6rem; font-weight: 450; }
.prose p.source strong { color: var(--ink-64); }
.prose a[id] { scroll-margin-top: 100px; }
.prose a[id]:target { background: var(--amber-tint); border-radius: 3px; }

/* Build-in-public draft banner + section nav */
.draft-bar {
  background: repeating-linear-gradient(45deg, var(--amber-tint), var(--amber-tint) 12px, #FFF6DE 12px, #FFF6DE 24px);
  border-bottom: 1px solid var(--line);
  color: var(--amber-deep); text-align: center;
  padding: 0.7rem 1rem; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
.board-nav { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.board-nav__links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1rem; }
.board-nav__links a { font-weight: 700; font-size: 1.05rem; color: var(--ink-64); transition: color 0.2s var(--ease); }
.board-nav__links a:hover { color: var(--peach-deep); }
.board-sections { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* Helper tables */
.table-wrap { overflow-x: auto; margin: 1.5rem 0 0.5rem; -webkit-overflow-scrolling: touch; }
.helper-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 360px; }
.helper-table th, .helper-table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); }
.helper-table thead th {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--peach-deep); font-weight: 800; border-bottom: 2px solid var(--line);
}
.helper-table tbody td { color: var(--ink-80); font-weight: 500; }
.helper-table tbody td:first-child { color: var(--ink); font-weight: 800; }

/* ---------- Trust strip (above footer) ---------- */
.trust-strip { background: var(--cream-2); border-block: 1px solid var(--line-soft); }
.trust-strip__inner {
  max-width: var(--shell); margin-inline: auto; padding: 1.6rem var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-strip__item { display: flex; align-items: center; gap: 0.75rem; }
.trust-strip__item svg { width: 26px; height: 26px; color: var(--peach); flex-shrink: 0; }
.trust-strip__item b { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.trust-strip__item span { display: block; font-size: 0.8rem; color: var(--ink-64); font-weight: 500; }

/* ---------- Waitlist ---------- */
.waitlist {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.waitlist h2 { margin-top: 0.75rem; }
.waitlist .lede { margin: 1rem auto 0; }
.waitlist__form { margin-top: 1.75rem; display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center; }
.field {
  flex: 1;
  min-width: 200px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.25rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field::placeholder { color: var(--ink-46); }
.field:focus { outline: none; border-color: var(--peach); box-shadow: 0 0 0 4px var(--peach-tint); }
.form-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--ink-46); font-weight: 500; }
.form-status { margin-top: 1rem; font-size: 0.95rem; min-height: 1.4em; font-weight: 600; }
.form-status.ok { color: var(--peach-deep); }
.form-status.err { color: #c0392b; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 1.35rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem); font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--peach-deep); }
.faq-q .mark { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.4s var(--spring); }
.faq-q .mark::before, .faq-q .mark::after { content: ""; position: absolute; background: var(--peach); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .mark::before { width: 16px; height: 2.5px; }
.faq-q .mark::after { width: 2.5px; height: 16px; transition: opacity 0.3s var(--ease); }
.faq-item.open .faq-q .mark { transform: rotate(180deg); }
.faq-item.open .faq-q .mark::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a__inner { padding-bottom: 1.5rem; color: var(--ink-80); max-width: 62ch; font-weight: 450; line-height: 1.7; }
.faq-a__inner a { color: var(--peach-deep); border-bottom: 2px solid var(--peach-tint); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 5vw, 4rem); align-items: start; }
.pdp__media {
  position: sticky; top: 90px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(65% 60% at 50% 42%, var(--amber-tint), var(--peach-tint) 92%);
}
.pdp__media img { width: 70%; filter: drop-shadow(0 26px 30px rgba(232,72,30,0.28)); animation: ring-float 7s ease-in-out infinite; }
.pdp__price { font-weight: 800; font-size: 2rem; margin: 0.4rem 0 1.35rem; color: var(--ink); }
.pdp__price small { font-size: 0.95rem; color: var(--ink-46); font-weight: 600; }
.pdp h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.pdp__tag { font-size: 1.25rem; font-weight: 700; color: var(--peach-deep); margin-top: 0.5rem; }
.pdp__desc p { color: var(--ink-80); margin-top: 0.9rem; font-weight: 450; line-height: 1.7; }
.notes { margin: 1.75rem 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.note-chip {
  font-size: 0.8rem; font-weight: 700; color: var(--ink-80);
  background: var(--amber-tint); border-radius: var(--radius-pill); padding: 0.5rem 1rem;
}
.detail-list { margin-top: 1.75rem; border-top: 1px solid var(--line); }
.detail-list li { padding: 0.8rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-80); font-size: 0.92rem; font-weight: 500; display: flex; gap: 0.7rem; }
.detail-list li::before { content: "◯"; color: var(--peach); font-size: 0.8em; }
.buybox { margin-top: 1.75rem; padding: 1.6rem; border-radius: var(--radius); background: var(--cream-2); border: 1px solid var(--line-soft); }
.buybox .form-note { text-align: left; margin-top: 0.85rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2.25rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.25rem; }
.footer__brand p { margin-top: 1rem; color: var(--ink-64); font-size: 0.9rem; max-width: 34ch; font-weight: 500; }
.footer h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--peach-deep); margin-bottom: 1rem; font-weight: 800; }
.footer__col a, .footer__col span { display: block; color: var(--ink-64); font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.2s var(--ease); font-weight: 500; }
.footer__col a:hover { color: var(--peach-deep); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--ink-46); font-weight: 500; }

/* ---------- Reveal-on-scroll ---------- */
[data-observe] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-observe].in { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(18px); animation: reveal-up 0.8s var(--ease) forwards; }
.reveal[data-d="1"] { animation-delay: 0.08s; }
.reveal[data-d="2"] { animation-delay: 0.18s; }
.reveal[data-d="3"] { animation-delay: 0.28s; }
.reveal[data-d="4"] { animation-delay: 0.38s; }
@keyframes reveal-up { to { opacity: 1; transform: none; } }

/* ---------- Confetti + ring-rain (fun, JS-driven) ---------- */
.confetti-piece {
  position: fixed;
  top: -40px;
  z-index: 9999;
  pointer-events: none;
  will-change: transform, opacity;
}
.confetti-piece img, .confetti-piece span { display: block; width: 100%; height: 100%; }
@keyframes confetti-fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(var(--spin, 540deg)); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: 40rem; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .capture, .trust-icons, .social-proof { margin-inline: auto; }
  .trust-icons { justify-content: center; }
  .hero__art { order: -1; max-width: 22rem; margin-inline: auto; }
  .grid--3, .occasions { grid-template-columns: 1fr 1fr; }
  .split, .pdp { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .pdp__media { position: relative; top: 0; max-width: 440px; margin-inline: auto; width: 100%; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav__links.open a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav__links.open a[data-join] { display: block; color: var(--peach-deep); font-weight: 700; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }   /* Join lives in the hamburger menu on mobile */
  .grid--3, .grid--2, .occasions { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .capture__row { flex-direction: column; padding: 0.6rem; gap: 0.5rem; border-radius: var(--radius); }
  .capture__row .field { text-align: center; }
  .capture__row .btn { width: 100%; }
  .trust-strip__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, [data-observe] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}
