:root {
    --bg: #f7f8f5;
    --cream: #f3efe6;
    --ink: #0e1b2c;
    --ink2: #2b3a50;
    --muted: #6a7889;
    --line: #e6e2d7;
    --gold: #b08a4a;
    --gold2: #8f6d32;
    --sage: #7a8c6b;
    --accent: #0e3b2e;
    --accent2: #12533f;
    --white: #ffffff;
    --shadow-sm: 0 4px 14px rgba(14,27,44,.06);
    --shadow: 0 24px 60px rgba(14,27,44,.10);
    --shadow-lg: 0 40px 90px rgba(14,27,44,.14);
    --max: 1240px;
    --radius: 22px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
  }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }
  .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
  .serif { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -.02em; }

  /* ========== HEADER ========== */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(247,248,245,.82);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(230,226,215,.7);
  }
  .nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 38px; height: 38px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a6a4e 0%, #0a3224 60%, #06241a 100%);
    box-shadow: inset 0 -4px 10px rgba(0,0,0,.25), 0 2px 8px rgba(10,50,36,.28);
    position: relative;
  }
  .brand-mark::after {
    content:""; position:absolute; inset:7px; border-radius:50%;
    border: 1px solid rgba(255,255,255,.35);
  }
  .brand-name { font-family:'Fraunces',serif; font-size: 26px; font-weight: 500; letter-spacing: -.02em; }
  .brand-name em { font-style: normal; font-weight: 400; color: var(--gold); }
  .navlinks { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 500; color: #3c4a5c; }
  .navlinks a { position: relative; }
  .navlinks a::after {
    content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px;
    background: currentColor; transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .navlinks a:hover::after { transform: scaleX(1); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 48px; padding: 0 26px; border-radius: 999px;
    font-size: 14px; font-weight: 600; border: 0; cursor: pointer;
    transition: all .25s ease; letter-spacing: .01em;
  }
  .btn-primary {
    background: var(--ink); color: #fff;
    box-shadow: 0 10px 24px rgba(14,27,44,.22);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(14,27,44,.28); }
  .btn-gold {
    background: linear-gradient(180deg, #c9a15c 0%, #a97f3a 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(169,127,58,.3);
  }
  .btn-gold:hover { transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1px solid rgba(14,27,44,.18);
  }
  .btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

  /* ========== ANNOUNCEMENT BAR ========== */
  .announce {
    background: var(--ink); color: #f3efe6;
    font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
    padding: 10px 0; text-align: center; font-weight: 500;
  }
  .announce span { color: var(--gold); margin: 0 8px; }

  /* ========== HERO ========== */
  .hero {
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 90% 70% at 70% 30%, #eef0e6 0%, var(--bg) 70%);
  }
  .hero::before {
    content:""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(176,138,74,.08) 0%, transparent 40%),
      radial-gradient(circle at 20% 80%, rgba(122,140,107,.10) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; min-height: 680px; position: relative;
    padding: 60px 0 80px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(14,59,46,.06);
    border: 1px solid rgba(14,59,46,.14);
    font-size: 12px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 28px;
  }
  .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .hero h1 {
    margin: 0; font-family: 'Fraunces', serif; font-weight: 300;
    font-size: clamp(52px, 6.4vw, 92px); line-height: .98;
    letter-spacing: -.035em; color: var(--ink);
  }
  .hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
  .hero-sub {
    margin: 30px 0 0; max-width: 500px;
    color: var(--ink2); font-size: 17px; line-height: 1.75;
  }
  .hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
  .trust-row {
    margin-top: 36px; display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 30px; border-top: 1px solid var(--line);
  }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
  .trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

  .hero-visual {
    position: relative; min-height: 620px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-disc {
    position: absolute; width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f4f1e8 50%, #e8e3d1 100%);
    box-shadow:
      inset 0 -20px 60px rgba(176,138,74,.08),
      inset 0 20px 40px rgba(255,255,255,.8),
      0 60px 100px rgba(14,27,44,.12);
  }
  .hero-disc::before {
    content:""; position: absolute; inset: 20px; border-radius: 50%;
    border: 1px solid rgba(176,138,74,.2);
  }
  .hero-disc::after {
    content:""; position: absolute; inset: 50px; border-radius: 50%;
    border: 1px dashed rgba(176,138,74,.14);
  }
  .hero-product {
    position: relative; z-index: 3; width: 420px; max-width: 85%;
    filter: drop-shadow(0 40px 50px rgba(14,27,44,.22));
    transform: rotate(-4deg);
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform: rotate(-4deg) translateY(0)} 50%{transform: rotate(-4deg) translateY(-12px)} }
  .hero-badge {
    position: absolute; z-index: 4;
    background: #fff; border-radius: 50%;
    width: 120px; height: 120px;
    display: grid; place-items: center;
    box-shadow: var(--shadow);
    font-family: 'Fraunces',serif; text-align: center;
    border: 1px solid var(--line);
  }
  .hero-badge strong { display: block; font-size: 28px; color: var(--gold); line-height: 1; }
  .hero-badge span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; font-family: 'Inter',sans-serif; font-weight: 600; }
  .hero-badge.b1 { top: 10%; right: 6%; transform: rotate(8deg); }
  .hero-badge.b2 { bottom: 12%; left: 4%; transform: rotate(-8deg); }

  /* ========== MARQUEE / AS SEEN ========== */
  .marquee {
    padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.4);
  }
  .marquee-row {
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    flex-wrap: wrap;
  }
  .marquee-label {
    font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted);
  }
  .marquee-items { display: flex; gap: 42px; flex-wrap: wrap; align-items: center; }
  .marquee-item {
    font-family: 'Fraunces',serif; font-size: 22px; color: var(--ink2);
    opacity: .7;
  }

  /* ========== SECTIONS ========== */
  .section { padding: 110px 0; position: relative; }
  .section-cream { background: var(--cream); }
  .section-dark { background: var(--ink); color: #ece7d8; }
  .section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
  .section-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  }
  .section-head h2 {
    margin: 0; font-family: 'Fraunces',serif; font-weight: 300;
    font-size: clamp(40px, 4.4vw, 64px); line-height: 1.05;
    letter-spacing: -.03em; color: inherit;
  }
  .section-head h2 em { font-style: italic; color: var(--gold); }
  .section-head p { margin: 22px auto 0; max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.75; }
  .section-dark .section-head p { color: #a9b4c3; }

  /* ========== BENEFITS ========== */
  .benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .benefit {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 36px 28px;
    transition: all .3s ease; position: relative; overflow: hidden;
  }
  .benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
  .benefit-num {
    font-family: 'Fraunces',serif; font-size: 14px;
    color: var(--gold); font-weight: 500; letter-spacing: .1em;
  }
  .benefit-icon {
    width: 56px; height: 56px; border-radius: 16px; margin: 18px 0 22px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #f0ede2 0%, #e5e0cf 100%);
    border: 1px solid var(--line);
  }
  .benefit-icon svg { width: 28px; height: 28px; color: var(--accent); }
  .benefit h3 {
    margin: 0; font-family: 'Fraunces',serif; font-weight: 500;
    font-size: 22px; line-height: 1.2; color: var(--ink);
  }
  .benefit p { margin: 14px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

  /* ========== SPLIT SHOWCASE ========== */
  .showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  .showcase-img-wrap {
    position: relative; aspect-ratio: 1; border-radius: 28px; overflow: hidden;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8e3d1 100%);
    box-shadow: var(--shadow-lg);
  }
  .showcase-img-wrap::before {
    content:""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.6) 0%, transparent 60%);
  }
  .showcase-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 40px; }
  .showcase h2 {
    margin: 0 0 24px; font-family: 'Fraunces',serif; font-weight: 300;
    font-size: clamp(38px, 4vw, 56px); line-height: 1.08; letter-spacing: -.03em;
  }
  .showcase h2 em { font-style: italic; color: var(--gold); }
  .showcase p { color: var(--ink2); font-size: 17px; line-height: 1.8; margin: 0 0 20px; }
  .ingredient-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
  .ingredient-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; font-size: 15px; font-weight: 500;
  }
  .ingredient-list li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

  /* ========== STATS ========== */
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    padding: 80px 0; border-top: 1px solid rgba(236,231,216,.1); border-bottom: 1px solid rgba(236,231,216,.1);
  }
  .stat { text-align: center; padding: 0 20px; position: relative; }
  .stat + .stat::before {
    content:""; position: absolute; left: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(236,231,216,.15);
  }
  .stat-num {
    font-family: 'Fraunces',serif; font-size: 68px; font-weight: 300;
    line-height: 1; color: var(--gold); letter-spacing: -.03em;
  }
  .stat-label { margin-top: 12px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #a9b4c3; }

  /* ========== REVIEWS ========== */
  .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .stars { color: #d4a44a; font-size: 18px; letter-spacing: 3px; }
  .review blockquote {
    margin: 0; font-family: 'Fraunces',serif; font-weight: 400;
    font-size: 22px; line-height: 1.4; color: var(--ink); font-style: italic;
  }
  .review-meta { margin-top: auto; display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
  .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #e8e3d1, #c9a15c);
    display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px;
  }
  .review-name { font-size: 14px; font-weight: 600; }
  .review-verif { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }

  /* ========== BUNDLES ========== */
  .bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .bundle {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 40px 32px;
    position: relative; transition: all .3s ease;
  }
  .bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .bundle.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); transform: scale(1.02); }
  .bundle.featured::before {
    content: "Most Popular"; position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #c9a15c, #a97f3a);
    color: #fff; padding: 6px 20px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  }
  .bundle-name { font-family:'Fraunces',serif; font-size: 24px; font-weight: 500; margin: 0; }
  .bundle-desc { color: var(--muted); font-size: 14px; margin: 6px 0 28px; }
  .bundle-price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 6px; }
  .bundle-price strong { font-family:'Fraunces',serif; font-size: 56px; font-weight: 400; line-height: 1; color: var(--ink); letter-spacing: -.03em; }
  .bundle-price .old { text-decoration: line-through; color: #b0b8c4; font-size: 17px; }
  .bundle-per { font-size: 13px; color: var(--muted); margin: 0 0 28px; }
  .bundle-features { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
  .bundle-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink2); line-height: 1.55; }
  .bundle-features svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
  .bundle .btn { width: 100%; }

  /* ========== FAQ ========== */
  .faq-wrap { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
  details {
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; overflow: hidden;
    transition: all .25s ease;
  }
  details[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
  summary {
    cursor: pointer; list-style: none; padding: 26px 30px;
    font-size: 17px; font-weight: 600; display: flex;
    justify-content: space-between; align-items: center; gap: 16px;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: "+"; font-size: 28px; color: var(--gold); font-weight: 300;
    transition: transform .3s ease; line-height: 1;
  }
  details[open] summary::after { content: "−"; }
  details p {
    margin: 0; padding: 0 30px 26px;
    color: var(--muted); font-size: 15px; line-height: 1.8;
  }

  /* ========== CTA BAND ========== */
  .cta-band {
    margin: 0; padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: #fff; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content:""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(176,138,74,.2) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0%, transparent 50%);
  }
  .cta-band > .wrap { position: relative; }
  .cta-band h2 {
    margin: 0 auto; font-family:'Fraunces',serif; font-weight: 300;
    font-size: clamp(42px, 5vw, 68px); line-height: 1.05; max-width: 780px;
    letter-spacing: -.03em;
  }
  .cta-band h2 em { font-style: italic; color: #d4a44a; }
  .cta-band p { margin: 22px auto 36px; max-width: 560px; color: #cbd3c8; font-size: 17px; }

  /* ========== FOOTER ========== */
  footer { background: var(--ink); color: #a9b4c3; padding: 80px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
  footer .brand-name { color: #fff; }
  footer p { margin: 16px 0 0; font-size: 14px; line-height: 1.8; color: #8b97a8; max-width: 320px; }
  footer h5 { margin: 0 0 20px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  footer ul a { font-size: 14px; color: #8b97a8; transition: color .2s; }
  footer ul a:hover { color: var(--gold); }
  .footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 12.5px; color: #6a7889; }
  .footer-disclaimer { max-width: 860px; margin: 24px auto 0; padding: 20px; background: rgba(255,255,255,.04); border-radius: 14px; font-size: 12px; color: #8b97a8; line-height: 1.7; text-align: center; }

  /* ========== MODAL ========== */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(14,27,44,.72);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; transition: opacity .35s ease;
  }
  .modal-overlay.show { display: flex; opacity: 1; }
  .modal {
    background: #fff; border-radius: 28px; max-width: 520px; width: 100%;
    padding: 0; position: relative; overflow: hidden;
    box-shadow: 0 60px 120px rgba(0,0,0,.4);
    transform: translateY(20px) scale(.97);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
  }
  .modal-overlay.show .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 18px; right: 18px; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(14,27,44,.06); border: 0; cursor: pointer;
    display: grid; place-items: center; font-size: 20px; color: var(--ink);
    transition: all .2s;
  }
  .modal-close:hover { background: rgba(14,27,44,.12); transform: rotate(90deg); }
  .modal-banner {
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8e3d1 100%);
    text-align: center; position: relative;
  }
  .modal-banner::before {
    content:""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(176,138,74,.15) 0%, transparent 60%);
  }
  .modal-banner > * { position: relative; }
  .modal-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
  .modal-offer {
    font-family: 'Fraunces',serif; font-weight: 300;
    font-size: 76px; line-height: 1; color: var(--ink);
    margin: 14px 0 6px; letter-spacing: -.03em;
  }
  .modal-offer em { font-style: italic; color: var(--gold); }
  .modal-sub { font-size: 14px; color: var(--muted); margin: 0; }
  .modal-body { padding: 32px 40px 40px; text-align: center; }
  .modal-body h3 {
    margin: 0 0 12px; font-family:'Fraunces',serif; font-weight: 500;
    font-size: 26px; letter-spacing: -.02em;
  }
  .modal-body p { margin: 0 0 24px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
  .modal-form { display: grid; gap: 12px; }
  .modal-form input {
    width: 100%; padding: 16px 20px; border: 1.5px solid var(--line);
    border-radius: 12px; font-size: 15px; font-family: inherit;
    background: #faf8f2; transition: all .2s; color: var(--ink);
  }
  .modal-form input:focus { outline: 0; border-color: var(--gold); background: #fff; }
  .modal-form .btn { width: 100%; height: 54px; font-size: 15px; }
  .modal-fine { font-size: 11.5px; color: #a0acbc; margin: 16px 0 0; line-height: 1.5; }
  .modal-fine a { text-decoration: underline; }

  /* Step 2 modal (post-signup refer-a-friend) */
  .refer-hero {
    padding: 48px 40px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: #fff; text-align: center; position: relative; overflow: hidden;
  }
  .refer-hero::before {
    content:""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(176,138,74,.25) 0%, transparent 60%);
  }
  .refer-hero > * { position: relative; }
  .refer-check {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1.5px solid rgba(212,164,74,.6);
    display: grid; place-items: center; margin: 0 auto 20px;
  }
  .refer-check svg { width: 32px; height: 32px; color: #d4a44a; }
  .refer-hero h3 { margin: 0 0 8px; font-family:'Fraunces',serif; font-weight: 400; font-size: 28px; letter-spacing: -.02em; }
  .refer-hero p { margin: 0; color: #cbd3c8; font-size: 14px; }
  .refer-body { padding: 36px 40px 40px; }
  .refer-offer {
    background: linear-gradient(135deg, #f4f1e8 0%, #ede8d8 100%);
    border: 1px solid var(--gold); border-radius: 16px;
    padding: 24px; text-align: center; margin-bottom: 24px;
  }
  .refer-offer strong { font-family:'Fraunces',serif; font-size: 38px; color: var(--gold); display: block; line-height: 1; }
  .refer-offer span { font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
  .refer-steps { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
  .refer-steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--ink2); line-height: 1.55; }
  .refer-steps .n {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--ink); color: #fff; font-size: 12px; font-weight: 700;
    display: grid; place-items: center;
  }
  .refer-body .btn { width: 100%; height: 52px; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .hero-grid, .showcase { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { min-height: 500px; }
    .hero-disc { width: 440px; height: 440px; }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .reviews, .bundles { grid-template-columns: 1fr; }
    .bundle.featured { transform: none; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .navlinks { display: none; }
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 44px; }
    .benefits { grid-template-columns: 1fr; }
    .hero-disc { width: 340px; height: 340px; }
    .hero-product { width: 300px; }
    .hero-badge { width: 90px; height: 90px; }
    .hero-badge strong { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .modal { border-radius: 22px; }
    .modal-banner, .modal-body, .refer-hero, .refer-body { padding-left: 26px; padding-right: 26px; }
    .modal-offer { font-size: 60px; }
  }
  /* ========== PAGE HERO (non-home pages) ========== */
  .page-hero {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse 90% 70% at 50% 0%, #eef0e6 0%, var(--bg) 70%);
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .page-hero .wrap { max-width: 820px; }
  .page-hero .section-eyebrow { margin-bottom: 18px; }
  .page-hero h1 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(46px, 5.6vw, 78px);
    line-height: 1.02;
    letter-spacing: -.035em;
    color: var(--ink);
  }
  .page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .page-hero p {
    margin: 26px auto 0;
    max-width: 620px;
    color: var(--ink2);
    font-size: 17px;
    line-height: 1.75;
  }

  /* ========== HOME LINK CARDS ========== */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .card-grid .link-card:nth-child(4),
  .card-grid .link-card:nth-child(5) {
    grid-column: span 1;
  }
  .link-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
  }
  .link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(176,138,74,0) 0%, rgba(176,138,74,.06) 100%);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .link-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
  }
  .link-card:hover::before { opacity: 1; }
  .link-card > * { position: relative; }
  .link-card-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: .1em;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .link-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
  }
  .link-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
  }
  .link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .02em;
    transition: transform .25s ease;
  }
  .link-card:hover .link-arrow {
    color: var(--gold);
    transform: translateX(4px);
  }

  /* ========== QUALITY CARDS (3-col grid used on science/shop) ========== */
  .card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .quality-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all .3s ease;
  }
  .quality-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
  }
  .quality-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #f0ede2 0%, #e5e0cf 100%);
    border: 1px solid var(--line);
    margin-bottom: 22px;
  }
  .quality-icon svg { width: 28px; height: 28px; color: var(--accent); }
  .quality-card h3 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
  }
  .quality-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  /* ========== NAV ACTIVE STATE ========== */
  .navlinks a.active {
    color: var(--ink);
    font-weight: 600;
  }
  .navlinks a.active::after {
    transform: scaleX(1);
    background: var(--gold);
  }

  /* ========== REVIEWS grid: allow 6 reviews ========== */
  .reviews { grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1024px) {
    .reviews { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-3 { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .reviews { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 70px 0 60px; }
  }

  /* ========== NAV DROPDOWN ========== */
  .navdrop { position: relative; }
  .navdrop-trigger {
    display: inline-flex; align-items: center; gap: 4px;
    cursor: pointer;
  }
  .navdrop-trigger .caret { font-size: 10px; color: var(--muted); transition: transform .2s; }
  .navdrop:hover .navdrop-trigger .caret { transform: rotate(180deg); color: var(--gold); }
  .navdrop-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all .25s ease;
    display: flex; flex-direction: column; gap: 2px;
  }
  .navdrop:hover .navdrop-menu,
  .navdrop:focus-within .navdrop-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .navdrop-menu a {
    padding: 12px 16px; border-radius: 10px;
    font-size: 14px; font-weight: 500;
    white-space: nowrap;
    transition: all .15s;
  }
  .navdrop-menu a:hover { background: var(--cream); color: var(--gold); }
  .navdrop-menu a::after { display: none; }

  /* ========== PROSE (article content) ========== */
  .prose { max-width: 820px; margin: 0 auto; }
  .prose h2 {
    margin: 60px 0 20px;
    font-family: 'Fraunces',serif; font-weight: 300;
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.1; letter-spacing: -.025em;
    color: var(--ink);
  }
  .prose h2:first-child { margin-top: 0; }
  .prose h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .prose h3 { margin: 30px 0 12px; font-family: 'Fraunces',serif; font-weight: 500; font-size: 22px; }
  .prose p { margin: 0 0 20px; font-size: 17px; line-height: 1.82; color: var(--ink2); }
  .prose p strong { color: var(--ink); }
  .prose sup a { color: var(--gold); text-decoration: none; font-weight: 700; }
  .bullet-list { margin: 0 0 24px; padding-left: 0; list-style: none; }
  .bullet-list li {
    position: relative; padding: 8px 0 8px 26px;
    font-size: 16.5px; line-height: 1.7; color: var(--ink2);
  }
  .bullet-list li::before {
    content: ""; position: absolute; left: 0; top: 18px;
    width: 14px; height: 1px; background: var(--gold);
  }
  .bullet-list li strong { color: var(--ink); }

  .prose-toc {
    background: var(--cream); border: 1px solid var(--line);
    border-radius: 18px; padding: 24px 28px; margin-bottom: 50px;
  }
  .prose-toc strong {
    display: block; font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  }
  .prose-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
  .prose-toc a {
    font-size: 15px; color: var(--ink2); font-weight: 500;
    transition: color .2s;
  }
  .prose-toc a:hover { color: var(--gold); }

  /* ========== CALLOUTS ========== */
  .callout {
    background: #f4f1e8; border-left: 4px solid var(--gold);
    padding: 20px 26px; margin: 30px 0; border-radius: 0 14px 14px 0;
    font-size: 16px; line-height: 1.7; color: var(--ink2);
  }
  .callout strong { color: var(--ink); }
  .callout-green {
    background: rgba(14,59,46,.06); border-left-color: var(--accent);
  }
  .callout-amber {
    background: #fff6e5; border-left-color: #d4a44a;
  }
  .callout-red {
    background: #fff0ed; border-left-color: #c64b2c;
  }

  /* ========== ARTICLE CTA ========== */
  .article-cta {
    margin: 60px 0 40px;
    background: linear-gradient(135deg, var(--cream) 0%, #ece7d3 100%);
    border: 1px solid var(--line);
    border-radius: 22px; padding: 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .article-cta h3 { margin: 8px 0 6px; font-size: 24px; font-weight: 500; }
  .article-cta p { margin: 0; font-size: 14.5px; color: var(--muted); max-width: 400px; }

  /* ========== SOURCES + DISCLAIMER ========== */
  .sources {
    margin: 50px 0 20px; padding: 26px 30px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px;
  }
  .sources h4 {
    margin: 0 0 16px; font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--muted); font-weight: 700;
  }
  .sources ol {
    margin: 0; padding-left: 20px;
    font-size: 13.5px; color: var(--muted); line-height: 1.8;
  }
  .sources a { color: var(--ink2); text-decoration: underline; text-decoration-color: var(--line); }
  .sources a:hover { color: var(--gold); }

  .disclaimer {
    margin: 20px 0 0; padding: 16px 20px;
    font-size: 12.5px; color: var(--muted); line-height: 1.7;
    border-top: 1px solid var(--line);
    text-align: center; font-style: italic;
  }

  /* ========== STRETCH CARDS ========== */
  .stretch-card {
    display: grid; grid-template-columns: 80px 1fr; gap: 28px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 22px; padding: 32px; margin: 24px 0;
  }
  .stretch-num {
    font-family: 'Fraunces',serif; font-size: 54px; line-height: 1;
    font-weight: 300; color: var(--gold); letter-spacing: -.03em;
  }
  .stretch-card h3 {
    margin: 0 0 10px; font-family: 'Fraunces',serif; font-weight: 500;
    font-size: 24px; color: var(--ink);
  }
  .stretch-card p { font-size: 15.5px; margin-bottom: 12px; }

  /* ========== FOOD GRID ========== */
  .food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 30px; }
  .food-col {
    padding: 26px 28px; border-radius: 18px;
  }
  .food-col h4 {
    margin: 0 0 14px; font-family: 'Fraunces',serif; font-weight: 500;
    font-size: 19px;
  }
  .food-col ul { list-style: none; padding: 0; margin: 0; }
  .food-col li {
    padding: 6px 0 6px 22px; position: relative;
    font-size: 15px; color: var(--ink2);
  }
  .food-col-good { background: rgba(14,59,46,.06); border: 1px solid rgba(14,59,46,.12); }
  .food-col-good h4 { color: var(--accent); }
  .food-col-good li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
  .food-col-bad { background: #fff0ed; border: 1px solid rgba(198,75,44,.15); }
  .food-col-bad h4 { color: #c64b2c; }
  .food-col-bad li::before { content: "−"; position: absolute; left: 0; color: #c64b2c; font-weight: 700; }

  /* ========== RED FLAG LIST ========== */
  .redflag-list { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 14px; }
  .redflag-list li {
    padding: 18px 22px 18px 60px; position: relative;
    background: #fff5f3; border: 1px solid rgba(198,75,44,.18);
    border-radius: 14px; font-size: 15.5px; line-height: 1.65;
    color: var(--ink2);
  }
  .redflag-list li::before {
    content: "!"; position: absolute; left: 20px; top: 18px;
    width: 26px; height: 26px; border-radius: 50%;
    background: #c64b2c; color: #fff;
    font-weight: 800; text-align: center; line-height: 26px;
    font-size: 15px;
  }
  .redflag-list li strong { color: #c64b2c; }

  /* ========== PDF LAYOUT ========== */
  .pdf-layout {
    display: grid; grid-template-columns: .95fr 1fr; gap: 60px;
    align-items: center;
  }
  .pdf-preview {
    position: relative; perspective: 1200px;
    min-height: 480px;
  }
  .pdf-page {
    position: absolute; width: 320px; height: 440px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    padding: 32px 28px;
    transform: rotate(-6deg);
    transition: transform .4s;
  }
  .pdf-page:hover { transform: rotate(-4deg) translateY(-8px); }
  .pdf-page-2 {
    left: 60px; top: 40px; transform: rotate(4deg);
    background: #fff;
  }
  .pdf-page-2:hover { transform: rotate(6deg) translateY(-8px); }
  .pdf-page-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 24px; font-size: 13px; font-weight: 700;
  }
  .pdf-page-header .brand-mark { width: 20px; height: 20px; }
  .pdf-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: .16em;
    color: var(--gold); margin-bottom: 12px;
  }
  .pdf-h1 {
    font-family: 'Fraunces',serif; font-size: 26px;
    line-height: 1.08; color: var(--ink); font-weight: 400;
  }
  .pdf-h2 {
    font-family: 'Fraunces',serif; font-size: 14px;
    color: var(--gold); font-weight: 500; margin: 18px 0 10px;
  }
  .pdf-line {
    height: 4px; background: #f0ede2; border-radius: 2px;
    margin-bottom: 7px;
  }
  .pdf-line.short { width: 60%; }
  .pdf-page-footer {
    position: absolute; bottom: 28px; left: 28px; right: 28px;
    font-size: 10px; color: var(--muted);
    padding-top: 12px; border-top: 1px solid var(--line);
  }

  .pdf-content h2 { margin: 12px 0 28px; font-family: 'Fraunces',serif; font-size: clamp(32px,3.6vw,48px); font-weight: 300; line-height: 1.08; letter-spacing: -.025em; }
  .pdf-content h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
  .pdf-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
  .pdf-checklist li {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 15px; line-height: 1.55; color: var(--ink2);
  }
  .pdf-checklist svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
  .pdf-checklist strong { color: var(--ink); }
  .pdf-form { display: grid; gap: 12px; max-width: 480px; }
  .pdf-form input {
    padding: 16px 20px; border: 1.5px solid var(--line);
    border-radius: 12px; font-size: 15px; font-family: inherit;
    background: #faf8f2; color: var(--ink);
  }
  .pdf-form input:focus { outline: 0; border-color: var(--gold); background: #fff; }
  .pdf-form .btn { height: 54px; font-size: 15px; }

  .toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--ink); color: #fff;
    padding: 18px 26px; border-radius: 14px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    font-size: 14.5px; line-height: 1.5;
    z-index: 200; opacity: 0;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    max-width: 90%;
  }
  .toast svg { width: 24px; height: 24px; color: #d4a44a; flex-shrink: 0; }
  .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

  /* ========== QUIZ ========== */
  .quiz-wrap {
    max-width: 720px; margin: 0 auto;
    background: #fff; border: 1px solid var(--line);
    border-radius: 24px; padding: 48px 50px;
    box-shadow: var(--shadow);
  }
  .quiz-progress {
    height: 4px; background: var(--line); border-radius: 2px;
    overflow: hidden; margin-bottom: 14px;
  }
  .quiz-progress-bar {
    height: 100%; background: linear-gradient(90deg, var(--gold), #d4b366);
    width: 20%; transition: width .4s cubic-bezier(.2,.8,.2,1);
  }
  .quiz-step-count {
    font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 26px;
  }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: quizIn .4s ease; }
  @keyframes quizIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
  .quiz-step h2 {
    margin: 0 0 24px; font-family: 'Fraunces',serif; font-weight: 400;
    font-size: clamp(26px,3.2vw,36px); line-height: 1.15;
    letter-spacing: -.02em; color: var(--ink);
  }
  .quiz-sub { font-size: 14.5px; color: var(--muted); margin: -14px 0 20px; }
  .quiz-options { display: grid; gap: 12px; }
  .quiz-opt {
    display: block; width: 100%; text-align: left;
    padding: 18px 22px; border: 1.5px solid var(--line);
    background: #faf8f2; border-radius: 14px;
    font-size: 15px; font-weight: 500; font-family: inherit;
    color: var(--ink); cursor: pointer;
    transition: all .2s;
  }
  .quiz-opt:hover { border-color: var(--gold); background: #fff; transform: translateX(4px); }
  .quiz-opt.selected { border-color: var(--gold); background: rgba(176,138,74,.08); }
  .quiz-opt-check {
    display: flex; align-items: center; gap: 14px;
  }
  .quiz-opt-check input { width: 18px; height: 18px; accent-color: var(--gold); }
  .quiz-finish {
    background: var(--ink); color: #fff; border-color: var(--ink);
    text-align: center; font-weight: 700; margin-top: 10px;
  }
  .quiz-finish:hover { background: var(--accent); border-color: var(--accent); transform: none; }

  .quiz-result { display: none; }
  .quiz-result.show { display: block; animation: quizIn .5s ease; }
  .quiz-result-banner {
    margin: -48px -50px 32px; padding: 40px 50px;
    color: #fff; text-align: center;
  }
  .quiz-result-banner.ok {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  }
  .quiz-result-banner.urgent {
    background: linear-gradient(135deg, #c64b2c 0%, #9f3820 100%);
  }
  .quiz-result-banner h4 {
    margin: 0 0 6px; font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; opacity: .8;
  }
  .quiz-result-banner div.label {
    font-family: 'Fraunces',serif; font-size: 32px; font-weight: 400;
    line-height: 1.1;
  }
  .quiz-result-body h2 { margin: 0 0 14px; font-family: 'Fraunces',serif; font-weight: 400; font-size: 30px; }
  .quiz-result-body p { font-size: 16px; line-height: 1.75; color: var(--ink2); margin: 0 0 18px; }
  .quiz-result-body h3 { margin: 26px 0 12px; font-family: 'Fraunces',serif; font-weight: 500; font-size: 20px; }
  .quiz-email {
    margin-top: 36px; padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .quiz-email .modal-form { max-width: none; }
  .quiz-email .modal-form .btn { height: 52px; }

  /* ========== STORIES ========== */
  .story-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-bottom: 60px;
  }
  .story {
    background: #fff; border: 1px solid var(--line);
    border-radius: 22px; padding: 36px 32px;
    display: flex; flex-direction: column;
  }
  .story-meta {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 22px; margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .story-name { font-size: 15px; font-weight: 600; color: var(--ink); }
  .story-loc { font-size: 13px; color: var(--muted); }
  .story h2 {
    margin: 0 0 16px;
    font-family: 'Fraunces',serif; font-weight: 400;
    font-size: 22px; line-height: 1.25;
    color: var(--ink); font-style: italic;
  }
  .story p { font-size: 14.5px; line-height: 1.72; color: var(--ink2); margin: 0 0 14px; }
  .story-footer {
    margin-top: auto !important; padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12.5px; color: var(--muted) !important;
    font-style: italic;
  }

  .story-share {
    text-align: center; max-width: 720px; margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--cream) 0%, #ece7d3 100%);
    border-radius: 28px;
  }
  .story-share h2 {
    margin: 14px 0 18px;
    font-family: 'Fraunces',serif; font-weight: 300;
    font-size: clamp(34px,4vw,48px); letter-spacing: -.025em;
  }
  .story-share h2 em { color: var(--gold); font-style: italic; }
  .story-share p { margin: 0 0 24px; font-size: 15.5px; line-height: 1.72; color: var(--ink2); }
  .story-share-fine { font-size: 12.5px !important; color: var(--muted) !important; margin-top: 18px !important; }

  /* ========== FEATURED CARD (home index) ========== */
  .link-card.featured-card { border-color: rgba(176,138,74,.4); background: linear-gradient(135deg, #fff 0%, #faf7ec 100%); }
  .link-card.featured-card .link-card-num { color: var(--accent); font-weight: 700; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .pdf-layout { grid-template-columns: 1fr; gap: 40px; }
    .pdf-preview { min-height: 300px; display: flex; justify-content: center; }
    .pdf-page { position: relative; }
    .pdf-page-2 { left: auto; top: -300px; margin-top: 60px; }
    .story-grid { grid-template-columns: 1fr; }
    .food-grid { grid-template-columns: 1fr; }
    .article-cta { flex-direction: column; align-items: flex-start; }
    .stretch-card { grid-template-columns: 1fr; gap: 10px; padding: 26px; }
    .stretch-num { font-size: 40px; }
    .quiz-wrap { padding: 36px 28px; }
    .quiz-result-banner { margin: -36px -28px 28px; padding: 32px 28px; }
  }
  @media (max-width: 900px) {
    .navlinks { gap: 18px; font-size: 13px; }
  }
  @media (max-width: 640px) {
    .navdrop-menu { position: static; transform: none; box-shadow: none; border: 0; padding: 0; min-width: 0; }
    .prose-toc { padding: 18px 22px; }
  }
