/* ==========================================================================
   Horsewood — hhorsewood.com — style.css
   "Clinical apothecary" system: deep pine green, warm bone, brass accent.
   Distinct from prior builds. Sans fonts only. AA/AAA contrast throughout.
   ========================================================================== */

:root {
  /* Greens */
  --pine:      #16241C;   /* deepest — dark bands, ink */
  --pine-2:    #1E3A2C;   /* cards/rules on dark */
  --pine-mid:  #2E5A43;   /* links, mid accents */
  --pine-line: #D4DBCE;   /* hairline on light */

  /* Warm neutrals */
  --bone:      #FAF7F0;   /* page background */
  --sand:      #EFE7D3;   /* chips, soft sections */
  --sand-2:    #F3EEE2;   /* alt soft section */
  --paper:     #FFFFFF;

  /* Brass */
  --brass:      #C8A44D;  /* buttons, highlights */
  --brass-deep: #8A6D1E;  /* small labels on light, hovers */
  --brass-ink:  #6B5216;  /* darkest brass for text on bone */

  /* Text */
  --ink:     #16241C;     /* body on light — 15:1 on bone */
  --on-dark: #FFFFFF;
  --bone-dk: #F3EEE2;     /* body text on dark */

  --border:      #E4DECF;               /* light hairline (warm) */
  --border-dark: rgba(200,164,77,.22);  /* on dark */

  --r:      18px;
  --r-sm:   12px;
  --r-lg:   26px;
  --r-pill: 999px;

  --shadow:    0 6px 22px rgba(22, 36, 28, .08);
  --shadow-lg: 0 18px 44px rgba(22, 36, 28, .16);

  --sect:  100px;
  --shell: 1180px;

  --disp: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; font-family: var(--body);
  font-size: 18px; font-weight: 400; line-height: 1.75;
  color: var(--ink); background: var(--bone);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .5em; }
a { color: var(--pine-mid); text-underline-offset: 3px; }
a:hover { color: var(--pine); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; } }

/* Type */
h1,h2,h3,h4 { font-family: var(--disp); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; color: var(--pine); }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.95rem, 3.7vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
.lead { font-size: 20px; line-height: 1.7; }
.fine { font-size: 17px; }

.eyebrow {
  font-family: var(--body); font-size: 16px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass-ink); margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 12px; line-height: 1.3;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--brass); }
.eyebrow--c { justify-content: center; }
.on-dark .eyebrow, .dark-band .eyebrow { color: var(--brass); }

/* Shell / sections */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.sect { padding: var(--sect) 0; }
.sect--sand { background: var(--sand-2); }
.sect--tight { padding: 60px 0; }
.dark-band { background: var(--pine); color: var(--on-dark); position: relative; overflow: hidden; }
.dark-band h1,.dark-band h2,.dark-band h3,.dark-band p,.dark-band li { color: var(--on-dark); }
.head { max-width: 750px; margin: 0 0 56px; }
.head--c { margin-left: auto; margin-right: auto; text-align: center; }
.divider { border: 0; border-top: 1px solid var(--border); margin: 0; }

.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2,1fr); }
.g3 { grid-template-columns: repeat(3,1fr); }
.g4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .g3,.g4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .g2,.g3,.g4 { grid-template-columns: 1fr; } }

/* Skip / focus */
.skip { position: absolute; left: 18px; top: -80px; z-index: 300; background: var(--pine); color: #fff; padding: 14px 22px; border-radius: var(--r-sm); font-weight: 600; text-decoration: none; transition: top .15s; }
.skip:focus { top: 16px; color: #fff; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 5px; }

/* Announcement */
.announce { background: var(--pine); color: var(--on-dark); font-size: 16px; padding: 11px 0; }
.announce ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 30px; }
.announce li { margin: 0; display: flex; align-items: center; gap: 9px; }
.announce svg { color: var(--brass); flex: none; }

/* Nav */
.nav-wrap { position: sticky; top: 0; z-index: 100; background: rgba(250,247,240,.94); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--disp); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--pine); text-decoration: none; flex: none; }
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; list-style: none; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a { display: flex; align-items: center; min-height: 44px; padding: 10px 14px; font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; border-radius: var(--r-sm); }
.nav-links a:hover { background: var(--sand); color: var(--pine); }
.nav-links a.active { color: var(--brass-ink); }
.nav .btn { flex: none; margin-left: 8px; }
.burger { display: none; margin-left: auto; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--pine); cursor: pointer; }
@media (max-width: 1040px){
  .burger { display: inline-flex; }
  .nav-links { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--bone); border-bottom: 1px solid var(--border); padding: 8px 24px 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 6px; font-size: 18px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav .btn { display: none; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--body); font-size: 18px; font-weight: 700; line-height: 1.3; padding: 17px 32px; min-height: 58px; border: 2px solid transparent; border-radius: var(--r-pill); text-decoration: none; cursor: pointer; transition: transform .15s, background-color .15s, color .15s, box-shadow .15s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--brass { background: var(--brass); color: var(--pine); box-shadow: 0 6px 18px rgba(200,164,77,.35); }
.btn--brass:hover { background: #d3b160; color: var(--pine); }
.btn--pine { background: var(--pine); color: #fff; }
.btn--pine:hover { background: var(--pine-2); color: #fff; }
.btn--line { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn--line:hover { background: var(--pine); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--sm { min-height: 46px; padding: 11px 22px; font-size: 16px; }
.btn--lg { min-height: 64px; padding: 20px 40px; font-size: 19px; }
.btn--wide { display: flex; width: 100%; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
   radial-gradient(circle at 12% 20%, rgba(200,164,77,.10), transparent 42%),
   radial-gradient(circle at 92% 88%, rgba(46,90,67,.14), transparent 46%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; padding: 74px 0 88px; }
.hero h1 span { color: var(--brass-ink); }
.hero .lead { max-width: 40ch; }
.tagpill { display: inline-flex; align-items: center; gap: 9px; background: var(--sand); color: var(--brass-ink); font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 22px; }
.tagpill svg { color: var(--brass-deep); }
.proof { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.proof li { margin: 0; display: flex; align-items: flex-start; gap: 12px; font-size: 18px; font-weight: 500; }
.proof .tick { flex: none; margin-top: 3px; width: 26px; height: 26px; border-radius: 50%; background: var(--pine); color: var(--brass); display: flex; align-items: center; justify-content: center; }
.rating { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; font-size: 17px; font-weight: 500; }
.stars { display: inline-flex; gap: 2px; color: var(--brass); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 22px; font-size: 17px; display: flex; align-items: center; gap: 9px; }
.hero-trust svg { color: var(--pine-mid); flex: none; }
.hero-media { position: relative; }
.hero-frame { position: relative; background: var(--pine); border-radius: var(--r-lg); padding: 30px; overflow: hidden; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(200,164,77,.22), transparent 60%); }
.hero-frame img { position: relative; z-index: 1; margin: 0 auto; filter: drop-shadow(0 22px 40px rgba(0,0,0,.5)); max-height: 440px; width: auto; }
@media (max-width: 900px){ .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 52px; } .hero-media { order: -1; } .hero-frame img { max-height: 340px; } }

/* Marquee trust */
.trust { background: var(--pine); color: #fff; padding: 26px 0; }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.trust li { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; font-size: 16px; font-weight: 600; line-height: 1.35; }
.trust svg { color: var(--brass); flex: none; }
@media (max-width: 940px){ .trust ul { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px){ .trust ul { grid-template-columns: repeat(2,1fr); } }

/* Cards */
.card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card-ic { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 15px; background: var(--sand); color: var(--brass-ink); margin-bottom: 18px; }
.card--num { counter-increment: c; }
.card--num .card-ic { background: var(--pine); color: var(--brass); font-family: var(--disp); font-weight: 700; font-size: 20px; }
.card--num .card-ic::before { content: counter(c, decimal-leading-zero); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--flip .split-media { order: -1; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 34px; } .split--flip .split-media { order: 0; } }
.split-media img { border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--shadow); width: 100%; }

/* Ingredients */
.ing-list { display: grid; gap: 16px; }
.ing { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: baseline; border: 1px solid var(--border); border-radius: var(--r); padding: 24px 26px; background: var(--paper); position: relative; }
.ing::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; border-radius: 4px; background: var(--brass); }
.ing h3 { grid-column: 1; margin: 0; font-size: 1.3rem; padding-left: 14px; }
.ing .dose { grid-column: 2; grid-row: 1; font-family: var(--disp); font-weight: 600; font-size: 18px; color: var(--brass-ink); white-space: nowrap; }
.ing p { grid-column: 1 / -1; margin: 0; padding-left: 14px; }
.ing .latin { font-weight: 400; color: var(--ink); font-size: 17px; }

/* pillars share .card--num via grid */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: c; }
@media (max-width: 900px){ .pillars { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pillars { grid-template-columns: 1fr; } }

/* Lists */
.ticks, .crosses { list-style: none; padding: 0; margin: 0; }
.ticks li, .crosses li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 14px; }
.ticks svg { color: var(--pine-mid); flex: none; margin-top: 5px; }
.crosses svg { color: var(--brass-deep); flex: none; margin-top: 5px; }
.dark-band .ticks svg { color: var(--brass); }

/* Callout */
.callout { border: 1px solid var(--border); border-left: 6px solid var(--brass); background: var(--sand-2); border-radius: var(--r); padding: 28px 30px; }
.callout--warn { border-left-color: #A23B2B; background: #FBF0EC; border-color: #F0D9D2; }
.callout h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.callout--warn h3 { color: #8A2E20; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }

/* Suitability */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px){ .duo { grid-template-columns: 1fr; } }
.duo-box { border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; background: var(--paper); }
.duo-box h3 { display: flex; align-items: center; gap: 11px; }
.duo-box--yes h3 { color: var(--pine-mid); }
.duo-box--no h3 { color: var(--brass-deep); }

/* Table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 18px; }
table.cmp th, table.cmp td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); line-height: 1.6; vertical-align: top; }
table.cmp thead th { background: var(--pine); color: #fff; font-weight: 600; border-bottom: 0; font-family: var(--disp); }
table.cmp thead th.hl { background: var(--pine-2); }
table.cmp tbody th { font-weight: 600; background: var(--sand-2); width: 26%; }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp .col-hl { background: #FBF7EC; font-weight: 500; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
@media (max-width: 940px){ .tiers { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }
.tier { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 34px 28px 30px; box-shadow: var(--shadow); }
.tier--pick { border: 2px solid var(--brass); box-shadow: var(--shadow-lg); }
.tier-flag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--brass); color: var(--pine); font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 20px; border-radius: var(--r-pill); white-space: nowrap; }
.tier-tag { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-ink); margin: 0 0 6px; }
.tier h3 { font-size: 1.7rem; margin-bottom: 2px; }
.tier-sup { font-size: 17px; margin: 0 0 18px; font-weight: 500; }
.tier img { margin: 0 auto 18px; max-height: 178px; width: auto; }
.tier-reg { font-size: 17px; text-decoration: line-through; margin: 0; opacity: .7; }
.tier-now { display: flex; align-items: baseline; gap: 8px; margin: 2px 0; font-family: var(--disp); }
.tier-now b { font-size: 2.7rem; font-weight: 700; color: var(--pine); line-height: 1; letter-spacing: -.03em; }
.tier-now span { font-size: 18px; font-weight: 600; font-family: var(--body); }
.tier-total { font-size: 18px; margin: 0 0 20px; font-weight: 500; }
.tier ul { list-style: none; padding: 0; margin: 0 0 26px; }
.tier ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 18px; margin-bottom: 11px; }
.tier ul svg { color: var(--pine-mid); flex: none; margin-top: 5px; }
.tier .btn { margin-top: auto; }
.pay { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; list-style: none; padding: 0; margin: 0; }
.pay li { margin: 0; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 8px 16px; font-size: 16px; font-weight: 600; background: var(--paper); }
.dark-band .pay li { border-color: var(--border-dark); background: rgba(255,255,255,.06); color: #fff; }

/* Bonuses */
.bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 780px){ .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.bonus { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.bonus img { border-radius: var(--r-sm); margin: 0 auto 18px; width: 100%; max-width: 220px; }
.bonus .tag { display: inline-block; background: var(--sand); color: var(--brass-ink); font-size: 16px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 13px; border-radius: var(--r-pill); margin-bottom: 12px; }
.bonus h3 { font-size: 1.2rem; }

/* Guarantee */
.promise { display: grid; grid-template-columns: 260px 1fr; gap: 46px; align-items: center; }
@media (max-width: 760px){ .promise { grid-template-columns: 1fr; gap: 28px; text-align: center; } }
.promise img { border-radius: var(--r); width: 100%; }

/* Testimonials */
.reviews { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 780px){ .reviews { grid-template-columns: 1fr; } }
.review { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 30px 26px; box-shadow: var(--shadow); }
.review .stars { margin-bottom: 14px; }
.review blockquote { margin: 0 0 20px; font-size: 18px; }
.review-by { display: flex; align-items: center; gap: 14px; }
.avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--pine); color: var(--brass); display: flex; align-items: center; justify-content: center; font-family: var(--disp); font-weight: 700; font-size: 20px; }
.review-by b { display: block; font-size: 17px; }
.review-by span { font-size: 16px; display: flex; align-items: center; gap: 6px; }
.review-by span svg { color: var(--pine-mid); }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 24px 4px; font-family: var(--disp); font-size: 20px; font-weight: 600; color: var(--pine); line-height: 1.4; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-ink); }
.faq .sign { flex: none; width: 26px; height: 26px; position: relative; margin-top: 6px; }
.faq .sign::before, .faq .sign::after { content: ""; position: absolute; background: var(--brass-deep); border-radius: 2px; transition: transform .2s, opacity .2s; }
.faq .sign::before { left: 2px; right: 2px; top: 11px; height: 4px; }
.faq .sign::after { top: 2px; bottom: 2px; left: 11px; width: 4px; }
.faq details[open] .sign::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 4px 26px; max-width: 64ch; }

/* Article cards */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px){ .posts { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .posts { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow); }
.post-card .kicker { font-size: 16px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-ink); margin: 0 0 10px; }
.post-card h3 { margin-bottom: 10px; }
.post-card h3 a { color: var(--pine); text-decoration: none; }
.post-card h3 a:hover { color: var(--brass-ink); }
.post-card p { margin-bottom: 18px; }
.post-card .more { margin-top: auto; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.post-card .more:hover { text-decoration: underline; }

/* Final CTA */
.final { text-align: center; padding: 92px 0; }
.final-in { position: relative; z-index: 1; }
.final img { margin: 0 auto 28px; max-height: 300px; width: auto; filter: drop-shadow(0 18px 36px rgba(0,0,0,.5)); }
.final h2 { font-size: clamp(2rem,4.5vw,3rem); max-width: 20ch; margin: 0 auto .45em; }
.final .lead { max-width: 56ch; margin: 0 auto 32px; }
.final-marks { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; list-style: none; padding: 0; margin: 30px 0 0; }
.final-marks li { margin: 0; display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 500; }
.final-marks svg { color: var(--brass); flex: none; }

/* Footer */
.footer { background: var(--pine); color: #fff; padding: 66px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer h3 { font-family: var(--body); font-size: 16px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #fff; text-decoration: none; display: inline-block; padding: 5px 0; min-height: 30px; }
.footer a:hover { color: var(--brass); text-decoration: underline; }
.footer p { color: #fff; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--disp); font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; margin-bottom: 16px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 12px; }
.footer-contact a { color: var(--brass); }
.footer-legal { border-top: 1px solid var(--border-dark); margin-top: 44px; padding-top: 28px; }
.footer-legal p { font-size: 17px; line-height: 1.7; margin-bottom: 15px; }
.fda { border: 1px solid var(--border-dark); border-radius: var(--r); padding: 20px 22px; background: rgba(255,255,255,.04); margin-bottom: 20px; }
.fda b { color: var(--brass); }

/* Floating UI */
.top-btn { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: var(--pine); color: #fff; border: 2px solid var(--brass); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; box-shadow: var(--shadow-lg); }
.top-btn.on { opacity: 1; visibility: visible; }
@media (max-width: 900px){ .top-btn { bottom: 94px; right: 16px; } }
.bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; background: var(--bone); border-top: 1px solid var(--border); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 16px rgba(22,36,28,.12); }
.bar .btn { width: 100%; }
@media (max-width: 900px){ .bar { display: block; } body { padding-bottom: 86px; } }

/* Exit popup */
.veil { position: fixed; inset: 0; z-index: 200; background: rgba(22,36,28,.8); display: none; align-items: center; justify-content: center; padding: 20px; }
.veil.on { display: flex; }
.sheet { background: var(--bone); border-radius: var(--r-lg); max-width: 560px; width: 100%; padding: 42px 34px 34px; position: relative; box-shadow: var(--shadow-lg); text-align: center; max-height: 92vh; overflow-y: auto; }
.sheet h2 { font-size: clamp(1.7rem,4vw,2.2rem); }
.sheet p { font-size: 19px; }
.countdown { display: inline-flex; align-items: center; gap: 10px; background: var(--pine); color: #fff; font-family: var(--disp); font-size: 22px; font-weight: 700; padding: 12px 22px; border-radius: var(--r); margin: 6px 0 20px; letter-spacing: .04em; }
.countdown svg { color: var(--brass); }
.countdown b { font-variant-numeric: tabular-nums; }
.x-btn { position: absolute; top: 12px; right: 12px; width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--sand); border: 1px solid var(--border); color: var(--pine); font-size: 26px; line-height: 1; cursor: pointer; }
.x-btn:hover { background: var(--sand-2); }
.sheet ul { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; display: inline-block; }
.sheet ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 19px; margin-bottom: 12px; }
.sheet ul svg { color: var(--pine-mid); flex: none; margin-top: 6px; }
.pass { background: none; border: 0; font-family: inherit; font-size: 18px; font-weight: 500; color: var(--ink); text-decoration: underline; cursor: pointer; margin-top: 16px; padding: 12px; min-height: 44px; }

/* Utility */
.mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.center { text-align: center; } .mb-0 { margin-bottom: 0; }
.sr { position: absolute!important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media (max-width: 620px){ :root { --sect: 64px; } .card,.tier { padding: 26px 22px; } }
