/* ==========================================================================
   SAEDE — COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. THE PEARL MOTIF — the brand signature.
   A small glowing pearl. Used as a logo mark, list bullet, divider centre
   and section accent. Size is set with --size.
   -------------------------------------------------------------------------- */
.pearl {
  --size: 14px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  background: var(--nacre-pearl);
  box-shadow:
    inset 0 0 0 .5px rgba(255,255,255,.85),
    inset -1px -2px 4px rgba(138,110,123,.16),
    0 1px 4px rgba(138,110,123,.20),
    0 0 14px rgba(247,226,206,.55);
  flex: none;
  position: relative;
}
/* the catch-light */
.pearl::after {
  content: ""; position: absolute;
  top: 16%; left: 20%; width: 30%; height: 26%;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  filter: blur(.6px);
}
.pearl--lg { --size: 26px; }
.pearl--glow { animation: pearlBreath 7s var(--ease) infinite; }
@keyframes pearlBreath {
  0%, 100% { box-shadow: inset 0 0 0 .5px rgba(255,255,255,.85), inset -1px -2px 4px rgba(138,110,123,.16), 0 1px 4px rgba(138,110,123,.2), 0 0 12px rgba(247,226,206,.45); }
  50%      { box-shadow: inset 0 0 0 .5px rgba(255,255,255,.95), inset -1px -2px 4px rgba(138,110,123,.12), 0 1px 6px rgba(138,110,123,.18), 0 0 26px rgba(247,226,206,.85); }
}

/* Section divider: a hairline that fades in from nothing, with a pearl centre */
.divider {
  display: flex; align-items: center; justify-content: center; gap: var(--s-4);
  padding-block: var(--s-2);
}
.divider::before, .divider::after {
  content: ""; height: 1px; flex: 1; max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.85rem;
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .35s var(--ease), color .35s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--cta); color: var(--pearl); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--cta-deep); color: var(--pearl); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--plum); border-color: var(--line); }
.btn--ghost:hover { background: var(--pearl); color: var(--plum); border-color: var(--plum-mute); box-shadow: var(--shadow-sm); }

.btn--quiet {
  background: none; border: none; padding: 0;
  color: var(--cta); font-weight: 700;
  text-decoration: underline; text-underline-offset: .3em;
  text-decoration-color: var(--blush); text-decoration-thickness: 2px;
}
.btn--quiet:hover { text-decoration-color: var(--cta); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   3. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,243,.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(251,247,243,.9); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); min-height: 74px;
}
.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display);
  font-size: 1.36rem; font-weight: 400;
  /* the same capitals and the same tracking as the front page and the
     front page, so the mark is one thing wherever it appears */
  letter-spacing: calc(var(--track-wordmark) * .62);
  text-transform: uppercase; color: var(--plum); text-decoration: none;
}
.brand:hover { color: var(--plum); }
.brand .pearl { --size: 15px; }

.nav-links { display: none; align-items: center; gap: var(--s-5); list-style: none; padding: 0; }
.nav-links a {
  font-size: var(--t-small); font-weight: 600; color: var(--plum-soft);
  text-decoration: none; padding: .4rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--cta); transition: right .4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

.nav-cta { display: none; }

/* Dropdown for Concerns — future concern areas slot in here */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: none; cursor: pointer; padding: .4rem 0;
  font-size: var(--t-small); font-weight: 600; color: var(--plum-soft);
  display: inline-flex; align-items: center; gap: .35rem;
}
.nav-drop > button:hover { color: var(--plum); }
.nav-drop > button svg { transition: transform .3s var(--ease); }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 250px; padding: var(--s-3);
  background: var(--pearl); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.nav-drop[data-open="true"] .nav-drop-panel { opacity: 1; visibility: visible; transform: translateX(-50%); }
.nav-drop-panel a, .nav-drop-panel span {
  display: block; padding: .6rem .75rem; border-radius: var(--r-sm);
  font-size: var(--t-small); text-decoration: none; color: var(--plum);
}
.nav-drop-panel a:hover { background: var(--ivory-deep); }
.nav-drop-panel .soon {
  color: var(--plum-mute); display: flex; justify-content: space-between;
  align-items: center; gap: var(--s-4); cursor: default;
}
.nav-drop-panel .soon em {
  font-style: normal; font-size: var(--t-micro); letter-spacing: .1em;
  text-transform: uppercase; color: var(--plum-mute); opacity: .75;
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--plum); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line);
  background: var(--ivory); padding: var(--s-4) 0 var(--s-6);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav a {
  display: block; padding: .85rem var(--gutter);
  font-size: 1.05rem; color: var(--plum); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .sub a { padding-left: calc(var(--gutter) + 1.1rem); font-size: var(--t-small); color: var(--plum-soft); }
.mobile-nav .sub span {
  display: block; padding: .85rem var(--gutter) .85rem calc(var(--gutter) + 1.1rem);
  font-size: var(--t-small); color: var(--plum-mute);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { margin: var(--s-5) var(--gutter) 0; display: flex; }

@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--nacre-hero);
  padding-block: clamp(3.5rem, 2rem + 8vw, 8.5rem) clamp(4rem, 2rem + 8vw, 8rem);
}
/* Soft floating light — the "ray of light" half of the name */
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 62vw; height: 62vw; max-width: 780px; max-height: 780px;
  top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 66%);
  filter: blur(28px);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: var(--t-hero);
  line-height: var(--lh-tight);
  letter-spacing: -.028em;
  max-width: 16ch;
}
.hero--center h1 { margin-inline: auto; }
.hero-sub { margin-top: var(--s-6); max-width: 60ch; }
.hero--center .hero-sub { margin-inline: auto; }
.hero .btn-row { margin-top: var(--s-7); }

/* The plain "what it is" line under the emotional copy */
.hero-plain {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  max-width: 54ch;
  font-size: var(--t-small);
  color: var(--plum-soft);
  font-weight: 600;
}
.hero--center .hero-plain { margin-inline: auto; }

/* The brand-level "bigger than hair" passage, set apart from the rest */
.hero-belief {
  margin-top: var(--s-7);
  padding: var(--s-6);
  max-width: 62ch;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero--center .hero-belief { margin-inline: auto; }
.hero-belief p { color: var(--plum-soft); }
.hero-belief .statement { margin-top: var(--s-4); }

/* Page hero (interior pages) — lighter weight than the home hero */
.page-hero {
  padding-block: clamp(3.5rem, 2rem + 5vw, 6.5rem) clamp(3rem, 1.5rem + 4vw, 5.5rem);
  position: relative; overflow: hidden;
}
/* The nacre sits in a layer that fades out at the bottom, so the header
   melts into the page rather than ending on a visible edge. */
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background: var(--nacre-hero);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 46%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 46%, transparent 100%);
  pointer-events: none;
}
.page-hero > .wrap { position: relative; z-index: 2; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-top: var(--s-5); max-width: 58ch; }

/* --------------------------------------------------------------------------
   5. THE INTERCONNECTED CYCLE — signature section.
   Root causes at the centre, symptoms radiating out on a ring.
   Desktop: true radial layout. Mobile: reflows to a readable stack.
   The markup is real text in the DOM (not SVG labels) so it stays
   selectable, translatable and screen-reader friendly.
   -------------------------------------------------------------------------- */
.cycle {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
  margin-top: var(--s-8);
}

/* --- mobile-first: stacked, no absolute positioning --- */
.cycle-hub {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: var(--s-2);
  padding: var(--s-6) var(--s-5);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 62%),
    var(--nacre-band);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
}
.cycle-hub-label {
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--plum-soft);
}
.cycle-hub ul { list-style: none; padding: 0; margin: var(--s-2) 0 0; }
.cycle-hub li {
  font-family: var(--font-display);
  font-size: clamp(1rem, .92rem + .4vw, 1.22rem);
  line-height: 1.34; color: var(--plum);
}
.cycle-hub li + li { margin-top: .3rem; }
.cycle-hub .pearl { --size: 22px; margin-bottom: var(--s-2); }

.cycle-nodes {
  list-style: none; padding: 0; margin: var(--s-5) 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
}
.cycle-node {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: var(--t-small); font-weight: 600; color: var(--plum-soft);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.cycle-node .dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--nacre-pearl);
  box-shadow: 0 0 6px rgba(247,226,206,.9);
}
/* PCOS in particular is where women are most often told nothing can be done. */
.cycle-node--seen {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(228,220,236,.42));
  border-color: rgba(228,220,236,.95);
}

.cycle-caption {
  margin-top: var(--s-5); text-align: center;
  font-size: var(--t-small); color: var(--plum-mute);
}

/* --- desktop: lay the nodes out on a ring around the hub --- */
@media (min-width: 860px) {
  .cycle {
    /* --ring is the single source of truth for the diagram's geometry:
       the guide circle and the node placement both derive from it. */
    --ring: 262px;
    aspect-ratio: 1 / 1; max-width: 620px; margin-top: var(--s-9);
  }

  /* the ring the symptoms sit on */
  .cycle::before {
    content: ""; position: absolute; z-index: 0;
    inset: calc(50% - var(--ring));
    border-radius: 50%;
    border: 1px dashed rgba(138,110,123,.26);
  }
  /* a soft nacre bloom behind everything */
  .cycle::after {
    content: ""; position: absolute; z-index: 0; inset: -6%;
    border-radius: 50%;
    background: var(--nacre-band);
    opacity: .3; filter: blur(38px);
    pointer-events: none;
  }

  .cycle-hub {
    position: absolute; z-index: 3;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 47%; aspect-ratio: 1/1;
    border-radius: 50%;
    padding: var(--s-5);
  }

  .cycle-nodes {
    display: block; margin: 0;
    position: absolute; inset: 0; z-index: 2;
  }
  /* Each node is rotated out to the ring, then counter-rotated so the
     text stays upright. --angle is set inline per node by the generator. */
  .cycle-node {
    position: absolute; top: 50%; left: 50%;
    width: max-content; max-width: 165px;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translate(0, calc(-1 * var(--ring)))
      rotate(calc(-1 * var(--angle)));
    transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  }
  .cycle-node:hover { box-shadow: var(--shadow-md); }
}

/* --------------------------------------------------------------------------
   6. CARDS & GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
.card--lift:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--plum-soft); }
.card-num {
  font-family: var(--font-display);
  font-size: 1.9rem; color: var(--cta); opacity: .5;
  line-height: 1; margin-bottom: var(--s-4); display: block;
}

/* --------------------------------------------------------------------------
   7. THE DUO — hero capsule + partner powder
   -------------------------------------------------------------------------- */
.duo { display: grid; gap: var(--s-6); grid-template-columns: 1fr; margin-top: var(--s-8); }
@media (min-width: 860px) { .duo { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }

.product {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6) var(--s-6);
  background: var(--pearl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* The hero capsule is the main character — it carries the stronger nacre. */
.product--hero {
  background:
    radial-gradient(120% 80% at 82% -8%, rgba(247,226,206,.9) 0%, rgba(247,226,206,0) 58%),
    radial-gradient(100% 70% at 6% 4%,  rgba(244,217,213,.75) 0%, rgba(244,217,213,0) 60%),
    radial-gradient(90% 80% at 96% 96%, rgba(233,217,176,.55) 0%, rgba(233,217,176,0) 62%),
    var(--pearl);
  border-color: rgba(255,255,255,.9);
}
.product--partner {
  background:
    radial-gradient(110% 75% at 84% -6%, rgba(228,220,236,.85) 0%, rgba(228,220,236,0) 58%),
    radial-gradient(95% 70% at 8% 6%,   rgba(217,231,222,.72) 0%, rgba(217,231,222,0) 60%),
    var(--pearl);
  border-color: rgba(255,255,255,.9);
}

.product-role {
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--plum-mute);
  display: flex; align-items: center; gap: .5rem; margin-bottom: var(--s-4);
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.3rem + 1.9vw, 2.5rem);
  line-height: 1.1; letter-spacing: -.02em;
}
.product-form {
  font-size: var(--t-small); color: var(--plum-mute);
  margin-top: .35rem; letter-spacing: .04em;
}
.product-desc { margin-top: var(--s-5); color: var(--plum-soft); }
.product-list { list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.product-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .55rem 0; font-size: var(--t-small); color: var(--plum-soft);
  border-top: 1px solid var(--line-soft);
}
.product-list li .pearl { --size: 9px; margin-top: .45rem; }
.product-foot { margin-top: auto; padding-top: var(--s-6); }

/* the "and together" connector between the two products */
.duo-together {
  margin-top: var(--s-6); padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  text-align: center;
}
.duo-together .statement { max-width: 46ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   8. INGREDIENTS
   -------------------------------------------------------------------------- */
.ingredient {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--pearl);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow .45s var(--ease);
}
.ingredient:hover { box-shadow: var(--shadow-md); }
.ingredient-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap;
}
.ingredient h3 { margin: 0; }
.ingredient-latin { font-size: var(--t-micro); color: var(--plum-mute); font-style: italic; letter-spacing: .02em; }

/* Dose line — shown or hidden per ingredient from content/ingredients.json.
   Hiding it must never break the layout, so it is its own block. */
.ingredient-dose {
  margin-top: var(--s-4);
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .85rem;
  border-radius: var(--r-pill);
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .05em;
  color: var(--plum-soft);
  width: max-content; max-width: 100%;
}

.ingredient-why { margin-top: var(--s-5); }
.ingredient-why dt, .ingredient-research dt {
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--plum-mute); margin-bottom: .45rem;
}
.ingredient-why dd { margin: 0; color: var(--plum-soft); }
.ingredient-research { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--line-soft); }
.ingredient-research dd { margin: 0; }
.ingredient-research a { font-size: var(--t-small); font-weight: 600; display: inline-flex; gap: .4rem; align-items: baseline; }
.ingredient-research .cite { display: block; font-size: var(--t-micro); color: var(--plum-mute); margin-top: .4rem; line-height: 1.5; }

/* An honest note where the evidence is thinner than the marketing usually is */
.ingredient-note {
  margin-top: var(--s-4); padding: var(--s-4);
  background: var(--ivory-deep); border-radius: var(--r-sm);
  border-left: 2px solid var(--gold);
  font-size: var(--t-micro); color: var(--plum-soft); line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. THE LEDGER — what it costs to do this yourself, beside what we charge.
   Two figures and a line. No itemised basket: priced row by row it read as
   though the ingredients were things you could buy from us separately.
   -------------------------------------------------------------------------- */
.ledger {
  margin-top: var(--s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  text-align: center;
}
@media (min-width: 820px) {
  .ledger { grid-template-columns: 1fr auto 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); }
}

.ledger-side { padding: var(--s-5) var(--s-4); }

.ledger-label {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--plum-mute);
  margin-bottom: var(--s-4);
}
.ledger-figure {
  font-family: var(--font-display);
  /* sized so a range like "€360 – €400+" stays on one line in its column */
  font-size: clamp(1.85rem, 1rem + 3.1vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--plum-soft);
  white-space: nowrap;
}
/* ours is a single figure, so it can be larger */
.ledger-side--ours .ledger-figure { font-size: clamp(2.4rem, 1.3rem + 4.2vw, 4.2rem); }
.ledger-note {
  margin-top: var(--s-4);
  font-size: var(--t-small);
  color: var(--plum-soft);
  max-width: 34ch;
  margin-inline: auto;
}

/* ours carries the light */
.ledger-side--ours .ledger-label { color: var(--plum); }
.ledger-side--ours .ledger-figure {
  color: var(--plum);
  text-shadow: 0 0 40px rgba(246,218,211,.9);
}

.ledger-divider {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ledger-divider .pearl { --size: 20px; }
.ledger-divider::before, .ledger-divider::after {
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(138,110,123,.34), transparent);
}
@media (max-width: 819px) {
  .ledger-divider::before, .ledger-divider::after { height: 0; }
  .ledger-divider { padding-block: var(--s-2); }
}
@media (min-width: 820px) {
  .ledger-divider::before { top: -110px; height: 100px; }
  .ledger-divider::after  { bottom: -110px; height: 100px; }
}

.ledger-line {
  margin-top: var(--s-7);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.85rem);
  line-height: 1.34;
  color: var(--plum);
  max-width: 30ch;
  margin-inline: auto;
}
.ledger-foot {
  margin-top: var(--s-6);
  text-align: center;
  font-size: var(--t-micro);
  line-height: 1.65;
  color: var(--plum-mute);
  max-width: 62ch;
  margin-inline: auto;
}

/* the dose badge is gone from the ingredient cards — the amount alone
   says what it needs to say */

/* --------------------------------------------------------------------------
   10. TIMELINE — the honest results promise
   -------------------------------------------------------------------------- */
.timeline { margin-top: var(--s-8); display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.tl-step { position: relative; padding: var(--s-6); }
@media (min-width: 860px) {
  .tl-step { padding: var(--s-7) var(--s-5) var(--s-6); }
  .tl-step + .tl-step { border-left: 1px solid var(--line); }
}
.tl-step { background: var(--pearl); border: 1px solid var(--line); border-radius: var(--r-lg); }
@media (min-width: 860px) {
  .timeline { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--pearl); }
  .tl-step { border: none; border-radius: 0; }
  .tl-step + .tl-step { border-left: 1px solid var(--line); }
}
/* the growing pearl: each stage's marker glows a little more than the last */
.tl-marker { display: flex; align-items: center; gap: .6rem; margin-bottom: var(--s-4); }
.tl-step:nth-child(1) .pearl { --size: 12px; }
.tl-step:nth-child(2) .pearl { --size: 17px; }
.tl-step:nth-child(3) .pearl { --size: 23px; }
.tl-when {
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--plum-mute);
}
.tl-step h3 { margin-bottom: var(--s-3); }
.tl-step p { color: var(--plum-soft); font-size: var(--t-small); }

.honesty-note {
  margin-top: var(--s-6); padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--ivory-deep); border: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   11. MEMBERSHIP PLANS
   -------------------------------------------------------------------------- */
.plans { display: grid; gap: var(--s-5); grid-template-columns: 1fr; margin-top: var(--s-8); align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--pearl); padding: var(--s-6);
  display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border-color: rgba(255,255,255,.9);
  background:
    radial-gradient(110% 60% at 80% 0%, rgba(247,226,206,.7) 0%, rgba(247,226,206,0) 62%),
    radial-gradient(90% 60% at 6% 8%, rgba(244,217,213,.55) 0%, rgba(244,217,213,0) 60%),
    var(--pearl);
  box-shadow: var(--shadow-lg);
}
/* The single unit is deliberately kept quiet — it is not the way in. */
.plan--quiet { background: transparent; box-shadow: none; border-style: dashed; }
.plan--quiet .plan-price { font-size: var(--t-h3); color: var(--plum-soft); }

.plan-badge {
  align-self: flex-start;
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .32rem .8rem; border-radius: var(--r-pill);
  background: var(--plum); color: var(--ivory);
  margin-bottom: var(--s-4);
}
.plan h3 { margin-bottom: var(--s-2); }
.plan-price { font-family: var(--font-display); font-size: clamp(1.9rem,1.4rem + 1.8vw,2.6rem); line-height: 1.1; margin-top: var(--s-4); }
.plan-price small { font-family: var(--font-body); font-size: var(--t-small); font-weight: 600; color: var(--plum-mute); }
.plan-sub { font-size: var(--t-small); color: var(--plum-soft); margin-top: var(--s-2); }
.plan ul { list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.plan li { display: flex; gap: .65rem; font-size: var(--t-small); color: var(--plum-soft); padding: .5rem 0; border-top: 1px solid var(--line-soft); }
.plan li .pearl { --size: 8px; margin-top: .5rem; }
.plan .btn { margin-top: var(--s-6); width: 100%; }
.plan-foot { margin-top: auto; }

/* EU disclosure block — commitment, price and cancellation stated plainly */
.eu-terms {
  margin-top: var(--s-6); padding: var(--s-5) var(--s-6);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--ivory-deep);
  font-size: var(--t-small); color: var(--plum-soft);
}
.eu-terms h4 { font-family: var(--font-body); font-size: var(--t-micro); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--plum-mute); margin-bottom: var(--s-3); }
.eu-terms ul { margin: 0; padding-left: 1.1rem; }
.eu-terms li + li { margin-top: .4rem; }

/* --------------------------------------------------------------------------
   12. LEARN HUB
   -------------------------------------------------------------------------- */
.article-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--pearl); padding: var(--s-6);
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.article-card h3 { margin: var(--s-3) 0; }
.article-card p { color: var(--plum-soft); font-size: var(--t-small); }
.article-meta { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; margin-top: auto; padding-top: var(--s-5); }

.tag {
  font-size: var(--t-micro); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: var(--r-pill);
  background: var(--ivory-deep); color: var(--plum-mute); border: 1px solid var(--line);
}
.tag--members { background: var(--lilac); color: var(--plum); border-color: transparent; }
.tag--open { background: var(--mint); color: var(--plum); border-color: transparent; }

/* Long-form article body */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: var(--s-8); margin-bottom: var(--s-4); }
.prose h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); }
.prose p, .prose ul, .prose ol { color: var(--plum-soft); }
.prose ul, .prose ol { margin-top: var(--s-4); padding-left: 1.3rem; }
.prose li + li { margin-top: .5rem; }
.prose blockquote {
  margin: var(--s-6) 0; padding: var(--s-5) var(--s-6);
  border-left: 2px solid var(--blush);
  background: var(--ivory-deep); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.prose blockquote p { font-family: var(--font-display); font-size: var(--t-lead); color: var(--plum); }
.prose hr { border: none; height: 1px; background: var(--line); margin: var(--s-8) 0; }

/* The "please see a doctor" call-out. Deliberately impossible to miss. */
.medical-callout {
  margin: var(--s-7) 0;
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background:
    radial-gradient(100% 80% at 90% 0%, rgba(217,231,222,.6) 0%, rgba(217,231,222,0) 62%),
    var(--pearl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.medical-callout h3 { font-size: var(--t-h3); margin-bottom: var(--s-3); display: flex; align-items: center; gap: .6rem; }
.medical-callout p { color: var(--plum-soft); font-size: var(--t-small); }

/* --------------------------------------------------------------------------
   13. STORY (founder page)
   -------------------------------------------------------------------------- */
.story-body { max-width: 64ch; margin-inline: auto; }
.story-body p { font-size: var(--t-lead); line-height: 1.72; color: var(--plum-soft); }
.story-body p + p { margin-top: var(--s-5); }
.story-body .statement { margin-block: var(--s-7); color: var(--plum); }
.story-sign {
  margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: var(--s-4);
}
.story-sign .name { font-family: var(--font-display); font-size: var(--t-h3); }
.story-sign .role { font-size: var(--t-small); color: var(--plum-mute); }

/* Homepage founder teaser */
.teaser {
  display: grid; gap: var(--s-6); align-items: center;
  grid-template-columns: 1fr;
  padding: var(--s-7);
  border-radius: var(--r-xl);
  background:
    radial-gradient(90% 120% at 4% 0%, rgba(244,217,213,.6) 0%, rgba(244,217,213,0) 60%),
    radial-gradient(80% 100% at 96% 100%, rgba(228,220,236,.55) 0%, rgba(228,220,236,0) 62%),
    var(--pearl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 860px) { .teaser { grid-template-columns: 1fr 1.15fr; gap: var(--s-8); padding: var(--s-8); } }
.teaser blockquote p { font-family: var(--font-display); font-size: clamp(1.3rem,1.05rem + 1.1vw,1.85rem); line-height: 1.36; color: var(--plum); }
.teaser cite { display: block; margin-top: var(--s-5); font-style: normal; font-size: var(--t-small); color: var(--plum-mute); }

/* --------------------------------------------------------------------------
   14. FAQ (native details/summary — accessible with zero JS)
   -------------------------------------------------------------------------- */
.faq { margin-top: var(--s-7); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-5);
  padding: var(--s-5) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: var(--t-h3); color: var(--plum);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 13px; height: 13px; margin-top: .45rem;
  border-right: 1.5px solid var(--cta); border-bottom: 1.5px solid var(--cta);
  transform: rotate(45deg); transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--cta); }
.faq-answer { padding-bottom: var(--s-6); max-width: var(--measure); }
.faq-answer p { color: var(--plum-soft); }

/* --------------------------------------------------------------------------
   15. TRUST BADGES (placeholders until the manufacturer confirms)
   -------------------------------------------------------------------------- */
.badges { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-4); margin-top: var(--s-7); }
@media (min-width: 760px) { .badges { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) { .badges { grid-template-columns: repeat(5,1fr); } }
.badge {
  text-align: center; padding: var(--s-5) var(--s-3);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--pearl);
}
.badge .pearl { --size: 18px; margin: 0 auto var(--s-3); }
.badge .t { font-size: var(--t-micro); font-weight: 700; letter-spacing: .04em; line-height: 1.45; }
.badge .s { font-size: var(--t-micro); color: var(--plum-mute); margin-top: .3rem; display: block; }
.badge[data-status="pending"] { opacity: .72; border-style: dashed; }

/* --------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  padding-block: clamp(4rem, 2rem + 6vw, 7.5rem);
  text-align: center;
}
/* the band's colour lives in a masked layer, so it has no hard top or
   bottom edge and simply blooms out of the page */
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 100% at 50% 40%, rgba(255,255,255,.72) 0%, rgba(255,255,255,0) 70%),
    var(--nacre-band);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 74%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 74%, transparent 100%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lead { margin-top: var(--s-5); max-width: 52ch; margin-inline: auto; color: var(--plum-soft); }

/* --------------------------------------------------------------------------
   17. DISCLAIMER + FOOTER
   -------------------------------------------------------------------------- */
.disclaimer {
  padding: var(--s-6); border-radius: var(--r-lg);
  background: var(--ivory-deep); border: 1px solid var(--line);
  font-size: var(--t-small); color: var(--plum-soft);
  display: flex; gap: var(--s-4); align-items: flex-start;
}
.disclaimer .pearl { --size: 14px; margin-top: .4rem; }

.site-footer { background: var(--plum); color: rgba(251,247,243,.78); padding-block: var(--s-8) var(--s-6); margin-top: 0; }
.site-footer a { color: rgba(251,247,243,.78); text-decoration: none; }
.site-footer a:hover { color: var(--pearl); text-decoration: underline; text-underline-offset: .25em; }
.footer-top { display: grid; gap: var(--s-7); grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); } }
.footer-brand .brand { color: var(--ivory); font-size: 1.5rem; }
.footer-tagline { margin-top: var(--s-4); font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: rgba(251,247,243,.82); }
.footer-brand p { margin-top: var(--s-4); font-size: var(--t-small); max-width: 34ch; color: rgba(251,247,243,.72); }
.footer-col h4 {
  font-family: var(--font-body); font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(251,247,243,.62);
  margin-bottom: var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: .6rem; }
.footer-col a, .footer-col span { font-size: var(--t-small); }
.footer-col .soon { color: rgba(251,247,243,.62); }

.footer-legal {
  margin-top: var(--s-8); padding-top: var(--s-6);
  border-top: 1px solid rgba(251,247,243,.14);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-5);
  justify-content: space-between; align-items: center;
  font-size: var(--t-micro); color: rgba(251,247,243,.62);
}
.footer-disclaimer {
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid rgba(251,247,243,.14);
  font-size: var(--t-micro); line-height: 1.65; color: rgba(251,247,243,.62);
  max-width: 88ch;
}

/* --------------------------------------------------------------------------
   18. BUILD-TIME FLAGS — visible only while a decision is still open.
   Set "show_open_decisions": false in content/site.json before launch.
   -------------------------------------------------------------------------- */
.tbd {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .18rem .55rem; border-radius: var(--r-sm);
  background: repeating-linear-gradient(45deg, rgba(233,217,176,.5) 0 6px, rgba(233,217,176,.25) 6px 12px);
  border: 1px dashed rgba(138,110,123,.45);
  color: var(--plum-soft);
  vertical-align: middle;
}

/* ==========================================================================
   20. EMAIL CAPTURE — the launch list
   ========================================================================== */
.signup {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 1.2rem + 3.4vw, 3.75rem);
  background:
    radial-gradient(110% 90% at 8% 0%,   rgba(246,218,211,.85) 0%, rgba(246,218,211,0) 60%),
    radial-gradient(100% 80% at 92% 4%,  rgba(240,201,196,.62) 0%, rgba(240,201,196,0) 62%),
    radial-gradient(120% 90% at 62% 104%,rgba(246,220,194,.70) 0%, rgba(246,220,194,0) 64%),
    var(--pearl);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.signup-inner { position: relative; z-index: 2; max-width: 620px; }
.signup.center .signup-inner { margin-inline: auto; text-align: center; }
.signup h2 { margin-bottom: var(--s-4); }
.signup .lead { color: var(--plum-soft); }

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.signup.center .signup-form { justify-content: center; }
.signup-field {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .28rem .35rem .28rem 1.15rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.signup-field:focus-within { border-color: var(--cta); box-shadow: 0 0 0 3px rgba(128,102,114,.14); }
.signup-field input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  padding: .75rem 0;
  font-size: var(--t-small);
  color: var(--plum);
}
.signup-field input::placeholder { color: var(--plum-mute); }
.signup-field input:focus { outline: none; }
.signup-form .btn { flex: 0 0 auto; }

.signup-note {
  margin-top: var(--s-5);
  font-size: var(--t-micro);
  /* plum-soft, not plum-mute: this card's pink ground is darker than pearl
     and mute does not clear 4.5:1 against it */
  color: var(--plum-soft);
  line-height: 1.6;
}
.signup-status {
  margin-top: var(--s-4);
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--cta-deep);          /* clears 4.5:1 on the pink card ground */
  min-height: 1.4em;
}
.signup-status[data-state="error"] { color: #8A3F3D; }

/* "Coming soon" marker, used wherever a buy button would otherwise be */
.soon-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .34rem .9rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--plum-soft);
}
.soon-pill .pearl { --size: 9px; }
.hero .soon-pill, .page-hero .soon-pill { margin-bottom: var(--s-5); }

/* ==========================================================================
   21. ACCOUNT — built around cancelling quickly, not around retention
   ========================================================================== */
.account-grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; margin-top: var(--s-7); }
@media (min-width: 820px) { .account-grid { grid-template-columns: repeat(2, 1fr); } }

.account-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--pearl);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.account-card h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: var(--s-3); }
.account-card p { color: var(--plum-soft); font-size: var(--t-small); }
.account-card .btn { margin-top: var(--s-5); align-self: flex-start; }

/* The cancel card is deliberately as prominent as every other action. */
.account-card--cancel {
  background:
    radial-gradient(100% 80% at 92% 0%, rgba(246,218,211,.55) 0%, rgba(246,218,211,0) 62%),
    var(--pearl);
  border-color: rgba(240,201,196,.9);
}

.account-steps { counter-reset: step; list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.account-steps li {
  counter-increment: step;
  display: flex; gap: var(--s-4); align-items: flex-start;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--t-small); color: var(--plum-soft);
}
.account-steps li::before {
  content: counter(step);
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--nacre-pearl);
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--plum);
  box-shadow: 0 1px 4px rgba(138,110,123,.2);
}

.promise {
  margin-top: var(--s-6);
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--ivory-deep);
  border: 1px solid var(--line);
}
.promise ul { list-style: none; padding: 0; margin: var(--s-4) 0 0; }
.promise li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .5rem 0;
  font-size: var(--t-small); color: var(--plum-soft);
}
.promise li .pearl { --size: 9px; margin-top: .45rem; }

/* ==========================================================================
   22. MEMBER-ONLY CONTENT — depth, not personalisation
   ========================================================================== */
.member-gate {
  margin-top: var(--s-7);
  padding: var(--s-7);
  border-radius: var(--r-lg);
  text-align: center;
  background:
    radial-gradient(100% 90% at 50% 0%, rgba(228,220,236,.62) 0%, rgba(228,220,236,0) 66%),
    var(--pearl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.member-gate .pearl { --size: 24px; margin: 0 auto var(--s-4); }
.member-gate h3 { margin-bottom: var(--s-3); }
.member-gate p { color: var(--plum-soft); max-width: 52ch; margin-inline: auto; }
.member-gate .btn-row { margin-top: var(--s-6); justify-content: center; }

/* ==========================================================================
   23. THE IMAGE HERO — sunlit water as the ray of light, the name over it.
   ========================================================================== */
.hero-img {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding-block: var(--s-9) var(--s-8);
  background: var(--cloud-veil);
}

.hero-img-media {
  position: absolute; inset: 0; z-index: 0;
}
/* <picture> is inline by default, so the img inside it has no height to
   resolve 100% against and the photo stops short of the section. */
.hero-img-media picture { display: block; width: 100%; height: 100%; }
.hero-img-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  /* the photo is cool silver; warm it a touch toward the brand's pearls */
  filter: saturate(.82) sepia(.10) brightness(1.03);
}

/* A pearl veil over the water: bright enough at the centre for the wordmark
   to sit on, open enough at the edges to let the sparkle stay visible. */
.hero-img-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 46% at 50% 46%, rgba(255,255,255,.86) 0%, rgba(255,255,255,.34) 52%, rgba(255,255,255,0) 78%),
    radial-gradient(120% 70% at 50% 108%, rgba(251,232,224,.92) 0%, rgba(251,232,224,0) 62%),
    radial-gradient(100% 60% at 50% -8%, rgba(251,232,224,.78) 0%, rgba(251,232,224,0) 58%),
    linear-gradient(180deg, rgba(246,218,211,.30) 0%, rgba(255,255,255,.10) 40%, rgba(246,220,194,.34) 100%);
}
/* the very bottom melts into the page below it, so there is no hard seam */
.hero-img::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(251,247,243,0) 0%, var(--ivory) 92%);
}

.hero-img-inner { position: relative; z-index: 2; width: 100%; }

.hero-img h1 { margin: 0; display: block; }

.wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 1.1rem + 9.4vw, 9rem);
  line-height: .96;
  letter-spacing: var(--track-wordmark);
  text-indent: var(--track-wordmark);   /* balances the trailing space */
  color: var(--plum);
  text-wrap: nowrap;
}
/* a whisper of light coming off the letters, as if lit by the water */
.wordmark { text-shadow: 0 1px 0 rgba(255,255,255,.85), 0 0 34px rgba(255,255,255,.6); }

.wordmark-line {
  display: block;
  margin-top: clamp(1.1rem, .6rem + 1.5vw, 2rem);
  font-family: var(--font-body);
  font-size: clamp(.86rem, .78rem + .4vw, 1.06rem);
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--plum-soft);
  text-wrap: balance;
}

.hero-img .soon-pill {
  margin: 0 auto clamp(1.5rem, 1rem + 2vw, 2.75rem);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(6px);
}
.hero-img .btn-row { margin-top: clamp(2rem, 1.2rem + 2.6vw, 3.25rem); justify-content: center; }

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: clamp(1.25rem, .8rem + 1.4vw, 2.25rem);
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: .55rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--plum-mute);
  text-decoration: none;
}
.scroll-cue:hover { color: var(--plum); }
.scroll-cue span.line {
  display: block; width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(138,110,123,.5), transparent);
  animation: cueDrift 3.4s var(--ease) infinite;
}
@keyframes cueDrift {
  0%, 100% { transform: scaleY(.5); transform-origin: top; opacity: .45; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue span.line { animation: none; } }

/* ==========================================================================
   24. PRODUCT PHOTOGRAPHY
   ========================================================================== */

/* The full-bleed editorial plate: the duo on silk, text beside it. */
.plate {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--s-7);
}
@media (min-width: 900px) {
  .plate { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 1rem + 5vw, 5.5rem); }
  .plate--flip .plate-media { order: 2; }
}

.plate-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cloud-veil);
}
.plate-media img { width: 100%; height: auto; display: block; }
/* a pearl sheen drawn across the photograph, like light off nacre */
.plate-media::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(112deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,.30) 46%,
    rgba(246,218,211,.16) 56%,
    rgba(255,255,255,0) 72%);
  mix-blend-mode: soft-light;
}
/* a soft halo bleeding out from behind the image */
.plate-media::before {
  content: "";
  position: absolute; inset: -14%;
  z-index: -1;
  background: radial-gradient(circle, rgba(246,218,211,.7) 0%, rgba(246,218,211,0) 66%);
  filter: blur(40px);
}

.plate-body .eyebrow { margin-bottom: var(--s-4); }
.plate-body h2 { margin-bottom: var(--s-5); }
.plate-list { list-style: none; padding: 0; margin: var(--s-6) 0 0; }
.plate-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-top: 1px solid var(--line-soft);
  font-size: var(--t-small); color: var(--plum-soft);
}
.plate-list li .pearl { --size: 9px; margin-top: .5rem; }
.plate-body .btn-row { margin-top: var(--s-6); }

/* The wide product band — image full width, floating on its own light. */
.showcase {
  position: relative;
  padding-block: clamp(3rem, 1.5rem + 6vw, 7rem);
  overflow: hidden;
  text-align: center;
}
.showcase-figure { position: relative; margin: 0; }
.showcase-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.showcase-figure::before {
  content: "";
  position: absolute; inset: -8% -4%;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(246,220,194,.75) 0%, rgba(246,220,194,0) 68%),
    radial-gradient(80% 60% at 20% 80%, rgba(246,218,211,.6) 0%, rgba(246,218,211,0) 66%);
  filter: blur(48px);
}
.showcase figcaption {
  margin-top: var(--s-5);
  font-size: var(--t-micro);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plum-mute);
}

/* ==========================================================================
   25. CLOUDSCAPE — cloud used as atmosphere rather than as a picture.
   A soft, powdery layer behind the closing words: no frame, no edges, just
   light gathering behind the type. Decorative, so it carries no alt text.
   ========================================================================== */
.cta-band--cloud .cloudscape {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-band--cloud .cloudscape img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: .42;
  filter: saturate(.72) brightness(1.06);
  -webkit-mask-image:
    radial-gradient(70% 62% at 50% 50%, #000 8%, rgba(0,0,0,.35) 58%, transparent 88%);
          mask-image:
    radial-gradient(70% 62% at 50% 50%, #000 8%, rgba(0,0,0,.35) 58%, transparent 88%);
}
/* a pearl wash over the cloud so the words always sit on light */
.cta-band--cloud .cloudscape::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 46% at 50% 50%, rgba(255,255,255,.86) 0%, rgba(255,255,255,.28) 62%, rgba(255,255,255,0) 84%),
    linear-gradient(180deg, var(--ivory) 0%, rgba(251,247,243,0) 22%, rgba(251,247,243,0) 78%, var(--ivory) 100%);
}

/* The front-page film, layered over the still it replaces. Same framing and
   the same warming filter, so the swap is invisible when it fades in. */
.hero-img-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.82) sepia(.10) brightness(1.03);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero-img-video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-img-video { display: none; } }
/* On a phone the framing is portrait, so hold the same crop as the still. */
@media (max-width: 700px) { .hero-img-video { object-position: center 46%; } }

/* ==========================================================================
   26. PULL QUOTE — the lines that must not be missed.
   Full-width, large, and sitting in its own pool of light. Used sparingly:
   two on the front page. If it appears more often than that it stops
   catching the eye, which is the only thing it is for.
   ========================================================================== */
.pullquote {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 6vw, 7.5rem);
  text-align: center;
  overflow: hidden;
}
/* the pool of light behind it */
.pullquote::before {
  content: "";
  position: absolute; inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(52% 58% at 50% 50%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.45) 46%, rgba(255,255,255,0) 76%),
    radial-gradient(70% 60% at 22% 40%, rgba(246,218,211,.72) 0%, rgba(246,218,211,0) 68%),
    radial-gradient(66% 58% at 80% 62%, rgba(246,220,194,.62) 0%, rgba(246,220,194,0) 66%);
  filter: blur(26px);
  pointer-events: none;
}
.pullquote > .wrap { position: relative; z-index: 2; }

.pullquote-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--plum-mute);
  margin-bottom: var(--s-5);
}

/* A larger kicker, for the moment where the label carries as much weight as
   the line under it. Sized to read as a heading rather than a caption. */
.pullquote--billboard .pullquote-kicker {
  font-size: clamp(.92rem, .78rem + .55vw, 1.35rem);
  font-weight: 600;
  letter-spacing: .17em;
  color: var(--plum-soft);
  margin-bottom: var(--s-6);
  gap: .8rem;
}
.pullquote--billboard .pullquote-kicker .pearl { --size: 12px; }

/* the two terms themselves, given the whole line */
.pullquote--billboard .pullquote-line {
  font-size: clamp(2.1rem, 1.1rem + 4.6vw, 5.2rem);
  line-height: 1.06;
  max-width: 16ch;
}
.pullquote--billboard .pullquote-sub { margin-top: var(--s-6); max-width: 46ch; }

.pullquote-line {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.05rem + 2.9vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -.018em;
  color: var(--plum);
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.pullquote-line em {
  font-style: italic;
  /* the terms themselves carry the emphasis */
  color: var(--cta-deep);
}
.pullquote-line strong { font-weight: 500; }

.pullquote-sub {
  margin-top: var(--s-6);
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--plum-soft);
  max-width: 54ch;
  margin-inline: auto;
}

/* three short fronts, side by side under the line */
.pullquote-fronts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-8);
  text-align: left;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 860px) { .pullquote-fronts { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }

.pullquote-front {
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  position: relative;
}
.pullquote-front::before {
  content: "";
  position: absolute; top: -1px; left: 0; width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--cloud-rose), rgba(240,201,196,0));
}
.pullquote-front h3 {
  font-family: var(--font-body);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: var(--s-3);
}
.pullquote-front p { font-size: var(--t-small); color: var(--plum-soft); }
