/* ============================================================
   BOOYAH BOOKS & BEATS
   Premium, warm, editorial. Nature-grounded. Grown-up.
   ============================================================ */

:root {
  --paper:      #FBF9F5;  /* warm paper white */
  --paper-warm: #F3EEE4;  /* slightly deeper panel */
  --forest:     #2E3D2F;  /* deep forest — primary text */
  --forest-soft:#3A4A3B;  /* softer forest for body — darkened for contrast */
  --sage:       #5F6E52;  /* living sage accent — darkened for contrast */
  --sage-light: #7C8A6E;  /* lighter sage for decorative use only */
  --sage-pale:  #E4E8DC;  /* pale sage panel */
  --amber:      #B07C36;  /* golden-hour highlight — darkened for contrast */
  --amber-light:#C89B5C;  /* lighter amber for large text/decorative */
  --clay:       #A15E3C;  /* warm clay — darkened for contrast */
  --line:       #DDD6C7;  /* hairline */
  --on-dark:    #E8EDE3;  /* light text for dark forest backgrounds */
  --on-dark-soft:#C3CDBB; /* softer light text for dark backgrounds */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--forest-soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; margin-bottom: 1.35rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin-bottom: 1.35rem; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 0.7rem; }
h2 + p, h3 + p, h1 + p { margin-top: 0; }

p { margin-bottom: 1.1rem; }
a { color: var(--clay); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--forest); }

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 1rem;
}

.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--forest-soft); }

/* ---------- Layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.panel-sage { background: var(--sage-pale); }
.panel-warm { background: var(--paper-warm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 1.1rem 2rem;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: 1.4rem; color: var(--forest);
  letter-spacing: -0.01em;
}
.brand span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--forest-soft); font-size: 0.95rem; font-weight: 500;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); border-color: var(--amber); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--forest); cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.7rem; border-radius: 2px;
  background: var(--forest); color: var(--paper);
  border: 1.5px solid var(--forest); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--sage); border-color: var(--sage); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 6.5rem 0 5.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.hero-photo img { width: 100%; height: auto; border-radius: 12px; display: block; }
.hero h1 { margin-bottom: 1.4rem; }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.feature.reverse .feature-media { order: 2; }
.feature-media img { width: 100%; height: auto; border-radius: 12px; display: block;
  box-shadow: 0 18px 40px -24px rgba(46,61,47,0.5); }
.feature + .feature { margin-top: 5rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(46,61,47,0.55); }
.card-cover { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-warm); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card-body p { font-size: 0.95rem; color: var(--forest-soft); flex: 1; }
.card-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--sage); font-weight: 600; margin-top: 0.9rem; }
.card.soon { opacity: 0.85; }
.card.soon .card-cover img { filter: saturate(0.7); }

/* ---------- Ritual (signature) ---------- */
.ritual {
  border-left: 3px solid var(--amber); padding: 0.4rem 0 0.4rem 1.8rem; margin: 2rem 0;
}
.ritual .eyebrow { color: var(--amber); }
.ritual p { font-size: 1.15rem; color: var(--forest); font-family: "Fraunces", Georgia, serif; }

/* ---------- Quotes / reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.8rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: 3px; padding: 1.8rem; }
.quote p { font-size: 1.02rem; color: var(--forest); font-style: italic; }
.quote .who { font-style: normal; font-weight: 600; color: var(--sage); font-size: 0.9rem; margin: 0; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 0.6rem; }

/* ---------- Value bullets ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem 2.5rem; }
.value h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.96rem; }

/* ---------- List ---------- */
.checklist { list-style: none; }
.checklist li { padding-left: 1.6rem; position: relative; margin-bottom: 0.6rem; }
.checklist li::before { content: "—"; position: absolute; left: 0; color: var(--amber); }

/* ---------- Signup ---------- */
.signup-form { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 460px; }
.signup-form input {
  flex: 1; min-width: 200px; padding: 0.85rem 1rem; font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--forest);
}
.signup-form input:focus { outline: 2px solid var(--sage); border-color: var(--sage); }
.form-note { font-size: 0.82rem; color: var(--sage); margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: #D9E0D2; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: var(--paper); font-family: "Fraunces", serif; font-size: 1.05rem; margin-bottom: 1rem; font-weight: 500; }
.site-footer a { color: #C6D0BC; display: block; margin-bottom: 0.5rem; font-size: 0.95rem; }
.site-footer a:hover { color: var(--amber); }
.footer-brand { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--paper); margin-bottom: 0.6rem; }
.footer-brand span { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 3rem; padding-top: 1.5rem;
  font-size: 0.85rem; color: #9CA890; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  body { font-size: 17px; }
  .hero-grid, .feature, .feature.reverse .feature-media { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .hero { padding: 3rem 0; }
  section { padding: 3.5rem 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 2rem; border-bottom: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-media { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   ADDITIONS — 2026 experience & conversion update
   Built on the existing tokens. No token was changed.
   ============================================================ */

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--on-dark);
  padding: 0.75rem 1.25rem; z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Visible keyboard focus everywhere ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Trust strip — 3 individual rounded boxes ---------- */
.trust-strip {
  background: #EFEBE3; /* distinct from page paper */
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}
.trust-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.trust-item {
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(46, 61, 47, 0.08);
  border-radius: 16px;
  padding: 1.55rem 1.35rem 1.45rem;
  box-shadow: 0 8px 22px -18px rgba(46, 61, 47, 0.35);
}
.trust-item:nth-child(1) { background: #FFFCF8; }
.trust-item:nth-child(2) { background: #F7F4EE; }
.trust-item:nth-child(3) { background: #F4F7F2; }
.trust-item .stars { color: var(--amber); letter-spacing: 0.1em; font-size: 0.95rem; }
.trust-item p {
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest); font-size: 1.02rem;
  line-height: 1.45; margin: 0.55rem 0 0.35rem;
  /* avoid orphan single-word lines */
  text-wrap: pretty;
}
.trust-item .who { font-size: 0.8rem; color: var(--sage); margin: 0; }

/* ---------- The six Booyah Moment cards ---------- */
.moment-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
.moment-card {
  display: block; width: 100%; text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.5rem 1.5rem;
  background: var(--paper);
  cursor: pointer;
  font: inherit; color: inherit;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.moment-card:hover { border-color: var(--sage-light); background: #FFFEFB; }
.moment-card .moment-icon { display: block; margin-bottom: 0.9rem; }
.moment-card .moment-icon svg { width: 30px; height: 30px; }
.moment-card h3 {
  font-size: 1.22rem; margin-bottom: 0.35rem; color: var(--forest);
}
.moment-card p { font-size: 0.96rem; line-height: 1.55; margin: 0; color: var(--forest-soft); }
.moment-card .moment-go {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.84rem; color: var(--sage); font-weight: 600;
}

/* Each feeling gets its own quiet tint rather than one shared card style */
.moment-card[data-moment="Loved"]     { background: #FBF2F0; border-color: #EBD9D3; }
.moment-card[data-moment="Loved"]     svg { color: #A15E3C; }
.moment-card[data-moment="Calm"]      { background: #EFF2F4; border-color: #D8DFE4; }
.moment-card[data-moment="Calm"]      svg { color: #55707F; }
.moment-card[data-moment="Brave"]     { background: #F7F1E7; border-color: #E7DAC5; }
.moment-card[data-moment="Brave"]     svg { color: #B07C36; }
.moment-card[data-moment="Confident"] { background: #F6F3EA; border-color: #E5DFCC; }
.moment-card[data-moment="Confident"] svg { color: #8A7A3E; }
.moment-card[data-moment="Creative"]  { background: #F1F4EC; border-color: #DCE3D2; }
.moment-card[data-moment="Creative"]  svg { color: #5F6E52; }
.moment-card[data-moment="Connected"] { background: #F3F1F5; border-color: #DFDAE3; }
.moment-card[data-moment="Connected"] svg { color: #6E5F7C; }

/* Landing highlight after a moment card is clicked */
.is-highlighted {
  animation: booyah-settle 2.4s ease;
}
@keyframes booyah-settle {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(176,124,54,0); }
  18%, 68% { box-shadow: inset 0 0 0 3px rgba(176,124,54,0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .is-highlighted { animation: none; box-shadow: inset 0 0 0 3px rgba(176,124,54,0.45); }
  html { scroll-behavior: auto; }
}

/* ---------- Read. Listen. Connect. ---------- */
.rlc {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.75rem;
}
.rlc-step { text-align: left; }
.rlc-step .rlc-icon { display: block; color: var(--sage); margin-bottom: 1rem; }
.rlc-step .rlc-icon svg { width: 34px; height: 34px; }
.rlc-step h3 { font-size: 1.28rem; margin-bottom: 0.45rem; }
.rlc-step p { font-size: 0.98rem; line-height: 1.6; margin: 0; }

/* ---------- Product cards where the whole card is the link ---------- */
.cutie-card { position: relative; }
.cutie-card .card-link::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
}
.cutie-card .card-link { text-decoration: none; color: inherit; }
.cutie-card:hover .cutie-cover { transform: translateY(-3px); }
.cutie-cover { transition: transform 0.18s ease; }
.cutie-card .cutie-cta {
  display: inline-block; margin-top: 0.55rem;
  font-size: 0.86rem; font-weight: 600; color: var(--clay);
}
.cutie-card .cutie-buy {
  position: relative; z-index: 2;
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.86rem; color: var(--sage); text-decoration: underline;
}

/* ---------- Discovery / choose-your-next section ---------- */
.choose-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
.choose-item { display: flex; flex-direction: column; }
.choose-item img { border-radius: 12px; margin-bottom: 1.1rem; }
.choose-item h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.choose-item p { font-size: 0.97rem; margin-bottom: 1rem; flex: 1; }

/* ---------- Lifestyle image bands ---------- */
.life-band {
  display: grid; gap: 0.6rem;
  grid-template-columns: repeat(3, 1fr);
}
.life-band figure { margin: 0; }
.life-band img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 1 / 1; display: block; border-radius: 10px;
}
.life-band figcaption {
  font-size: 0.88rem; color: var(--sage);
  margin-top: 0.55rem; line-height: 1.45;
}

/* ---------- Starter pack lead magnet ---------- */
.starter {
  background: var(--forest); color: var(--on-dark);
  padding: 4rem 0;
}
.starter h2 { color: #FFFDF8; margin-bottom: 1rem; }
.starter p { color: var(--on-dark-soft); }
.starter .starter-list {
  list-style: none; margin: 1.5rem 0 2rem; padding: 0;
}
.starter .starter-list li {
  padding-left: 1.6rem; position: relative;
  margin-bottom: 0.55rem; color: var(--on-dark-soft);
}
.starter .starter-list li::before {
  content: "·"; position: absolute; left: 0.4rem;
  color: var(--amber-light); font-size: 1.5rem; line-height: 1;
}
.starter .signup-form input { border-color: rgba(232,237,227,0.35); background: rgba(255,255,255,0.06); color: #FFFDF8; }
.starter .signup-form input::placeholder { color: rgba(232,237,227,0.6); }
.starter .btn { background: var(--amber); border-color: var(--amber); color: #241A0B; }
.starter .form-note { color: var(--on-dark-soft); }

/* ---------- Form status messaging ---------- */
.form-note[data-state="error"]   { color: #C25B3A; font-weight: 600; }
.form-note[data-state="pending"] { color: var(--sage); }
.form-note[data-state="success"] { color: var(--sage); font-weight: 600; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Founders ---------- */
.founders {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}
.founder img {
  width: 168px; height: 168px; object-fit: cover;
  border-radius: 50%; margin-bottom: 1.1rem;
}
.founder h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.founder .role { font-size: 0.88rem; color: var(--sage); margin-bottom: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem; color: var(--forest);
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.8rem; font-size: 0.98rem; }

/* ---------- See inside ---------- */
.see-inside img {
  width: 100%; border-radius: 12px; display: block;
  box-shadow: 0 6px 26px rgba(46,61,47,0.14);
}
.see-inside figcaption {
  margin-top: 0.9rem; font-size: 0.9rem; color: var(--sage);
}

/* ---------- Placeholder for content not yet supplied ---------- */
.awaiting {
  border: 2px dashed var(--line);
  border-radius: 12px; padding: 2.5rem 1.5rem;
  text-align: center; color: var(--sage); font-size: 0.95rem;
}

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 1.1rem; max-width: 34rem; margin-top: 1.75rem; }
.contact-form label { font-size: 0.9rem; font-weight: 600; color: var(--forest); display: block; margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.8rem 0.9rem;
  border: 1px solid var(--line); border-radius: 8px;
  font: inherit; font-size: 1rem; background: var(--paper);
  color: var(--forest-soft);
}
.contact-form textarea { min-height: 8rem; resize: vertical; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .moment-grid, .choose-grid, .rlc { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 640px) {
  .moment-grid, .choose-grid, .rlc, .life-band { grid-template-columns: 1fr; }
  .hero-lifestyle { min-height: 0; display: block; }
  .hero-lifestyle picture, .hero-lifestyle img {
    position: relative; height: 58vw; max-height: 320px; object-position: 50% 26%;
  }
  .hero-lifestyle::after { display: none; }
  .hero-lifestyle .hero-copy { padding: 1.75rem 0 2rem; max-width: none; }
  .hero-lifestyle h1 { color: var(--forest); }
  .hero-lifestyle .lead { color: var(--forest-soft); }
  .hero-lifestyle .hero-detail { color: var(--sage); }
  .hero-lifestyle .btn-ghost { color: var(--forest); border-color: var(--forest); }
  .life-band img { aspect-ratio: 4 / 3; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { text-align: center; }
}
  
/* Tap targets stay comfortable on small screens */
@media (max-width: 640px) {
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .cutie-card { padding-bottom: 0.5rem; }
}

/* Footer column headings are structural, not display type */
.site-footer .footer-grid h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 0.9rem;
}

/* ============================================================
   CENTRED SECTION HEADINGS
   ============================================================ */
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-left: auto; margin-right: auto; }
.section-head h1, .section-head h2 {
  margin-left: auto; margin-right: auto; margin-bottom: 0.85rem;
  max-width: 26ch;
}
.section-head p {
  margin-left: auto; margin-right: auto; max-width: 58ch;
}
.section-centred { text-align: center; }
.section-centred .rlc-step,
.section-centred .founder,
.section-centred .value { text-align: center; }
.section-centred .rlc-icon,
.section-centred .moment-icon { margin-left: auto; margin-right: auto; }
.section-centred .founder img { margin-left: auto; margin-right: auto; }
.section-centred .btn-row { justify-content: center; }
.section-centred .checklist { display: inline-block; text-align: left; }

/* ============================================================
   CUTIES GRID  (was lost with the old inline style block)
   ============================================================ */
.cuties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
  margin-top: 2.5rem;
}
.cutie-card { text-align: center; }
.cutie-cover {
  display: block; width: 100%; height: auto;
  border-radius: 10px; margin-bottom: 0.9rem;
  box-shadow: 0 4px 14px rgba(46, 61, 47, 0.12);
}
.cutie-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest); font-size: 1.08rem;
  font-weight: 500; margin-bottom: 0.3rem; line-height: 1.3;
}
.cutie-detail { font-size: 0.84rem; color: var(--sage); margin-bottom: 0.35rem; }

.coming-soon-section {
  background: var(--sage-pale); padding: 3rem 2rem;
  border-radius: 10px; margin: 1rem 0; text-align: center;
}
.coming-soon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem; margin-top: 2.5rem;
}
.coming-soon-item { text-align: center; }
.coming-soon-cover {
  display: block; width: 100%; height: auto;
  border-radius: 10px; margin-bottom: 0.85rem;
  box-shadow: 0 4px 14px rgba(46, 61, 47, 0.12);
  filter: saturate(0.9) opacity(0.86);
}
.coming-soon-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest); font-size: 1rem;
  font-weight: 500; margin-bottom: 0.25rem;
}
.coming-soon-label {
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
.quote .who, .who { font-size: 0.85rem; color: var(--sage); margin-top: 0.6rem; }

@media (max-width: 900px) {
  .cuties-grid, .coming-soon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cuties-grid, .coming-soon-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .coming-soon-section { padding: 2rem 1rem; }
}

/* ============================================================
   Equal-size media in the three-up product section
   ============================================================ */
.choose-item picture { display: block; }
.choose-item img {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; margin-bottom: 1.1rem;
}

/* Album player */
.album-embed { border-radius: 12px; overflow: hidden; }
.album-embed iframe { display: block; border: 0; width: 100%; min-height: 420px; }
@media (max-width: 640px) { .album-embed iframe { min-height: 380px; } }

/* ============================================================
   HERO — centred, with clear air between the copy and the photo
   ============================================================ */
.hero-centred {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--paper-warm);
  text-align: center;
}
.hero-centred .hero-copy {
  max-width: 48rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.hero-centred h1 { margin-bottom: 1.35rem; }
.hero-centred .lead { margin-bottom: 1.1rem; }
.hero-centred .hero-detail {
  color: var(--sage); font-size: 1.02rem;
  margin-bottom: 2.5rem; max-width: 42rem;
  margin-left: auto; margin-right: auto;
}
.hero-centred .btn-row { justify-content: center; margin-bottom: 0; }
.hero-centred .hero-media picture { display: block; }
.hero-centred .hero-media img {
  width: 100%; height: auto;
  aspect-ratio: 20 / 9; object-fit: cover; object-position: 50% 28%;
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(46, 61, 47, 0.16);
}
@media (max-width: 640px) {
  .hero-centred .hero-media img { aspect-ratio: 4 / 3; border-radius: 10px; }
  .hero-centred .hero-copy { margin-bottom: 2rem; }
}

/* ============================================================
   SPACING — consistent rhythm everywhere
   ============================================================ */
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.25rem); }
.section-head .eyebrow { margin: 0 auto 0.9rem; }
.section-head h1, .section-head h2 {
  margin: 0 auto 1.1rem; max-width: 26ch;
}
.section-head p { margin: 0 auto; max-width: 58ch; }
.section-head p + p { margin-top: 0.9rem; }

.btn-row { margin-top: 1.75rem; gap: 0.9rem; }
.section-centred .btn-row { justify-content: center; }
.values { margin-top: 0.5rem; }
.rlc { margin-top: clamp(2rem, 4vw, 3rem); }
.moment-grid { margin-top: clamp(2rem, 4vw, 3rem); }
.choose-grid { margin-top: clamp(2rem, 4vw, 3rem); }
.cuties-grid { margin-top: clamp(2rem, 4vw, 3rem); }
.quotes { margin-top: 0.5rem; }
.see-inside { margin-top: 0.5rem; }
figure.see-inside figcaption { margin-top: 1.1rem; }
.life-band { margin-top: 0.5rem; }
.founders { margin-top: clamp(2rem, 4vw, 3rem); }
.faq { margin-top: 1.5rem; }

/* ============================================================
   CUTIES GRID — uniform boxes, matching the SSB layout
   ============================================================ */
.cuties-grid, .coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem 1.75rem;
  align-items: start;
}
.cutie-card, .coming-soon-item { text-align: center; }
.cutie-cover, .coming-soon-cover {
  display: block; width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover; object-position: center top;
  border-radius: 10px; margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(46, 61, 47, 0.14);
}
.cutie-title, .coming-soon-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest); font-size: 1.05rem;
  font-weight: 500; line-height: 1.3; margin-bottom: 0.4rem;
}
.cutie-detail { font-size: 0.84rem; color: var(--sage); margin-bottom: 0.5rem; }
.cutie-card .cutie-cta { display: block; margin-top: 0; margin-bottom: 0.45rem; }
.cutie-card .cutie-buy { margin-top: 0; }
.coming-soon-cover { filter: saturate(0.9) opacity(0.86); }
.coming-soon-label {
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
.coming-soon-section { padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem); }

@media (max-width: 900px) {
  .cuties-grid, .coming-soon-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.4rem; }
}
@media (max-width: 600px) {
  .cuties-grid, .coming-soon-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.1rem; }
}

/* Equal media in the three-up product section */
.choose-item picture { display: block; }
.choose-item img {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; margin-bottom: 1.35rem;
}
.choose-item h3 { margin-bottom: 0.6rem; }

/* Privacy and other long-form pages: centred headings, left-aligned body copy */
.prose-centred h2 { text-align: center; margin-top: 3rem; }
.prose-centred h2:first-of-type { margin-top: 0; }

/* Body copy inside centred narrow sections stays readable, headings stay centred */
.section-centred .contact-form { text-align: left; margin-left: auto; margin-right: auto; }
.section-centred .starter-list { text-align: left; display: inline-block; }
.section-centred .faq { text-align: left; }

/* ============================================================
   REVISION 4 — grid, hero spacing, tracklist
   ============================================================ */

/* --- Cuties grid: covers at natural proportions, exactly uniform --- */
.cuties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.75rem;
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cutie-card { text-align: center; position: relative; }
.cutie-cover {
  display: block; width: 100%; height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 10px; margin-bottom: 0.9rem;
  box-shadow: 0 5px 18px rgba(46, 61, 47, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cutie-card:hover .cutie-cover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(46, 61, 47, 0.22);
}
.cutie-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--sage-deep, #4F6147);
  font-size: 0.95rem; font-weight: 500;
  line-height: 1.35; margin-bottom: 0;
}
.cutie-card.is-soon .cutie-cover { filter: saturate(0.88) opacity(0.8); }
.cutie-card.is-soon:hover .cutie-cover { transform: none; }
.coming-soon-label {
  display: block; margin-top: 0.3rem;
  font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber); font-weight: 600;
}
.grid-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.92rem; color: var(--sage);
}

@media (max-width: 900px) { .cuties-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.4rem; } }
@media (max-width: 600px) { .cuties-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.1rem; } }

/* --- Hero: guarantee centring and a clear gap above the photograph --- */
.hero-centred,
.hero-centred .hero-copy,
.hero-centred .btn-row { text-align: center; }
.hero-centred .btn-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  margin: 0 auto; padding-bottom: 0;
}
.hero-centred .hero-copy { padding-bottom: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 0; }
.hero-centred .hero-media { margin-top: 0; }

/* --- Track list --- */
.tracklist { list-style: none; margin: 0 auto; padding: 0; max-width: 44rem; text-align: left; }
.tracklist li { border-bottom: 1px solid var(--line); }
.tracklist li:first-child { border-top: 1px solid var(--line); }
.tracklist a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.95rem 0.6rem;
  color: var(--forest); text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}
.tracklist a:hover { background: var(--paper-warm); color: var(--clay); }
.tracklist .track-num {
  font-size: 0.82rem; color: var(--sage);
  min-width: 1.6rem; font-variant-numeric: tabular-nums;
}
.tracklist .track-name {
  flex: 1; font-family: "Fraunces", Georgia, serif; font-size: 1.05rem;
}
.tracklist .track-time { font-size: 0.85rem; color: var(--sage); font-variant-numeric: tabular-nums; }

/* Booyah Moment cards: no image, so the text centres like every other
   small-header-and-copy block on the main pages. */
.moment-card { text-align: center; }
.moment-card .moment-icon { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO SPLIT — H1 on image (faces clear); body + buttons below
   ============================================================ */
.hero-split {
  background: transparent;
  /* kill global section padding — image flush under header line (~2mm) */
  padding: 2px 0 0 !important;
  margin: 0;
}
.hero-split__visual {
  position: relative;
  overflow: hidden;
  background: #d9cfc0;
  margin: 0;
}
.hero-split__visual picture,
.hero-split__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 10;
  object-fit: cover;
  object-position: 50% 55%;
  vertical-align: top;
}
.hero-split__title-band {
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 2;
  /* title at upper edge of image */
  padding: 2px 0 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(250, 246, 239, 0.88) 0%,
    rgba(250, 246, 239, 0.55) 45%,
    rgba(250, 246, 239, 0) 100%
  );
  text-align: center;
  pointer-events: none;
}
.hero-split__title-band h1 {
  margin: 0 auto;
  max-width: 22ch;
  color: var(--forest);
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
  pointer-events: auto;
  line-height: 1.15;
}
.hero-split__below {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.hero-split__below .lead {
  margin: 0 auto 0.85rem;
  max-width: 46rem;
  color: var(--forest-soft);
}
.hero-split__below .hero-detail {
  margin: 0 auto 1.75rem;
  max-width: 40rem;
  color: var(--sage);
  font-size: 1.02rem;
}
.hero-split__below .btn-row {
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 640px) {
  .hero-split { padding-top: 2px !important; }
  .hero-split__visual img {
    aspect-ratio: 4 / 3;
    object-position: 50% 48%;
  }
  .hero-split__title-band { padding: 2px 0 2rem; }
  .hero-split__title-band h1 { max-width: 14ch; font-size: clamp(1.7rem, 7vw, 2.2rem); }
}
