/* =========================================================================
   Sussex Lavender CIC — Design System
   "Where Joy is Our Currency"
   -------------------------------------------------------------------------
   Palette, type, layout primitives and components shared across all pages.
   Fonts: Playfair Display (display), Cormorant Garamond (serif), DM Sans (body)
   ========================================================================= */

:root {
  /* Brand palette */
  --purple-deep: #3d1a6e;
  --purple-mid:  #7c5c8a;
  --purple-soft: #b09dc0;
  --lavender:    #f0ebf7;
  --lavender-2:  #f7f3fb;
  --gold:        #b89fd0;  /* light mauve/lavender accent */
  --gold-deep:   #8c6ab0;  /* deeper mauve accent */
  --sage:        #6b8f6e;
  --sage-deep:   #4f6e52;
  --white:       #ffffff;
  --paper:       #fdfcfe;
  --ink:         #2b1c3a;
  --ink-soft:    #5a4a68;

  /* Type */
  --display: "Playfair Display", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --readw: 720px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* Misc */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 24px 60px -28px rgba(61, 26, 110, 0.32);
  --shadow-soft: 0 18px 44px -30px rgba(61, 26, 110, 0.4);
  --line: rgba(61, 26, 110, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Decorative lavender-sprig motif (white, for screen blend over dark/photo areas) */
  --sprig-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='130' viewBox='0 0 80 130'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M40 130 L40 56'/%3E%3Cpath d='M40 92 C30 86 26 78 26 70'/%3E%3Cpath d='M40 100 C50 94 54 86 54 78'/%3E%3C/g%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='40' cy='20' rx='4' ry='6'/%3E%3Cellipse cx='32' cy='30' rx='3.4' ry='5'/%3E%3Cellipse cx='48' cy='30' rx='3.4' ry='5'/%3E%3Cellipse cx='40' cy='34' rx='4' ry='6'/%3E%3Cellipse cx='33' cy='44' rx='3.4' ry='5'/%3E%3Cellipse cx='47' cy='44' rx='3.4' ry='5'/%3E%3Cellipse cx='40' cy='48' rx='3.6' ry='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--purple-deep); color: #fff; padding: 0.6rem 1.25rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-family: var(--body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 350;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.12; color: var(--purple-deep); }
.display {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1.display { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2.display { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  margin: 0 0 1.1rem;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
}
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }
.script {
  font-family: var(--display);
  font-style: italic;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: var(--readw); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.tint { background: var(--lavender-2); }
.tint-deep { background:
    radial-gradient(120% 120% at 50% -10%, #4a2280 0%, var(--purple-deep) 55%, #2e1252 100%);
  color: #efe8f7;
}
.tint-deep h1, .tint-deep h2, .tint-deep h3, .tint-deep h4 { color: #fff; }
.tint-deep .eyebrow { color: var(--gold); }
.tint-deep .lede { color: rgba(255,255,255,0.82); }
/* Ensure all body text inside tint-deep sections is readable */
.tint-deep p { color: rgba(255,255,255,0.82); }
.tint-deep .step p { color: rgba(255,255,255,0.80); }
.tint-deep .textlink { color: var(--gold); border-bottom-color: rgba(176,157,192,0.5); }
.tint-deep .textlink:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }

.rule {
  width: 56px; height: 1px; border: 0; margin: 1.6rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.rule.left { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 100px; border: 1px solid transparent;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s var(--ease);
  background: var(--purple-deep); color: #fff;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(61,26,110,.55); }
.btn--gold { background: var(--gold); color: var(--purple-deep); }
.btn--gold:hover { box-shadow: 0 14px 30px -12px rgba(184,159,208,.6); }
.btn--ghost { background: transparent; color: var(--purple-deep); border-color: var(--line); }
.btn--ghost:hover { background: var(--purple-deep); color: #fff; border-color: var(--purple-deep); }
.btn--light { background: #fff; color: var(--purple-deep); }
.btn--on-dark { background: rgba(255,255,255,0.12); color:#fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn--on-dark:hover { background:#fff; color: var(--purple-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row.center { justify-content: center; }

.textlink {
  font-weight: 600; letter-spacing: 0.04em; color: var(--purple-deep);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.textlink:hover { color: var(--gold-deep); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 252, 254, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.1rem var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__links { display: flex; gap: clamp(0.9rem, 2vw, 2rem); align-items: center; }
.nav__links--right { justify-content: flex-end; } /* retained for compat */
.nav__links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 0.4rem 0; white-space: nowrap;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--purple-deep); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.brand { text-align: left; line-height: 1; flex-shrink: 0; }
.brand__name {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.5rem; color: var(--purple-deep); letter-spacing: 0.01em; white-space: nowrap;
}
.brand__sub {
  display: block; font-family: var(--body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple-deep); margin-top: 0.3rem;
  padding-left: 0.05em;
}
.nav__toggle {
  display: none; background: none; border: 0; padding: 0.5rem; color: var(--purple-deep);
  justify-self: end;
}
.nav__toggle svg { width: 26px; height: 26px; }

/* Logo image — nav (light background, purple logo shows as-is) */
.brand__logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin: 0;
  transition: opacity .3s;
}
.brand:hover .brand__logo-img { opacity: 0.82; }

/* Logo image — homepage hero (dark background → invert to white) */
.hero__logo {
  height: clamp(110px, 16vw, 190px);
  width: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

/* Logo image — footer (dark background → invert to white) */
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 1.4rem var(--gut) 2rem; gap: 1.3rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft);
  }
  .nav.open .nav__links a { font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 86vh, 860px);
  display: grid; place-items: center; text-align: center; overflow: hidden;
  color: #fff; padding: 7rem var(--gut);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(30,15,40,0.58) 0%, rgba(30,15,40,0.42) 40%, rgba(30,15,40,0.68) 100%),
    linear-gradient(135deg, #6a4a93 0%, #4a2280 38%, #2e1252 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(20,6,42,0.35); }
.hero__phrase {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 2rem); font-style: italic;
  color: rgba(255,255,255,0.92); margin-top: 1.6rem; font-weight: 400;
}
.hero__tagline {
  margin-top: 1.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.hero .btn-row { margin-top: 2.6rem; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.7); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,0.8), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform:scaleY(.6); transform-origin:top;} 50%{opacity:1; transform:scaleY(1);} }

/* ---------- Photography zones (art-directed placeholders) ---------- */
/* Swap any .photo for a real image: add background-image on the element,
   or replace the block with <img class="photo__img">. See README. */
.photo {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background-color: var(--purple-soft);
  background-image:
    radial-gradient(130% 120% at 20% 10%, rgba(255,255,255,0.34), transparent 55%),
    linear-gradient(150deg, #b6a4c8 0%, #8e74a6 45%, #5f3f86 100%);
  background-size: cover; background-position: center;
  min-height: 320px;
}
/* Scrim — sits in front of any background-image (including inline-style overrides)
   so text labels are always readable. z-index below .photo__label and .badge (z-index 3). */
.photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,8,35,0.35) 0%, rgba(20,8,35,0.65) 100%);
  pointer-events: none;
}
.photo > * { position: relative; z-index: 2; }
.photo--sage {
  background-image:
    radial-gradient(130% 120% at 20% 10%, rgba(255,255,255,0.32), transparent 55%),
    linear-gradient(150deg, #9fb79f 0%, #6b8f6e 50%, #4f6e52 100%);
}
.photo--gold {
  background-image:
    radial-gradient(130% 120% at 20% 10%, rgba(255,255,255,0.42), transparent 55%),
    linear-gradient(150deg, #d8c8e8 0%, #b89fd0 48%, #8c6ab0 100%);
}
.photo--mono {
  background-image:
    radial-gradient(130% 120% at 30% 10%, rgba(255,255,255,0.3), transparent 55%),
    linear-gradient(150deg, #b9b3c0 0%, #7d7686 50%, #4b4553 100%);
  filter: saturate(0.15);
}
.photo__label {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.96); background: rgba(20,6,42,0.62);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 100px; padding: 0.4rem 0.85rem;
  backdrop-filter: blur(4px);
}
.photo--tall { min-height: 480px; }
.photo--band { min-height: clamp(320px, 42vw, 560px); border-radius: 0; }

/* Full-bleed banner */
.band { position: relative; }
.band .photo { border-radius: 0; }
/* Band photos have large quote text in the centre — override the bottom-weighted
   scrim with a full-coverage overlay so text is legible across the whole image. */
.band .photo::before {
  background: linear-gradient(to bottom, rgba(20,8,35,0.45) 0%, rgba(20,8,35,0.70) 100%);
}
.band__caption {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; text-align: center;
  padding: var(--gut); color: #fff;
}
.band__caption .quote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.2; max-width: 16ch;
  text-shadow: 0 2px 26px rgba(20,6,42,0.4);
}
.band__caption .by { margin-top: 1.2rem; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media .photo { min-height: clamp(360px, 38vw, 520px); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .photo { border-radius: 0; min-height: 210px; }
.card__body { padding: 1.8rem 1.7rem 2rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.6rem; }
.card__body p { color: var(--ink-soft); font-size: 0.97rem; }
.card__foot { margin-top: auto; padding-top: 1.4rem; }
.card__num {
  font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--gold-deep);
  display: block; margin-bottom: 0.4rem;
}

/* Pathway card with hover-revealed link */
.pathway .card__foot a { color: var(--purple-deep); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pathway .card__foot a .arrow { display: inline-block; transition: transform .4s var(--ease); }
.pathway .card:hover .arrow { transform: translateX(6px); }

/* ---------- Feature list / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; }
.step__num {
  counter-increment: step; width: 48px; height: 48px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--lavender); color: var(--purple-deep);
  font-family: var(--display); font-style: italic; font-size: 1.3rem; border: 1px solid var(--line);
}
.step__num::before { content: counter(step); }
.step h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.25rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Wish-list / chips ---------- */
.wishlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
@media (max-width: 820px) { .wishlist { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .wishlist { grid-template-columns: 1fr; } }
.wish {
  display: flex; gap: 0.85rem; align-items: center; padding: 1rem 1.2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  font-size: 0.95rem; transition: border-color .3s, transform .3s var(--ease);
}
.wish:hover { transform: translateY(-3px); border-color: var(--purple-soft); }
.wish .ico { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }

/* Rich wish variant — 2-column with descriptions */
.wishlist--rich { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .wishlist--rich { grid-template-columns: 1fr; } }
.wishlist--rich .wish { align-items: flex-start; padding: 1.25rem 1.4rem; }
.wishlist--rich .wish .ico { font-size: 1.4rem; margin-top: 0.1rem; }
.wish__title {
  display: block; font-weight: 600; color: var(--purple-deep);
  font-size: 0.96rem; margin-bottom: 0.3rem;
}
.wish__body { margin: 0; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Help cards (how-you-can-help, home page) ---------- */
.helpcard {
  text-align: center; padding: 2.4rem 1.8rem 2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.helpcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.helpcard__ico { font-size: 2.4rem; display: block; margin-bottom: 1rem; line-height: 1; }
.helpcard__title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--purple-deep); margin-bottom: 0.6rem;
}
.helpcard__body { font-size: 0.96rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* ---------- Pricing / product meta ---------- */
.price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--purple-deep); }
.tbc {
  display: inline-block; font-family: var(--body); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep);
  background: rgba(140,106,176,0.14); border: 1px solid rgba(140,106,176,0.4);
  border-radius: 100px; padding: 0.3rem 0.7rem; vertical-align: middle;
}
.badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold); color: #3a2d05; border-radius: 100px; padding: 0.35rem 0.8rem;
}
.badge--soft { background: rgba(255,255,255,0.9); color: var(--purple-deep); }

/* ---------- Stat / value rows ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr 1fr; } }
.value h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.value p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.value .mark { font-family: var(--display); font-style: italic; font-size: 2.4rem; color: var(--gold); display:block; margin-bottom:0.4rem;}

/* ---------- Mailing list / forms ---------- */
.signup {
  display: flex; gap: 0.7rem; flex-wrap: wrap; max-width: 520px; margin: 2rem auto 0;
}
.signup.left { margin-inline: 0; }
.field {
  flex: 1; min-width: 220px; padding: 0.95rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; font-family: var(--body); font-size: 0.98rem;
  color: var(--ink); transition: border-color .3s, box-shadow .3s;
}
.field:focus { outline: none; border-color: var(--purple-soft); box-shadow: 0 0 0 4px rgba(176,157,192,0.18); }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; }
.tint-deep .field { background: rgba(255,255,255,0.95); }

.offer-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.6rem; }
.offer-list li { display: flex; gap: 0.7rem; align-items: baseline; font-family: var(--serif); font-size: 1.1rem; }
.offer-list li::before { content: "✦"; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* Embed placeholder (Calendly, forms, video) */
.embed {
  border: 1px dashed var(--purple-soft); border-radius: var(--radius-lg); background: var(--lavender-2);
  padding: clamp(2rem, 5vw, 3.4rem); text-align: center; color: var(--ink-soft);
}
.embed .eyebrow { color: var(--purple-mid); }
.embed h4 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; }
.embed code { font-size: 0.82rem; background: #fff; padding: 0.15rem 0.5rem; border-radius: 4px; border: 1px solid var(--line); }

/* Video frame */
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 40%, #5a3a86 0%, #3d1a6e 60%, #2a1050 100%);
  display: grid; place-items: center;
}
/* .video::after — watermark removed */
.video__play {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform .4s var(--ease);
}
.video:hover .video__play { transform: scale(1.06); }
.video__play::before { content:""; border-left: 22px solid var(--purple-deep); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.video__cap { position:absolute; bottom:1rem; z-index:2; color:rgba(255,255,255,.85); font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; }

/* ---------- Footer ---------- */
.footer { background: #25123f; color: rgba(255,255,255,0.72); padding-block: clamp(3.5rem,6vw,5.5rem) 2.5rem; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand .brand__name { color: #fff; font-size: 1.7rem; }
.footer__brand .brand__sub { color: var(--gold); }
.footer__brand p { margin-top: 1.2rem; max-width: 34ch; font-size: 0.95rem; }
.footer h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin: 0 0 1.1rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: 0.95rem; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__bottom .joy { font-family: var(--display); font-style: italic; color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
}

/* ---------- Page header (interior pages) ---------- */
.pagehead {
  position: relative; text-align: center; color: #fff; padding: clamp(7rem,12vw,11rem) var(--gut) clamp(4rem,7vw,6rem);
  overflow: hidden;
}
.pagehead__bg { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(30,15,40,0.58), rgba(30,15,40,0.72)),
              linear-gradient(135deg, #6a4a93, #4a2280 45%, #2e1252); }
.pagehead__content { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.pagehead h1 { color: #fff; }
.pagehead .lede { color: rgba(255,255,255,0.85); margin-top: 1.2rem; }
.breadcrumb { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }

/* ---------- Short page header (shop banner override) ---------- */
.pagehead--short {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  min-height: 0;
  max-height: 280px;
}
.pagehead--short .pagehead__content { max-width: 640px; }
.pagehead--short h1.display { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.pagehead--short .lede { font-size: clamp(1rem, 1.8vw, 1.3rem); margin-top: 0.7rem; }

/* ---------- Tabs ---------- */
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 2.4rem;
}
.tab-btn {
  background: none; border: none; padding: 0.8rem 1.6rem;
  font-family: var(--body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .3s, border-color .3s;
}
.tab-btn:hover { color: var(--purple-deep); }
.tab-btn.active { color: var(--purple-deep); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Quantity checklist ---------- */
.qty-checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: 0.6rem; }
.qty-checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.97rem; color: var(--ink-soft); }
.qty-checklist li input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--gold-deep); flex-shrink: 0; }

/* utility spacing */
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3rem; }
.mb-m { margin-bottom: 2rem; } .mb-l { margin-bottom: 3rem; }
.maxw-sm { max-width: 560px; }
