/* ==========================================================================
   NODDIE NIGHT — home.css
   Homepage-only sections. Loaded AFTER site.css (tokens, base, buttons,
   header, footer, accordion, forms and utilities live there).

   Order: hero · fact strip · manifesto · film · ritual · ingredients ·
   fact grid · permission · FAQ layout · COMMERCE (shop, buy bars, order
   confirmation) · CONTENT (trust row, herb cards, comparison, expectations,
   reviews + review dialog, founder note, guarantee, reveal-on-scroll).
   ========================================================================== */


/* ==== HERO ============================================================== */
.hero {
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.hero-content {
    padding: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
    min-width: 0;
}
.hero-lede {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 34rem;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.75rem;
}
.hero-second {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.hero-price {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--muted);
}
.hero-price b { font-weight: 500; color: var(--navy); }
.hero-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.6rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.hero-rating b { font-weight: 500; }
.hero-rating-stars {
    color: var(--amber-ink);
    font-size: 1rem;
    letter-spacing: 0.12em;
}
.hero-rating a { position: relative; }
.hero-rating a::after { content: ""; position: absolute; inset: -12px -6px; }   /* 44px tap target without moving the text */
.hero-media {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
    background-color: var(--alt-bg);
}
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 42%;   /* keeps the bottle and the glass in frame at every hero shape */
}
/* ---- Hero overlays: talking clock chip, rotating promise seal, stone inscription ---- */
.hero-chip {
    position: absolute;
    top: clamp(14px, 2.4vw, 28px);
    left: clamp(14px, 2.4vw, 28px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 0.9rem 0.5rem 0.7rem;
    max-width: calc(100% - clamp(120px, 15vw, 190px));
    border-radius: 999px;
    background: rgba(247, 244, 236, 0.92);
    color: var(--navy);
    font-size: clamp(0.78rem, 1vw, 0.92rem);
    line-height: 1.25;
    box-shadow: 0 6px 24px rgba(8, 14, 30, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero-chip svg { flex: none; color: var(--amber-ink); }
.hero-chip b { font-weight: 500; }

.hero-seal {
    position: absolute;
    top: clamp(14px, 2.4vw, 28px);
    right: clamp(14px, 2.4vw, 28px);
    z-index: 2;
    width: clamp(92px, 11.5vw, 156px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(8, 14, 30, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-seal:hover,
.hero-seal:focus-visible { transform: scale(1.06) rotate(-4deg); box-shadow: 0 14px 38px rgba(8, 14, 30, 0.55); }
.hero-seal svg { display: block; width: 100%; height: 100%; }
.hero-seal-spin { transform-origin: 100px 100px; animation: hero-seal-spin 26s linear infinite; }
.hero-seal:hover .hero-seal-spin { animation-play-state: paused; }
.hero-seal-ring {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    fill: var(--navy);
}
.hero-seal-core { fill: var(--navy); }
.hero-seal-try { font-family: var(--font-serif); font-size: 27px; fill: var(--ivory); }
.hero-seal-arrow { fill: none; stroke: var(--amber); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
@keyframes hero-seal-spin { to { transform: rotate(360deg); } }

.hero-inscription {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6.5%;
    z-index: 1;
    margin: 0;
    padding: 0 1rem;
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.7rem, 1.2vw, 1.1rem);
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(250, 236, 208, 0.94);                    /* warm ivory: reads as gilt lettering on the shaded stone */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 14px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    /* same exemption as the ticker: slow, decorative, and it pauses on hover */
    .hero-seal-spin { animation-duration: 60s !important; animation-iteration-count: infinite !important; }
}
@media (max-width: 768px) {
    .hero-chip { font-size: 0.74rem; padding: 0.4rem 0.75rem 0.4rem 0.55rem; max-width: calc(100% - 118px); }
    .hero-seal { width: 84px; }
    .hero-inscription { bottom: 5%; font-size: 0.6rem; letter-spacing: 0.26em; }
}

@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; min-height: 0; }
    .hero-content { border-right: none; border-bottom: 1px solid var(--border); padding: 2.75rem 1.25rem 2.5rem; }
    .hero-lede { font-size: 1.125rem; margin-bottom: 1.5rem; }
    .hero-media { min-height: 0; aspect-ratio: 4 / 3; }
}
@media (max-width: 400px) {
    .hero .headline-huge { font-size: 2.6rem; }
}

/* ==== FACT STRIP (marquee) ============================================== */
/* News-ticker look: big display type, amber stars, one continuous line. */
.fact-strip {
    background: var(--navy);
    color: var(--ivory);
    padding: clamp(1.1rem, 2.4vw, 1.9rem) 0;
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3.6vw, 3rem);
    font-weight: 400;              /* DM Serif Display has one weight; it already reads bold */
    line-height: 1.15;
    letter-spacing: -0.005em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* soft fade where the line enters, so words do not pop in at the edge */
.fact-strip::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: clamp(24px, 6vw, 96px);
    background: linear-gradient(90deg, var(--navy), rgba(23, 43, 80, 0));
    z-index: 1;
    pointer-events: none;
}
.fact-strip-inner {
    display: inline-flex;
    animation: marquee 42s linear infinite;
    will-change: transform;
}
.fact-strip-inner > div {
    display: flex;
    align-items: center;
}
.fact-strip-inner span {
    margin: 0 clamp(1rem, 2.6vw, 2.25rem);
    color: var(--amber);
    font-family: var(--font-sans);
    font-size: 0.62em;
    font-variant-emoji: text;
    transform: translateY(-0.06em);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Pause control (WCAG 2.2.2): hover, or the pause button (main.js adds .is-paused) */
.fact-strip:hover .fact-strip-inner,
.fact-strip.is-paused .fact-strip-inner {
    animation-play-state: paused;
}
.fact-pause {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 64px;
    padding: 0 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(90deg, rgba(23, 43, 80, 0), var(--navy) 40%);
    color: var(--ivory);
    cursor: pointer;
}
.fact-pause:hover { color: var(--amber); }
.fact-pause svg { width: 20px; height: 20px; }
.fact-pause .ico-play { display: none; }
.fact-strip.is-paused .fact-pause .ico-play { display: block; }
.fact-strip.is-paused .fact-pause .ico-pause { display: none; }
.fact-pause:focus-visible { outline-offset: -4px; }
/* Reduced motion: the owner wants the ticker moving for everyone, so it keeps moving
   but at under half the speed, and the pause button stays available (WCAG 2.2.2). */
@media (prefers-reduced-motion: reduce) {
    /* site.css stops every animation for reduced-motion visitors with !important.
       The ticker is exempt on the owner's instruction: it must out-rank that rule,
       so these need !important too (a class beats the universal selector). */
    .fact-strip-inner {
        animation-duration: 60s !important;
        animation-iteration-count: infinite !important;
    }
}
@media (max-width: 600px) {
    .fact-strip-inner { animation-duration: 30s; }
    .fact-pause { width: 52px; }
}

/* ==== MANIFESTO ========================================================= */
.manifesto {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.manifesto p {
    font-size: 1.25rem;
    margin-top: 2rem;
}
.manifesto .manifesto-more { font-size: 1rem; margin-top: 1.75rem; }
.manifesto-more a { position: relative; }
.manifesto-more a::after { content: ""; position: absolute; inset: -12px -6px; }   /* 44px tap target without moving the text */
@media (max-width: 600px) {
    .manifesto p { font-size: 1.125rem; margin-top: 1.5rem; }
}

/* ==== FILM (click-to-load facade; main.js swaps in the player) =========== */
.film-section {
    padding: 0 0 clamp(2rem, 5vw, 3.5rem);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
}
.film-header {
    padding: clamp(3rem, 7vw, 4rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.film-frame {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--navy);
}
@supports not (aspect-ratio: 16 / 9) {
    .film-frame { height: 0; padding-bottom: 56.25%; }
}
.film-poster,
.film-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.film-poster { object-fit: cover; }
.film-play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border: 0;
    background: linear-gradient(rgba(15, 31, 61, 0.05), rgba(15, 31, 61, 0.45));
    color: var(--ivory);
    font-family: var(--font-sans);
    cursor: pointer;
}
.film-play:focus-visible { outline: 3px solid var(--amber); outline-offset: -8px; }
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(23, 43, 80, 0.85);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
.film-play:hover .play-btn,
.film-play:focus-visible .play-btn {
    transform: scale(1.08);
    background: var(--amber);
    color: var(--navy);        /* navy on amber 5.39:1 (ivory on amber was 2.39:1) */
}
.play-btn svg { width: 30px; height: 30px; fill: currentColor; margin-left: 5px; }
.film-play-label {
    padding: 0.35rem 0.9rem;
    background: rgba(15, 31, 61, 0.78);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.film-noscript {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    text-align: center;
    background: var(--ivory);
}
.film-noscript a { text-decoration: underline; text-underline-offset: 3px; }
.film-caption {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem clamp(1.25rem, 4vw, 2rem) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.35rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.film-caption a { position: relative; white-space: nowrap; }
.film-caption a::after { content: ""; position: absolute; inset: -13px -6px; }   /* 44px tap target without moving the text */
.film-note {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem clamp(1.25rem, 4vw, 2rem) 0;
    font-size: 0.8rem;
    color: var(--muted);
}
@media (max-width: 600px) {
    .film-caption { flex-direction: column; font-size: 0.78rem; }
    .play-btn { width: 64px; height: 64px; }
    .play-btn svg { width: 24px; height: 24px; margin-left: 4px; }
    .film-play { gap: 0.6rem; }
    .film-play-label { font-size: 0.72rem; }
}

/* ==== SHOP / BUY BOX ==================================================== */
/* Moved: the shop section, buy box, sticky bars and order confirmation are
   all under the "COMMERCE" banner further down this file. */

/* ==== RITUAL ============================================================ */
.ritual {
    border-bottom: 1px solid var(--border);
}
.ritual-media {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    background-color: var(--alt-bg);
    border-right: 1px solid var(--border);
}
.ritual-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ritual-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--ivory);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ritual-content {
    padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 4rem);
    min-width: 0;
}
.ritual-intro { font-size: 1.125rem; color: var(--muted); }
.ritual-steps {
    list-style: none;
    margin: 2.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.step {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}
.step-num {
    flex: none;
    font-family: var(--font-serif);
    color: var(--amber-ink);   /* amber as text fails on ivory (2.39:1); ink is 5.80:1 */
    font-size: 1.5rem;
}
.step-body { min-width: 0; }
.step-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.2;
}
.step-desc { margin-top: 0.4rem; color: var(--muted); }
.ritual-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .ritual-media { min-height: 0; aspect-ratio: 4 / 3; border-right: none; border-bottom: 1px solid var(--border); }
    .ritual-label { top: 1.25rem; left: 1.25rem; }
    .step { gap: 1rem; }
    .step-num, .step-text { font-size: 1.35rem; }
}

/* ==== INGREDIENTS ======================================================= */
.ingredients {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    max-width: 1100px;
    margin: 0 auto;
}
.ing-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.ing-header p { max-width: 40rem; margin: 0 auto; font-size: 1.125rem; }
.ing-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 30 / 13;
    object-fit: cover;
    object-position: 50% 60%;
    background-color: var(--alt-bg);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}
@media (max-width: 600px) {
    .ing-img { aspect-ratio: 4 / 3; }
}

/* ==== INGREDIENTS: FACT GRID ============================================ */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2rem, 5vw, 3rem);
}
.fact-tile {
    background: #fff;
    border: 1px solid var(--border);
    padding: 2.25rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.fact-icon {
    color: var(--amber-ink);
    margin-bottom: 1rem;
    line-height: 0;
}
.fact-icon svg { width: 2.25rem; height: 2.25rem; }
.fact-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--navy);
}
.fact-sub {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted);
}
@media (max-width: 900px) {
    .fact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .fact-grid { gap: 0.75rem; }
    .fact-tile { padding: 1.5rem 0.75rem; }
    .fact-title { font-size: 1.05rem; }
}

/* ==== PERMISSION ======================================================== */
.permission {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    background: var(--alt-bg);
    border-bottom: 1px solid var(--border);
}
.permission p {
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.25rem;
}
.perm-asterisk {
    color: var(--amber);
    font-size: 3rem;
    line-height: 1;
    margin-top: 2rem;
    font-family: var(--font-serif);
    font-variant-emoji: text;
}
@media (max-width: 600px) {
    .permission p { font-size: 1.125rem; margin: 1.5rem auto; }
}

/* ==== FAQ (layout only; the accordion itself is in site.css) ============ */
.faq {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    max-width: 800px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}
.faq-group {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--amber-ink);
    margin: 2.5rem 0 0.75rem;
}
/* The shared rule in site.css carries a broken character for the open state; set both markers
   here, with empty alt text so screen readers do not read "plus" / "minus" after the question. */
.faq summary::after { content: "+"; content: "+" / ""; }
.faq details[open] > summary::after { content: "\2212"; content: "\2212" / ""; }
.faq summary:hover { color: var(--amber-ink); }
.faq details { scroll-margin-top: calc(var(--header-h) + 84px); }   /* deep links (/#faq-shipping) clear the header and the sticky buy bar */
.faq .details-content { color: #4a5263; max-width: 46rem; }   /* 7.6:1 on ivory */
.faq-disclaimer {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
}
@media (max-width: 600px) {
    .faq summary { font-size: 1.15rem; }
}

/* ==== sections appended by later engineers go below ==== */


/* ==========================================================================
   ==== COMMERCE ====
   Homepage-commerce engineer. Everything the buy flow needs, in page order:
   shop layout + gallery · pickers (mode, pack) · coupon · renewal terms ·
   button + messages · reassurance · supplement facts · notices ·
   sticky buy bars · order confirmation.
   Markup: #shop, #stickyBar, #buyBar, #orderSuccess in index.html.
   Behaviour: site/assets/js/main.js ("COMMERCE").
   ========================================================================== */

/* The mobile buy bar is 72px or less. The footer padding (site.css) and the chat
   launcher (chat-widget.js) both read this token and keep clear of the bar. */
@media (max-width: 900px) {
    :root { --bottom-bar-h: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* ---- Shop layout ------------------------------------------------------- */
.shop {
    border-bottom: 1px solid var(--border);
}
.shop-grid { align-items: stretch; }

.shop-visual {
    position: relative;
    background: var(--navy);
    color: var(--on-navy);
    padding: clamp(1.75rem, 4vw, 4rem);
    border-right: 1px solid var(--border);
    overflow: hidden;
    min-width: 0;
}
@supports (overflow: clip) {
    .shop-visual { overflow: clip; }     /* keeps the sticky gallery's edges clean without breaking position: sticky */
}
.shop-visual-inner {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.shop-visual-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.shop-visual-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}
.shop-visual-note {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
}
.shop-visual-seal {
    flex: none;
    width: 104px;
    height: 104px;
    border: 1px solid rgba(247, 245, 238, 0.28);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.62rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.shop-visual-seal span { color: var(--amber); }

/* ---- Gallery ----------------------------------------------------------- */
.gallery { width: 100%; }
.gallery-stage {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    max-height: min(62vh, 38rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-main {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.gallery-main.is-cutout {
    object-fit: contain;
    padding: 2% 0;
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.35));
}
.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 70px;
    padding: 0;
    border: 1px solid rgba(247, 245, 238, 0.3);
    background: rgba(247, 245, 238, 0.06);
    cursor: pointer;
    opacity: 0.72;
    overflow: hidden;
    transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb.is-cutout img { object-fit: contain; padding: 5px 0; }
.thumb:hover { opacity: 1; border-color: var(--on-navy); }
.thumb.active {
    opacity: 1;
    border-color: var(--amber);
    box-shadow: 0 0 0 1px var(--amber);
}

/* ---- Buy box ----------------------------------------------------------- */
.shop-content {
    padding: clamp(2rem, 4vw, 4rem);
    min-width: 0;
}
.shop-tags {
    font-size: 0.85rem;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.picker {
    border: 0;
    padding: 0;
    margin: 0 0 1.75rem;
    min-width: 0;
}
.picker-legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.picker-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--muted);
}

/* Both pickers are real radio groups. The radios stay in the accessibility tree
   and the tab order (visually hidden, never display:none): Tab moves in, the
   arrow keys and Space change the choice, and the card shows focus + checked. */
.mode-option,
.pack-option {
    position: relative;
    display: block;
    cursor: pointer;
}
.mode-radio,
.pack-radio {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}
.mode-card,
.pack-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border-strong);      /* 3.55:1 on ivory */
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.mode-option:hover .mode-card,
.pack-option:hover .pack-card { border-color: var(--navy); }

.mode-radio:checked + .mode-card,
.pack-radio:checked + .pack-card {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--navy);
    background: var(--white);
}
.mode-radio:focus-visible + .mode-card,
.pack-radio:focus-visible + .pack-card {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
}

.pick-dot {
    position: relative;
    flex: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-strong);
    border-radius: 50%;
    background: var(--white);
    transition: border-color 0.2s;
}
.pick-dot::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--navy);
    transform: scale(0);
    transition: transform 0.2s;
}
.mode-radio:checked + .mode-card .pick-dot,
.pack-radio:checked + .pack-card .pick-dot { border-color: var(--navy); }
.mode-radio:checked + .mode-card .pick-dot::after,
.pack-radio:checked + .pack-card .pick-dot::after { transform: scale(1); }

/* One-time / Subscribe & save */
.mode-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.mode-text { display: flex; flex-direction: column; min-width: 0; }
.mode-title { font-weight: 500; line-height: 1.35; }
.mode-note { font-size: 0.82rem; line-height: 1.45; color: var(--muted); }
@media (max-width: 520px) {
    .mode-options { grid-template-columns: 1fr; }
}

/* Pack cards */
.pack-option + .pack-option { margin-top: 1rem; }
.pack-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.pack-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}
.pack-desc { font-size: 0.85rem; line-height: 1.5; color: var(--muted); }
.pack-tagline:empty { display: none; }
.pack-price {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 1.45;
}
.pack-price-line { white-space: nowrap; }
.pack-price .now { font-size: 1.15rem; font-weight: 500; }
.pack-price .was { font-size: 0.9rem; color: var(--muted); margin-right: 0.15rem; }
.pack-price .per { font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.pack-price .save {
    min-height: 1.45em;                     /* the line is reserved, so savings arriving from the API move nothing */
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber-ink);
    white-space: nowrap;
}
/* Badge pill sits on the card's top edge: out of the flow, so it never shifts the layout. */
.pack-badge {
    position: absolute;
    top: 0;
    right: 1rem;
    transform: translateY(-50%);
    white-space: nowrap;
}
.pack-badge.pill-outline { background: var(--ivory); }

.pack-option.is-soldout { cursor: not-allowed; }
.pack-option.is-soldout .pack-card {
    border-style: dashed;
    border-color: var(--border-strong);
    background: rgba(23, 43, 80, 0.03);
}
.pack-option.is-soldout .pack-main,
.pack-option.is-soldout .pack-price,
.pack-option.is-soldout .pick-dot { opacity: 0.5; }

@media (max-width: 420px) {
    .mode-card, .pack-card { gap: 0.75rem; padding: 1rem 0.9rem; }
    .mode-radio, .pack-radio { left: 0.9rem; }
    .pack-title { font-size: 1.15rem; }
}

/* ---- Discount code ------------------------------------------------------ */
.coupon-wrap { margin: -0.5rem 0 1.25rem; }
details.coupon { border: 0; }
.coupon summary {
    display: inline-flex;
    justify-content: flex-start;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
}
.coupon-label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.coupon summary:hover .coupon-label { color: var(--amber-ink); }
.coupon summary::after { font-size: 1.1rem; }
details.coupon[open] summary::after,
details.facts-details[open] summary::after { content: "\2212"; }
.coupon-body { padding: 0.25rem 0 0.5rem; }
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-row .input { flex: 1; min-width: 0; text-transform: uppercase; }
.coupon-row .btn { flex: none; padding: 0.85rem 1.4rem; }
.coupon-remove { margin-top: 0.5rem; font-size: 0.85rem; min-height: 24px; }

/* ---- Renewal terms, button, messages ------------------------------------ */
.sub-disclosure {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--amber);
    background: rgba(220, 230, 243, 0.55);
    font-size: 0.875rem;
    line-height: 1.55;
}
.sub-disclosure a { text-decoration: underline; text-underline-offset: 3px; }
.sub-disclosure strong { font-weight: 500; }

.add-to-bag {
    flex-wrap: wrap;
    min-height: 58px;
    font-size: 1.1rem;
}
.add-to-bag .btn-tail {
    display: inline-flex;
    gap: 0.4em;
    white-space: nowrap;
}
.add-to-bag.is-soldout .btn-sep,
.add-to-bag.is-soldout .btn-tail { display: none; }
@media (max-width: 480px) {
    /* Two tidy lines on phones: the wording, then the price. */
    .add-to-bag {
        flex-direction: column;
        gap: 0;
        padding: 0.7rem 1rem;
        line-height: 1.5;
    }
    .add-to-bag .btn-sep { display: none; }
}

/* Live region: stays in the render tree when empty so every change is announced. */
.buy-msg { margin-top: 0.75rem; }
.buy-msg:empty { display: block; margin: 0; }
.buy-msg:not(:empty) {
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--border-strong);
    background: rgba(220, 230, 243, 0.45);
    color: var(--navy);
}
.buy-msg.bad:not(:empty) {
    border-left-color: var(--danger);
    background: rgba(155, 44, 44, 0.07);
    color: var(--danger);
}
.buy-msg.ok:not(:empty) {
    border-left-color: var(--success);
    background: rgba(31, 107, 58, 0.07);
    color: var(--success);
}
.buy-msg a,
#couponMsg a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---- Reassurance -------------------------------------------------------- */
.assure {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.assure li { display: flex; align-items: flex-start; gap: 0.65rem; }
.assure svg {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    color: var(--amber-ink);
}
.pay-badges-light { margin-top: 1.1rem; }
.pay-badges-light li {
    color: var(--navy);
    background: var(--white);
    border-color: var(--border-strong);
}
.buy-legal {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--muted);
}
.buy-safety {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--muted);
}

/* ---- Supplement facts summary ------------------------------------------- */
.facts-wrap { margin-top: 2rem; }
.facts-details summary { font-size: 1.3rem; padding: 1.1rem 0; }
.facts-body { padding-bottom: 1.5rem; }
.facts-body > * + * { margin-top: 1rem; }
.facts-table { font-size: 0.9rem; }
.facts-table th { width: 42%; }
.facts-table th, .facts-table td { padding: 0.7rem 0.9rem; }
.facts-use { font-size: 0.9rem; color: var(--muted); }

/* ---- Notices: cancelled payment, saved cart ----------------------------- */
.shop-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem clamp(1.25rem, 4vw, 4rem);
    background: var(--alt-bg);
    border-bottom: 1px solid var(--border);
}
.shop-notice-mark {
    flex: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--amber-ink);
    font-variant-emoji: text;
}
.shop-notice-body { flex: 1; min-width: 0; }
.shop-notice-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.25;
}
.shop-notice-copy { font-size: 0.9rem; line-height: 1.5; margin-top: 0.15rem; }
.shop-notice-action { flex: none; min-height: 44px; }
.shop-notice-close {
    flex: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.shop-notice-close:hover { color: var(--amber-ink); }
@media (max-width: 640px) {
    .shop-notice { flex-wrap: wrap; align-items: flex-start; }
    .shop-notice-mark { display: none; }
    .shop-notice-body { flex: 1 1 60%; }
    .shop-notice-action { order: 3; width: 100%; }
}

/* ---- Shop, one column ---------------------------------------------------- */
@media (max-width: 600px) {
    .shop-visual { padding: 1.75rem 1.25rem; }
    .shop-content { padding: 2.5rem 1.25rem; }
}
@media (max-width: 768px) {
    .shop-visual { border-right: 0; border-bottom: 1px solid var(--border); }
    .shop-visual-inner { position: static; }
    .gallery-stage { max-height: 24rem; }
    .shop-visual-seal { width: 88px; height: 88px; font-size: 0.55rem; }
}
@media (max-width: 380px) {
    .thumb { width: 50px; height: 62px; }
}

/* ---- Desktop sticky buy bar (over 900px), under the header --------------- */
.buy-sticky {
    position: fixed;
    top: calc(var(--header-h) + 1px);       /* main.js keeps this equal to the real header height */
    left: 0;
    right: 0;
    z-index: 190;                           /* under the header (200), over the page */
    box-shadow: var(--shadow-soft);
    animation: buy-sticky-in 0.3s ease both;
}
.buy-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}
.buy-sticky-product {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}
.buy-sticky-product img { flex: none; width: auto; height: 44px; }
.buy-sticky-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.buy-sticky-pack {
    margin-left: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--on-navy-muted);
}
.buy-sticky-action {
    flex: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.buy-sticky-price { font-size: 1.05rem; white-space: nowrap; }
.buy-sticky-price strong { font-weight: 500; }
.buy-sticky-was { font-size: 0.9rem; color: var(--on-navy-muted); margin-right: 0.2rem; }
@keyframes buy-sticky-in {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
    .buy-sticky { display: none; }
}

/* ---- Mobile bottom buy bar (900px and under) ----------------------------- */
.buybar { display: none; }
@media (max-width: 900px) {
    .buybar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 140;                       /* under the chat button (150) and the cookie notice (160) */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
        background: var(--ivory);
        border-top: 1px solid var(--navy);
        box-shadow: 0 -10px 30px -14px rgba(23, 43, 80, 0.35);
        animation: buybar-in 0.3s ease both;
    }
    .buybar-info {
        min-width: 0;
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }
    .buybar-name {
        font-size: 0.8rem;
        color: var(--muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .buybar-price { font-size: 1.05rem; font-weight: 500; }
    .buybar .btn { flex: none; min-height: 48px; white-space: nowrap; }
    /* chat-widget.js reads --bottom-bar-h and lifts its launcher above this bar by itself. */
}
@keyframes buybar-in {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: none; }
}

/* ---- Order confirmation dialog ------------------------------------------- */
.order-success {
    position: fixed;
    inset: 0;
    z-index: 9000;                          /* over everything in the shell, under the checkout modal (9998) */
    display: flex;
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(15, 31, 61, 0.78);
    animation: order-fade 0.3s ease both;
}
.order-success-box {
    position: relative;
    width: 100%;
    max-width: 35rem;
    margin: auto;
    padding: clamp(1.75rem, 5vw, 3rem);
    background: var(--ivory);
    color: var(--navy);
    border-top: 4px solid var(--amber);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
.order-success-box > * + * { margin-top: 1rem; }
.order-success-box .eyebrow { margin-bottom: 0; padding-right: 3rem; }
.order-success-box .eyebrow span { color: var(--amber); font-variant-emoji: text; }
.order-success-box .headline-medium { margin-bottom: 0; }
.order-success-box h2:focus { outline: none; }
.order-success-x {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.order-success-x:hover { color: var(--amber-ink); }
.order-success-num {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: var(--alt-bg);
    font-size: 0.95rem;
}
.order-success-num strong {
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-left: 0.35rem;
    overflow-wrap: anywhere;
}
.order-success-test { font-size: 0.875rem; color: var(--amber-ink); }
.order-success-how {
    padding: 1.1rem 1.25rem;
    border-left: 3px solid var(--amber);
    background: rgba(220, 230, 243, 0.55);
}
.order-success-sub {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber-ink);
    margin-bottom: 0.5rem;
}
.order-success-how ul { padding-left: 1.15rem; font-size: 0.95rem; }
.order-success-how li + li { margin-top: 0.3rem; }
.order-success-help { font-size: 0.9rem; color: var(--muted); }
.order-success-help a { color: var(--navy); }
@keyframes order-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ==== END COMMERCE ==== */


/* ==========================================================================
   ==== CONTENT ====
   Homepage-content engineer. Sections the designer's file did not have, in
   page order: trust row · herb cards · comparison · honest expectations ·
   reviews (+ review dialog) · founder note · guarantee · reveal-on-scroll.
   The hero, film, ritual, ingredients, permission and FAQ rules are at the
   top of this file. Behaviour: site/assets/js/main.js (film, fact strip,
   reviews, FAQ, reveal).
   ========================================================================== */

/* ---- Trust row ----------------------------------------------------------- */
.trust {
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
}
.trust-list {
    list-style: none;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.75rem clamp(1.25rem, 4vw, 2rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.25rem;
}
.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    font-size: 0.875rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
}
.trust-list svg {
    flex: none;
    width: 22px;
    height: 22px;
    color: var(--amber-ink);
}
.trust-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
@media (max-width: 700px) {
    .trust-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: stretch;
        gap: 0 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .trust-list li { font-size: 0.8125rem; }
}

/* ---- Ingredients: herb cards --------------------------------------------- */
.herb-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    background: var(--white);
}
.herb-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-width: 0;
}
.herb-photo {
    display: block;
    width: calc(100% + 2 * clamp(1.5rem, 3vw, 2.25rem));
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: calc(-1 * clamp(1.5rem, 3vw, 2.25rem)) calc(-1 * clamp(1.5rem, 3vw, 2.25rem)) clamp(1.1rem, 2vw, 1.5rem);
    background-color: var(--alt-bg);
}
.photo-credits { margin: 0.75rem 0 clamp(2rem, 5vw, 3rem); font-size: 0.78rem; color: var(--muted); border: 0; }
.photo-credits summary {
    display: inline-flex; align-items: center; justify-content: flex-start; gap: 0.4rem;
    padding: 0.4rem 0; border: 0; min-height: 44px;   /* thumb-sized, though it is small type */
    font-family: var(--font-sans); font-size: 0.78rem; line-height: 1.4; cursor: pointer;
}
.photo-credits summary::after { font-size: 0.85rem; }
.photo-credits p { margin-top: 0.4rem; line-height: 1.6; max-width: 75ch; }
.photo-credits a { color: inherit; text-decoration: underline; }
.herb-part {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-ink);
    margin-bottom: 0.9rem;
}
.herb-name {
    font-size: 1.6rem;
    line-height: 1.15;
}
.herb-latin {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.herb-line { margin-top: 0.9rem; font-size: 0.95rem; line-height: 1.6; }
.herb-card-other { background: var(--alt-bg); }
.herb-card-other .herb-part { color: var(--navy); }
@media (max-width: 900px) {
    .herb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .herb-grid { grid-template-columns: 1fr; }
    .herb-name { font-size: 1.45rem; }
}
.ing-foot {
    margin-top: clamp(2rem, 5vw, 3rem);
    text-align: center;
}
.ing-link { position: relative; }
.ing-link::after { content: ""; position: absolute; inset: -12px -6px; }   /* 44px tap target without moving the text */
.ing-fine {
    max-width: 38rem;
    margin: 1rem auto 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
}
.ing-link + .ing-fine { margin-top: 1.25rem; }

/* ---- Comparison ---------------------------------------------------------- */
.compare {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    background: var(--alt-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.compare > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.compare-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.compare-header p { max-width: 38rem; margin: 0 auto; font-size: 1.125rem; }
/* The old "scroll →" hint is gone: below 880px the stacked cards take over, so
   there is nothing left to scroll sideways. */
.compare-wrap { border-color: var(--border-strong); }
.compare-wrap:focus-visible { outline-offset: 4px; }
.compare-table { min-width: 800px; table-layout: fixed; }
.compare-table th, .compare-table td { padding: 1rem 1.1rem; line-height: 1.5; }
.compare-table thead th {
    white-space: normal;
    vertical-align: bottom;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.2;
    border-bottom: 1px solid var(--navy);
}
.compare-table thead th:first-child,
.compare-table tbody th { width: 9.5rem; }
.compare-table tbody th {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--white);
}
.compare-table thead .col-us {
    background: var(--navy);
    color: var(--on-navy);
    border-bottom-color: var(--navy);
}
.compare-table tbody .col-us {
    background: #f6efe2;               /* amber wash; navy text on it 12.2:1 */
    font-weight: 500;
}
.compare-note {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);               /* 4.92:1 on alt-bg */
    text-align: center;
}
@media (max-width: 880px) {
    /* The table is display:none here (see the stacked cards further down); only
       the note below it is still on the page, and it reads better left-aligned. */
    .compare-note { text-align: left; }
}

/* ---- Honest expectations ------------------------------------------------- */
.expect {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}
.expect-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.expect-header p { max-width: 36rem; margin: 0 auto; font-size: 1.125rem; }
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--navy);
}
.expect-card {
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2.25rem) 0.5rem;
    min-width: 0;
}
.expect-card + .expect-card { border-left: 1px solid var(--border); }
.expect-card:first-child { padding-left: 0; }
.expect-card:last-child { padding-right: 0; }
.expect-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--amber-ink);
    margin-bottom: 1.25rem;
}
.expect-title {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    margin-bottom: 0.9rem;
}
@media (max-width: 820px) {
    .expect-grid { grid-template-columns: 1fr; }
    .expect-card,
    .expect-card:first-child,
    .expect-card:last-child { padding: 1.75rem 0; }
    .expect-card + .expect-card { border-left: 0; border-top: 1px solid var(--border); }
    .expect-num { margin-bottom: 0.75rem; }
}

/* ---- Reviews ------------------------------------------------------------- */
.reviews {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    border-top: 1px solid var(--border);
    background: var(--white);
}
.reviews > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.reviews-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.reviews-header > p:last-child { max-width: 36rem; margin: 0 auto; font-size: 1.125rem; }
.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}
.rs-stars {
    color: var(--amber-ink);
    font-size: 1.35rem;
    letter-spacing: 0.14em;
}
.rs-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}
.rs-count { color: var(--muted); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    align-items: start;
}
.review {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--ivory);
    border: 1px solid var(--border);
    min-width: 0;
    overflow-wrap: anywhere;
}
.rv-top { display: flex; align-items: center; gap: 0.85rem; }
.rv-avatar {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--ivory);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.rv-meta { min-width: 0; line-height: 1.4; }
.rv-who { font-weight: 500; }
.rv-when { font-size: 0.8rem; color: var(--muted); }
.rv-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--success);             /* 5.97:1 on ivory */
    font-weight: 500;
    white-space: nowrap;
}
.rv-verified svg { width: 14px; height: 14px; flex: none; }
.rv-rating {
    color: var(--amber-ink);
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    line-height: 1;
}
.rv-title { font-size: 1.35rem; line-height: 1.2; }
.rv-body { font-size: 0.975rem; white-space: pre-line; }

.reviews-empty {
    max-width: 34rem;
    padding: clamp(2rem, 5vw, 3rem) 1.5rem;
    text-align: center;
    border: 1px dashed var(--border-strong);
    background: var(--ivory);
}
.reviews-empty-mark {
    display: block;
    color: var(--amber);
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    font-variant-emoji: text;
    margin-bottom: 0.75rem;
}
.reviews-empty-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
}
.reviews-actions .btn { min-height: 48px; }
.reviews-noscript { flex-basis: 100%; font-size: 0.9rem; color: var(--muted); }

/* ---- Review dialog ------------------------------------------------------- */
.rv-modal {
    position: fixed;
    inset: 0;
    z-index: 8000;                          /* over the shell and buy bars, under the order confirmation (9000) and checkout (9998) */
    display: flex;
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(15, 31, 61, 0.78);
    animation: rv-fade 0.25s ease both;
}
.rv-box {
    position: relative;
    width: 100%;
    max-width: 36rem;
    margin: auto;
    padding: clamp(1.5rem, 5vw, 2.75rem);
    background: var(--ivory);
    color: var(--navy);
    border-top: 4px solid var(--amber);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
.rv-box .eyebrow { margin-bottom: 0.5rem; padding-right: 3rem; }
.rv-box .eyebrow span { color: var(--amber); font-variant-emoji: text; }
.rv-box h2 { margin-bottom: 0.5rem; }
.rv-box h2:focus { outline: none; }
.rv-intro { color: var(--muted); margin-bottom: 1.5rem; }
.rv-x {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.rv-x:hover { color: var(--amber-ink); }
.rv-req, .rv-opt { font-weight: 400; color: var(--muted); letter-spacing: 0; }

.rv-stars { border: 0; min-width: 0; margin-bottom: 1.25rem; }
.rv-stars legend { padding: 0; }
.rv-stars-row { display: inline-flex; gap: 0.15rem; margin-left: -0.5rem; }
.rv-stars-row label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    color: var(--border-strong);
}
.rv-stars-row svg {
    width: 32px;
    height: 32px;
    fill: transparent;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linejoin: round;
    transition: fill 0.15s, color 0.15s, transform 0.15s;
}
.rv-stars-row label.on,
.rv-stars-row label.hover,
.rv-stars-row input:checked + label { color: var(--amber-ink); }
.rv-stars-row label.on svg,
.rv-stars-row label.hover svg,
.rv-stars-row input:checked + label svg { fill: var(--amber); }
.rv-stars-row label:hover svg { transform: scale(1.08); }
.rv-stars-row input:focus-visible + label {
    outline: 2px solid var(--navy);
    outline-offset: -2px;
}
.rv-stars-out { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }
.rv-stars.is-invalid .rv-stars-out { color: var(--danger); }

.rv-box .form-row .field { margin-bottom: 0.5rem; }
.rv-proof { margin: 0 0 1.25rem; }
.rv-hp {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.rv-consent {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.rv-msg { font-size: 0.95rem; }
.rv-msg:focus { outline: none; }
.rv-box.is-sent .rv-msg {
    margin-top: 0;
    padding: 1.1rem 1.25rem;
    border-left: 3px solid var(--amber);
    background: rgba(220, 230, 243, 0.55);
    font-size: 1rem;
}
@keyframes rv-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 600px) {
    .rv-modal { padding: 0.75rem; }
    .rv-stars-row label { width: 46px; }
}

/* ---- Founder note -------------------------------------------------------- */
.founder {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.founder-media {
    position: relative;
    order: 2;
    min-height: 460px;
    margin: 0;
    overflow: hidden;
    background-color: var(--navy);
    border-left: 1px solid var(--border);
}
.founder-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% 50%;
}
.founder-content {
    order: 1;
    padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 4rem);
    min-width: 0;
}
.founder-content > p { max-width: 36rem; }
.founder-content > p + p { margin-top: 1rem; }
.founder-content .headline-medium { margin-bottom: 1.5rem; }
.founder-content .founder-sign {
    margin-top: 1.75rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.2;
}
.founder-sign::before {
    content: "\2014\00a0";
    content: "\2014\00a0" / "";
    color: var(--amber-ink);
}
.founder-content .founder-legal {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}
@media (max-width: 768px) {
    .founder-media { order: 1; min-height: 0; aspect-ratio: 16 / 10; border-left: 0; border-bottom: 1px solid var(--border); }
    .founder-content { order: 2; }
}

/* ---- Guarantee ------------------------------------------------------------ */
.guarantee {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
}
.guarantee-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.75rem, 5vw, 4rem);
}
.guarantee-seal {
    flex: none;
    width: 148px;
    height: 148px;
    border: 1px solid rgba(247, 245, 238, 0.35);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.12em;
}
.guarantee-seal span { color: var(--amber); font-size: 1.1rem; font-variant-emoji: text; }
.guarantee-copy { min-width: 0; }
.guarantee-copy p { max-width: 40rem; }
.guarantee-copy p + p { margin-top: 0.9rem; color: var(--on-navy-muted); }
.guarantee-copy .guarantee-links { margin-top: 1.5rem; color: var(--on-navy); }
.guarantee-links a { position: relative; }
.guarantee-links a::after { content: ""; position: absolute; inset: -12px -6px; }   /* 44px tap target without moving the text */
@media (max-width: 700px) {
    .guarantee-inner { flex-direction: column; align-items: flex-start; }
    .guarantee-seal { width: 116px; height: 116px; font-size: 0.62rem; }
}

/* ---- Reveal-on-scroll ------------------------------------------------------
   Content is visible by default. main.js "arms" only the .reveal elements that
   are still below the fold (and never under prefers-reduced-motion), then adds
   .in as each one scrolls into view. No JS, no observer, print: nothing hides. */
.reveal-armed {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-armed.in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal-armed { opacity: 1; transform: none; transition: none; }
}
@media print {
    .reveal-armed { opacity: 1 !important; transform: none !important; }
}
/* ---- Polish: balanced wrapping for the short centered intros ----------------
   Progressive enhancement: browsers without text-wrap keep the normal rag. */
.film-header p,
.ing-header p,
.compare-header p,
.expect-header p,
.reviews-header p,
.faq-header p {
    text-wrap: balance;
}

/* ==== JOURNAL ==== */
/* Homepage teaser for the blog. Static shell only: main.js fills #journalGrid
   from GET /blog/featured.json and un-hides #journal on a successful,
   non-empty response (hidden stays put on a failed or empty fetch, so a
   missing featured.json never leaves a broken section on the page). */
.journal {
    padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2rem);
    max-width: var(--container);
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}
.journal-header {
    max-width: 42rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}
.journal-header > p:last-child { font-size: 1.125rem; color: var(--muted); }

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.75rem;
}

/* One <a> per card: a single tab stop; h3/p/span inside <a> is valid flow
   content, no nested interactive elements. */
.journal-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    min-width: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.journal-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-soft);
}
.journal-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--alt-bg);
    border-bottom: 1px solid var(--border);
}
.journal-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
    transition: transform 0.5s ease;
}
.journal-card:hover .journal-card-media img { transform: scale(1.03); }
.journal-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
    padding: 1.5rem;
}
.journal-card-cat {
    color: var(--amber-ink);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.journal-card-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.25;
}
.journal-card-excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}
.journal-card-meta {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.journal-actions {
    text-align: center;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (prefers-reduced-motion: reduce) {
    .journal-card, .journal-card-media img { transition: none !important; }
    .journal-card:hover .journal-card-media img { transform: none; }
}
@media print {
    .journal { display: none !important; }
}

/* ==== END CONTENT ==== */

/* ==== STORIES (video testimonials inside #reviews) ======================= */
.stories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}
.story { margin: 0; }
.story-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 4px;
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(14, 24, 48, 0.18);
}
.story-poster, .story-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.story-play {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
    border: 0; cursor: pointer; color: var(--ivory);
    background: linear-gradient(180deg, rgba(10, 18, 40, 0.05) 40%, rgba(10, 18, 40, 0.55));
    transition: background 0.2s ease;
}
.story-play svg { width: 64px; height: 64px; padding: 19px; border-radius: 50%; background: var(--amber); color: var(--navy); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); transition: transform 0.2s ease; }
.story-play:hover svg, .story-play:focus-visible svg { transform: scale(1.08); }
.story-play span { font-size: 0.8rem; letter-spacing: 0.08em; }
.story figcaption { padding-top: 1rem; }
.story blockquote { margin: 0; font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.35; color: var(--navy); }
.story-name { margin-top: 0.7rem; font-weight: 500; }
.story-name span { font-weight: 400; color: var(--muted); }
.story-note { margin-top: 0.2rem; font-size: 0.8rem; color: var(--muted); }
.stories-foot { margin: 1.5rem auto clamp(2rem, 5vw, 3rem); text-align: center; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 560px) {
    .stories { grid-template-columns: minmax(0, 300px); }
}


/* ==========================================================================
   MOBILE + SCANNABLE DISPLAY + WELCOME OFFER  (2026-09-21)
   Display method: one idea per block, short lines, a bold gist line per
   section, numbered eyebrows, a pointed step-by-step path, long text that
   collapses. Everything below is display only: no claim is changed.
   ========================================================================== */

/* ---- Reading progress -------------------------------------------------- */
/* Decorative (aria-hidden): the scrollbar already carries this information. */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 210;                       /* over the sticky header (200) */
    pointer-events: none;
    background: transparent;
}
.read-progress span {
    display: block;
    height: 100%;
    width: var(--read-progress, 0%);
    background: var(--amber);
}

/* ---- Numbered eyebrow: "01 · THE RITUAL" -------------------------------- */
.eyebrow-num { font-variant-numeric: tabular-nums; }
.eyebrow-num::after { content: " \00B7 "; }

/* ---- Gist line: ONE bold sentence per section, ~7 words a line on a phone */
.gist {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(1.0625rem, 2.6vw, 1.3rem);
    line-height: 1.5;
    max-width: 34ch;
    margin-bottom: 1rem;
    color: var(--navy);
}
.on-navy .gist { color: var(--on-navy); }
.ing-header .gist,
.compare-header .gist,
.expect-header .gist,
.reviews-header .gist,
.faq-header .gist,
.journal-header .gist,
.film-header .gist,
.permission .gist { margin-left: auto; margin-right: auto; }

/* ---- Body text on phones: 17px, generous leading, short paragraphs ------- */
@media (max-width: 760px) {
    .manifesto p:not(.manifesto-more),
    .film-header p:not(.film-note),
    .shop-content > p,
    .ritual-content > p:not(.ritual-note),
    .ing-header p,
    .compare-header p,
    .expect-card p:not(.expect-num),
    .reviews-header > p,
    .founder-content p:not(.founder-legal):not(.founder-sign),
    .guarantee-copy p:not(.guarantee-links),
    .permission > p,
    .faq-header p,
    .details-content p,
    .contact-copy p:not(.contact-more),
    .offer-copy p,
    .offer-steps li,
    .contact-facts li,
    .compare-card-list dd {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
    /* Air between chunks, so each one reads as its own idea. */
    .manifesto p + p,
    .shop-content > p + p,
    .details-content p + p,
    .expect-card p + p,
    .guarantee-copy p + p,
    .founder-content p + p { margin-top: 0.85rem; }
}

/* ---- "Read more": long blocks collapse on a phone, open on a wide screen -
   main.js opens these and hides the summary above 760px, so a desktop reader
   never meets a disclosure and a phone reader never meets a wall of text.   */
.read-more { border: 0; }
.read-more:first-of-type { border-top: 0; }
.read-more > summary {
    padding: 0.55rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--amber-ink);
    cursor: pointer;
    list-style: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.read-more > summary::-webkit-details-marker { display: none; }
.read-more > summary::after {
    content: "\2193";                   /* down arrow */
    font-size: 0.9em;
}
.read-more[open] > summary::after { content: "\2191"; }
.read-more > *:not(summary) { margin-top: 0.7rem; }
.read-more.is-open-wide > summary { display: none; }

/* ---- "next: <section>" cue at the end of a section (phones only) --------- */
.next-cue { display: none; }
@media (max-width: 760px) {
    .next-cue {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        margin: 2rem auto 0;
        padding: 0.7rem 1rem;
        min-height: 44px;
        max-width: 22rem;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        color: var(--muted);
        border-top: 1px solid var(--border);
        text-align: center;
    }
    .next-cue b { font-weight: 500; color: var(--navy); }
    .on-navy .next-cue, .offer .next-cue { color: var(--on-navy-muted); border-top-color: var(--on-navy-line); }
    .on-navy .next-cue b, .offer .next-cue b { color: var(--on-navy); }
    .next-cue-arrow { color: var(--amber-ink); }
    .on-navy .next-cue-arrow, .offer .next-cue-arrow { color: var(--amber); }
}

/* ---- Ritual: a pointed vertical path ------------------------------------ */
.step-path {
    position: relative;
    gap: 0;
    margin-top: 2rem;
}
.step-path .step {
    position: relative;
    align-items: flex-start;
    gap: 1.1rem;
    border-bottom: 0;
    padding: 0 0 1.75rem;
}
.step-path .step:last-child { padding-bottom: 0; }
/* the connecting line, drawn between the numerals */
.step-path .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1.375rem;                      /* centre of the 2.75rem numeral disc */
    top: 2.75rem;
    bottom: 0.25rem;
    width: 2px;
    background: var(--border);
    transform: translateX(-1px);
}
.step-path .step-num {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--ivory);
    color: var(--amber-ink);
    font-size: 1.15rem;
    line-height: 1;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.step-path .step-body { padding-top: 0.45rem; }
/* lit state: added by main.js as each step scrolls in. Purely decorative. */
.step-path .step.is-lit .step-num {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--ivory);
}
.step-path .step.is-lit:not(:last-child)::before { background: var(--navy); }
@media (max-width: 768px) {
    .step-path .step-num { width: 2.5rem; height: 2.5rem; font-size: 1.05rem; }
    .step-path .step:not(:last-child)::before { left: 1.25rem; top: 2.5rem; }
    .step-path .step { gap: 0.9rem; }
}

/* ---- Comparison: a table on a wide screen, stacked cards on a phone ------
   Exactly one of the two is in the DOM's accessibility tree at any width:
   the other is display:none, so nothing is ever announced twice.
   The cut-off is 880px, not 760px: the table needs 800px of its own before the
   columns stop being readable, so between 760 and 880 it would still have to be
   dragged sideways — which is exactly what the owner asked us to get rid of.  */
.compare-cards { display: none; }
@media (max-width: 880px) {
    .compare-wrap { display: none; }
    .compare-cards {
        display: grid;
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .compare-card {
        background: var(--white);
        border: 1px solid var(--border-strong);
        padding: 1.1rem 1.15rem;
    }
    .compare-card.is-us {
        border: 2px solid var(--navy);
        background: #f6efe2;             /* amber wash; navy text on it 12.2:1 */
    }
    .compare-card-name {
        font-family: var(--font-serif);
        font-size: 1.3rem;
        line-height: 1.2;
        display: block;
    }
    .compare-card-tag { margin-left: 0.5rem; vertical-align: 0.2em; }
    .compare-card-gist {
        display: block;
        margin-top: 0.3rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--muted);
    }
    .compare-card.is-us .compare-card-gist { color: var(--navy); font-weight: 500; }
    details.compare-card { border-bottom: 1px solid var(--border-strong); }
    details.compare-card > summary {
        padding: 0 2rem 0 0;
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        list-style: none;
        position: relative;
    }
    details.compare-card > summary::-webkit-details-marker { display: none; }
    details.compare-card > summary::after {
        content: "\2193";
        position: absolute;
        right: 0;
        top: 0.35rem;
        color: var(--amber-ink);
    }
    details.compare-card[open] > summary::after { content: "\2191"; }
    .compare-card-list {
        margin: 0.9rem 0 0;
        display: grid;
        gap: 0.65rem;
    }
    .compare-card-list dt {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
    }
    .compare-card-list dd {
        margin: 0.15rem 0 0;
        line-height: 1.6;
    }
    .compare-card.is-us .compare-card-list dd { font-weight: 500; }
}
/* the note under the comparison reads as a short line with the rest folded away */
.compare-note.read-more > summary {
    color: var(--muted);
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
}
.compare-note.read-more p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
    text-align: center;
}

/* ---- Per-field error line + honeypot (the homepage does not load pages.css) */
.field-error {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--danger);
    margin-top: 0.4rem;
}
.field-error:empty { display: none; }
.hp-field {
    position: absolute !important;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---- "See the label" button in the ingredients header ------------------- */
.ing-label-cta { margin-top: 1.5rem; }

/* ---- Label dialog ------------------------------------------------------- */
.label-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 2.5rem);
    overflow-y: auto;
    background: rgba(10, 18, 40, 0.72);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.label-box {
    position: relative;
    width: min(56rem, 100%);
    margin: auto;
    background: var(--ivory);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.25rem, 4vw, 2.5rem);
}
.label-x {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.label-intro { color: var(--muted); margin-bottom: 1.5rem; max-width: 40ch; }
.label-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
}
.label-foot { margin-top: 1.5rem; }
.label-fine { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 760px) {
    .label-cols { grid-template-columns: minmax(0, 1fr); }
}

/* The Supplement Facts panel, drawn the way it is printed on a US label:
   white, black, heavy rules, condensed type. Values match /facts.html.     */
.supp-panel {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.6rem 0.7rem 0.7rem;
    font-family: "Arial Narrow", "Helvetica Neue Condensed", "Liberation Sans Narrow", Arial, Helvetica, sans-serif;
    font-stretch: condensed;
    font-size: 0.875rem;
    line-height: 1.3;
}
.supp-panel-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 0.3rem;
}
.supp-panel-serving { font-size: 0.875rem; }
.supp-panel-rule-heavy { height: 9px; background: #000; margin: 0.35rem 0 0; }
.supp-panel-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.supp-panel-table thead th {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0 0.15rem;
    border-bottom: 1px solid #000;
    vertical-align: bottom;
}
.supp-panel-table th, .supp-panel-table td {
    padding: 0.28rem 0;
    border-bottom: 1px solid #000;
    vertical-align: top;
}
.supp-panel-table tbody th { font-weight: 700; }
.supp-panel-table .num { text-align: right; white-space: nowrap; padding-left: 0.5rem; }
.supp-panel-group th { border-top: 5px solid #000; }
.supp-panel-sub {
    font-size: 0.8125rem;
    line-height: 1.4;
    padding-top: 0.15rem !important;
    padding-left: 0.9rem !important;
}
.supp-panel-notes {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.45;
}
.supp-panel-notes p + p { margin-top: 0.15rem; }

/* The real back-label photograph, tap to zoom */
.label-photo { margin: 0; }
.label-zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
    max-height: 30rem;
}
.label-zoom img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.25s ease;
    transform-origin: 50% 30%;
}
.label-zoom.is-zoomed { cursor: zoom-out; overflow: auto; max-height: 26rem; }
.label-zoom.is-zoomed img { transform: scale(2); }
.label-zoom-hint {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 0.25rem 0.6rem;
    background: rgba(23, 43, 80, 0.85);
    color: var(--ivory);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.label-zoom.is-zoomed .label-zoom-hint { display: none; }
.label-photo figcaption { margin-top: 0.6rem; font-size: 0.8rem; color: var(--muted); }

/* ---- Welcome offer: section -------------------------------------------- */
.offer {
    background: var(--navy);
    color: var(--on-navy);
    padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem);
    border-top: 1px solid var(--border);
}
.offer .eyebrow { color: var(--amber); }
.offer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
    gap: clamp(1.75rem, 5vw, 4rem);
    align-items: start;
}
.offer-copy .gist { color: var(--on-navy); }
.offer-pct { color: var(--amber); }
.offer-steps {
    list-style: none;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.85rem;
    max-width: 32ch;
}
.offer-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}
.offer-step-num {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1;
}
.offer-guide-note { margin-top: 1.25rem; color: var(--on-navy-muted); }
.offer-guide-note b { color: var(--on-navy); font-weight: 500; }
.offer-panel {
    background: var(--ivory);
    color: var(--navy);
    padding: clamp(1.25rem, 3.5vw, 1.85rem);
    border-top: 3px solid var(--amber);
}
.offer-panel .label,
.offer-panel .checkbox { color: var(--navy); }
.offer-panel .field-msg { color: var(--muted); }
.offer-panel .field-msg.ok { color: var(--success); }
.offer-panel .field-msg.bad { color: var(--danger); }
.offer-form .field:last-of-type { margin-bottom: 1.25rem; }
@media (max-width: 860px) {
    .offer-inner { grid-template-columns: minmax(0, 1fr); }
}

/* ---- Welcome offer: the code, once the server has given us one ---------- */
.offer-result-lead { font-weight: 500; }
.offer-code {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin: 0.5rem 0 1rem;
    padding: 0.75rem 0.9rem;
    background: var(--white);
    border: 2px dashed var(--navy);
    text-align: center;
    overflow-wrap: anywhere;
}
.offer-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.offer-result-actions .btn { flex: 1 1 10rem; justify-content: center; min-height: 44px; }
.offer-result-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--muted);
}
.offer-result-note:empty { display: none; }

/* ---- Welcome offer: floating tab (phones) ------------------------------- */
/* Bottom-LEFT so it never meets the chat launcher (bottom-right), and it is
   hidden while the cookie notice is open. Same lift as the mobile buy bar. */
.offer-tab {
    position: fixed;
    left: 0.75rem;
    bottom: calc(max(72px, var(--bottom-bar-h, 0px)) + 8px + env(safe-area-inset-bottom, 0px));
    z-index: 155;
    display: none;
    align-items: center;
    min-height: 44px;
    padding: 0 1rem;
    border: 0;
    border-radius: 4px;
    background: var(--amber);
    color: var(--navy);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(8, 14, 30, 0.35);
}
@media (max-width: 900px) {
    .offer-tab:not([hidden]) { display: inline-flex; }
    body.cookie-open .offer-tab { display: none; }
}

/* ---- Welcome offer: the one timed prompt -------------------------------- */
.offer-prompt {
    position: fixed;
    inset: 0;
    z-index: 300;                       /* over the page, under the checkout modal */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 3vw, 2rem);
    overflow-y: auto;
    background: rgba(10, 18, 40, 0.65);
}
.offer-prompt-box {
    position: relative;
    width: min(28rem, 100%);
    margin: auto;
    background: var(--ivory);
    border-top: 3px solid var(--amber);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.25rem, 4vw, 2rem);
}
.offer-prompt-x {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.offer-prompt-lead { color: var(--muted); margin-bottom: 0.5rem; }
.offer-prompt-guide { font-size: 0.95rem; margin-bottom: 1.1rem; }
.offer-prompt-no { display: block; margin: 0.9rem auto 0; min-height: 44px; }

/* Split screen: the guidebook video beside the form (desktop), above it (phone). */
.offer-prompt-box { padding: 0; width: min(56rem, 100%); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); }
.offer-prompt-body { padding: clamp(1.25rem, 3vw, 2.25rem); align-self: center; }
.offer-prompt-media { position: relative; background: var(--navy); min-height: 100%; }
.offer-prompt-video { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 9 / 16; }
.offer-prompt-sound {
    position: absolute; left: 0.6rem; top: 0.6rem;
    width: 44px; height: 44px; border-radius: 50%; border: 0;
    background: rgba(10, 18, 40, 0.6); color: #fff; font-size: 1.1rem; cursor: pointer;
}
.offer-prompt-sound .op-sound-on, .offer-prompt-sound[aria-pressed="true"] .op-sound-off { display: none; }
.offer-prompt-sound[aria-pressed="true"] .op-sound-on { display: inline; }
.offer-prompt-x { z-index: 2; }
.offer-prompt-box.no-media { grid-template-columns: 1fr; width: min(28rem, 100%); }
.offer-prompt-box.no-media .offer-prompt-media { display: none; }
@media (max-width: 760px) {
    .offer-prompt { align-items: flex-start; }
    .offer-prompt-box { grid-template-columns: 1fr; width: min(28rem, 100%); }
    .offer-prompt-video { aspect-ratio: 16 / 9; height: auto; }
    .offer-prompt-body { padding: 1.1rem 1.25rem 1.25rem; }
    .offer-prompt-body .field { margin-bottom: 0.7rem; }
    .offer-prompt-lead { display: none; }   /* the guide line below says the same thing; keeps the prompt on one screen */
    /* the close button sits on the video: give it a dark disc so it stays visible */
    .offer-prompt-x { top: 0.4rem; right: 0.4rem; border-radius: 50%; background: rgba(10, 18, 40, 0.6); color: #fff; }
    .offer-prompt-box.no-media .offer-prompt-x { background: transparent; color: var(--navy); }
}

/* The guidebook cover in the #offer section */
.offer-guide { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0 0; }
.offer-guide img { width: 180px; height: auto; flex: none; border-radius: 6px; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); }
.offer-guide .offer-guide-note { margin: 0; }
@media (max-width: 760px) { .offer-guide img { width: 40vw; max-width: 160px; } }

/* ---- Contact section ---------------------------------------------------- */
.contact-section {
    padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem);
    background: var(--alt-bg);
    border-top: 1px solid var(--border);
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
    gap: clamp(1.75rem, 5vw, 4rem);
    align-items: start;
}
.contact-facts {
    list-style: none;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.7rem;
}
.contact-facts li { line-height: 1.6; }
.contact-facts b {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.contact-more { margin-top: 1.5rem; font-size: 0.9rem; line-height: 1.6; }
.contact-section .contact-form {
    background: var(--white);
    border-top: 3px solid var(--amber);
    padding: clamp(1.25rem, 3.5vw, 1.85rem);
}
.contact-fine { margin-top: 1rem; font-size: 0.8rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 860px) {
    .contact-inner { grid-template-columns: minmax(0, 1fr); }
}

/* ---- Mobile pass: spacing, tap targets, no sideways scrolling anywhere --- */
@media (max-width: 760px) {
    /* nothing may push the page sideways */
    .fact-grid, .expect-grid, .herb-grid, .journal-grid { grid-template-columns: minmax(0, 1fr); }
    .offer-result-actions .btn { flex: 1 1 100%; }
    /* comfortable tap targets for the small text links people actually aim at
       (inline links inside a sentence keep their natural size: WCAG 2.5.8 exempts them) */
    .ing-link, .manifesto-more a, .guarantee-links a, .journal-actions a,
    .label-foot a, .contact-more a, .film-caption a, [data-label-open],
    .photo-credits > summary, .facts-details > summary {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }
}
@media (max-width: 400px) {
    .offer-code { font-size: 1.6rem; letter-spacing: 0.02em; }
}

/* ---- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    /* the step path shows every step already lit: no scroll-driven change */
    .step-path .step .step-num {
        background: var(--navy);
        border-color: var(--navy);
        color: var(--ivory);
    }
    .step-path .step:not(:last-child)::before { background: var(--navy); }
}
