/* ==========================================================================
   rovina.co.za — Rovina Astaxanthin, South Africa
   Independent affiliate landing page
   ========================================================================== */

:root {
  /* Brand palette — sampled from Rovina product photography */
  --wine-900: #140407;
  --wine-800: #1A0508;
  --wine-700: #2B080F;
  --wine-600: #430C16;
  --wine-500: #5A0F1A;
  --wine-400: #7A1B28;
  --rose-500: #9C4450;
  --rose-400: #B8646E;
  --rose-300: #D79AA2;
  --blush:    #F3DDE0;
  --cream:    #FAF6F2;
  --cream-2:  #F2EAE3;
  --cream-3:  #E7DBD3;
  --ink:      #1A1214;
  --ink-2:    #4A3A3D;
  --muted:    #6E5B5E;
  --muted-dk: #C3A9AD;

  --gold:     #C9A227;

  --logo-gap: var(--cream);

  --maxw: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(20, 4, 7, .06), 0 4px 14px rgba(20, 4, 7, .05);
  --shadow-md: 0 2px 6px rgba(20, 4, 7, .07), 0 14px 40px rgba(20, 4, 7, .10);
  --shadow-lg: 0 4px 12px rgba(20, 4, 7, .10), 0 30px 70px rgba(20, 4, 7, .18);

  --ff-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0 0 .55em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 { font-size: clamp(2.3rem, 1.35rem + 4.2vw, 4.25rem); text-wrap: balance; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.6vw, 3rem); text-wrap: balance; }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); line-height: 1.22; }
h4 { font-size: 1.06rem; line-height: 1.3; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--wine-500); }

:focus-visible {
  outline: 3px solid var(--rose-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 840px; }

section { padding-block: clamp(3.75rem, 2rem + 7vw, 7.5rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}

.lede {
  font-size: clamp(1.06rem, 1rem + .38vw, 1.26rem);
  line-height: 1.6;
  color: var(--ink-2);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 1.5rem + 2.5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor; opacity: .55; flex: none;
}

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--wine-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 2em;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -.005em;
  line-height: 1.1;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
  box-shadow: 0 2px 6px rgba(90, 15, 26, .22), 0 12px 30px rgba(90, 15, 26, .26);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(90,15,26,.26), 0 20px 44px rgba(90,15,26,.32); background: var(--wine-400); }
.btn:active { transform: translateY(0); }

.btn .arw { transition: transform .22s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--lg { padding: 1.15em 2.25em; font-size: 1.075rem; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: rgba(90, 15, 26, .28);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(90, 15, 26, .06); border-color: rgba(90,15,26,.45); box-shadow: none; }

.btn--light {
  --btn-bg: var(--blush);
  --btn-fg: var(--wine-700);
  box-shadow: 0 2px 8px rgba(0,0,0,.2), 0 16px 40px rgba(0,0,0,.3);
}
.btn--light:hover { background: #fff; }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--blush);
  border-color: rgba(243, 221, 224, .35);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(243,221,224,.1); border-color: rgba(243,221,224,.6); box-shadow: none; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.cta-note {
  font-size: .855rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 1.05rem 0 0;
  max-width: 46ch;
}
.cta-note--light { color: var(--muted-dk); }

/* ---------- Announce bar ---------- */

.announce {
  background: var(--wine-900);
  color: var(--blush);
  font-size: .8rem;
  letter-spacing: .02em;
  text-align: center;
  padding: .62rem var(--gut);
}
.announce ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.5rem;
}
.announce li { display: inline-flex; align-items: center; gap: .42rem; }
.announce svg { width: 14px; height: 14px; flex: none; color: var(--rose-300); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(90, 15, 26, .1);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--wine-500);
  flex: none;
}
.brand svg { width: 30px; height: 30px; color: var(--wine-500); }
.brand b {
  font-family: var(--ff-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--wine-600);
  line-height: 1;
}
.brand .brand-text { display: block; }
.brand .brand-sub {
  display: block;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-500);
  font-weight: 600;
  margin-top: .22rem;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.6vw, 1.9rem);
}
.nav a {
  font-size: .9rem;
  font-weight: 520;
  text-decoration: none;
  color: var(--ink-2);
  transition: color .18s;
  white-space: nowrap;
}
.nav a:hover { color: var(--wine-500); }
.nav .btn { padding: .72em 1.4em; font-size: .9rem; color: var(--btn-fg); }
.nav .btn:hover { color: var(--btn-fg); }

@media (max-width: 900px) { .nav .nav-link { display: none; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(122, 27, 40, .55) 0%, transparent 58%),
    radial-gradient(90% 70% at 8% 100%, rgba(90, 15, 26, .5) 0%, transparent 62%),
    linear-gradient(168deg, var(--wine-800) 0%, var(--wine-900) 55%, #0E0305 100%);
  color: var(--blush);
  overflow: hidden;
  padding-block: clamp(3.25rem, 2rem + 6vw, 6.5rem);
  --logo-gap: var(--wine-800);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .05;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2.25rem, 4vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
}

.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 em {
  font-style: normal;
  color: var(--rose-300);
  display: inline-block;
}
.hero .lede { color: rgba(243, 221, 224, .84); max-width: 54ch; }
.hero .eyebrow { color: var(--rose-300); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-media .float-badge {
  position: absolute;
  bottom: -18px;
  left: -14px;
  background: var(--cream);
  color: var(--wine-700);
  border-radius: 14px;
  padding: .82rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 260px;
}
.hero-media .float-badge strong {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  color: var(--wine-500);
}
.hero-media .float-badge .fb-text { display: block; }
.hero-media .float-badge .fb-sub {
  font-size: .74rem;
  line-height: 1.32;
  color: var(--muted);
  display: block;
  margin-top: .16rem;
}
.hero-media .float-badge svg { width: 30px; height: 30px; color: var(--rose-500); flex: none; }
@media (max-width: 940px) { .hero-media .float-badge { left: 8px; bottom: -14px; } }

/* Hero stat strip */
.hero-stats {
  list-style: none;
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  padding: clamp(1.4rem, 2.5vw, 1.9rem) 0 0;
  border-top: 1px solid rgba(243, 221, 224, .16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

.hero-stats dt {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 1.05rem + 1.3vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.hero-stats dd {
  margin: .45rem 0 0;
  font-size: .8rem;
  line-height: 1.42;
  color: rgba(243, 221, 224, .68);
}

/* ---------- Logo / trust strip ---------- */

.trust-strip {
  background: var(--cream-2);
  border-bottom: 1px solid rgba(90, 15, 26, .08);
  padding-block: 1.5rem;
}
.trust-strip ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem clamp(1.25rem, 3.5vw, 3rem);
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 560;
  letter-spacing: .01em;
  color: var(--ink-2);
}
.trust-strip svg { width: 17px; height: 17px; color: var(--rose-500); flex: none; }

/* ---------- Generic surfaces ---------- */

.surface-cream  { background: var(--cream); }
.surface-warm   { background: var(--cream-2); }
.surface-dark {
  background:
    radial-gradient(100% 80% at 85% 0%, rgba(122,27,40,.42) 0%, transparent 60%),
    linear-gradient(170deg, var(--wine-800), var(--wine-900));
  color: var(--blush);
  --logo-gap: var(--wine-800);
}
.surface-dark h2, .surface-dark h3 { color: #fff; }
.surface-dark .lede { color: rgba(243,221,224,.8); }
.surface-dark .eyebrow { color: var(--rose-300); }

/* ---------- Split feature blocks ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split--flip .split-media { order: -1; }
@media (max-width: 880px) { .split--flip .split-media { order: 0; } }

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.surface-dark .split-media img { box-shadow: 0 30px 70px rgba(0,0,0,.5); }

/* ---------- Potency ---------- */

.potency-figure {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--radius);
  background: rgba(243, 221, 224, .05);
  border: 1px solid rgba(243, 221, 224, .13);
}
.potency-figure b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(3.25rem, 2rem + 7vw, 6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.035em;
  color: #fff;
  background: linear-gradient(140deg, #fff 20%, var(--rose-300) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.potency-figure span {
  display: block;
  margin-top: .5rem;
  font-size: .95rem;
  color: rgba(243,221,224,.78);
}

.compare-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.compare-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(243,221,224,.05);
  border: 1px solid rgba(243,221,224,.11);
  font-size: .92rem;
}
.compare-list b {
  font-family: var(--ff-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--rose-300);
  letter-spacing: -.01em;
}

/* ---------- Benefit cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.card {
  background: #fff;
  border: 1px solid rgba(90, 15, 26, .1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(90, 15, 26, .22);
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--muted); margin: 0; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--blush), #FBEEF0);
  border: 1px solid rgba(90,15,26,.1);
  margin-bottom: 1.15rem;
}
.card-icon svg { width: 23px; height: 23px; color: var(--wine-500); }

/* ---------- Evidence / science ---------- */

.evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.ev {
  background: rgba(243,221,224,.045);
  border: 1px solid rgba(243,221,224,.13);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
}
.ev-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 640;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-300);
  background: rgba(215, 154, 162, .12);
  border: 1px solid rgba(215,154,162,.24);
  border-radius: 999px;
  padding: .34rem .78rem;
  margin-bottom: 1rem;
}
.ev h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.ev p { font-size: .93rem; color: rgba(243,221,224,.74); margin: 0; }
.ev-meta {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(243,221,224,.12);
  font-size: .78rem;
  color: rgba(243,221,224,.55);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.ev-meta svg { width: 14px; height: 14px; flex: none; }

/* ---------- Comparison table ---------- */

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(90,15,26,.12);
  background: #fff;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
table.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .94rem;
}
table.compare th, table.compare td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(90,15,26,.09);
  vertical-align: middle;
}
table.compare thead th {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 660;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream-2);
  white-space: nowrap;
}
table.compare thead th.is-rovina { color: #fff; background: var(--wine-500); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td.is-rovina { background: rgba(243, 221, 224, .34); font-weight: 560; color: var(--wine-700); }
table.compare th[scope="row"] { font-weight: 560; color: var(--ink); }
table.compare .ico { display: inline-flex; align-items: center; gap: .5rem; }
table.compare .ico svg { width: 16px; height: 16px; flex: none; }
.ico--yes svg { color: #2F7D4F; }
.ico--no svg { color: var(--rose-500); opacity: .75; }

/* ---------- Numbered how-to ---------- */

.steps {
  list-style: none;
  counter-reset: s;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.15rem;
}
.steps li {
  counter-increment: s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}
.steps li::before {
  content: counter(s);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--wine-600);
  background: var(--blush);
  border: 1px solid rgba(90,15,26,.14);
  flex: none;
}
.steps h4 { margin-bottom: .22rem; }
.steps p { font-size: .93rem; color: var(--muted); margin: 0; }

.surface-dark .steps li::before {
  color: var(--blush);
  background: rgba(243,221,224,.1);
  border-color: rgba(243,221,224,.2);
}
.surface-dark .steps p { color: rgba(243,221,224,.72); }

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.quote {
  background: #fff;
  border: 1px solid rgba(90,15,26,.1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.3vw, 1.95rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 2px; margin-bottom: .95rem; }
.stars svg { width: 16px; height: 16px; color: var(--gold); }
.quote blockquote {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -.008em;
}
.quote figcaption {
  margin-top: auto;
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.quote figcaption b { color: var(--ink); font-weight: 600; }
.verified {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: #2F7D4F;
}
.verified svg { width: 13px; height: 13px; }

/* ---------- Guarantee ---------- */

.guarantee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(90,15,26,.12);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

.seal {
  width: clamp(110px, 16vw, 148px);
  height: clamp(110px, 16vw, 148px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 34% 26%, var(--wine-400), var(--wine-600) 62%, var(--wine-700));
  color: var(--blush);
  box-shadow: 0 12px 34px rgba(90,15,26,.34), inset 0 0 0 4px rgba(243,221,224,.18);
  flex: none;
}
.seal b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  line-height: 1;
  color: #fff;
  font-weight: 600;
}
.seal span {
  display: block;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: .3rem;
  opacity: .88;
}

/* ---------- Price card ---------- */

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: start;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid rgba(90,15,26,.14);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.8vw, 2.25rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wine-500), var(--rose-400), var(--wine-500));
}
.price-card h3 { margin-bottom: .3rem; }
.price-card .sub { font-size: .88rem; color: var(--muted); margin: 0 0 1.35rem; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-bottom: .3rem;
  flex-wrap: wrap;
}
.price-row .amt {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 1.8rem + 2.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.028em;
  color: var(--wine-600);
}
.price-row .per { font-size: .92rem; color: var(--muted); }
.price-fine { font-size: .8rem; color: var(--muted); margin: 0 0 1.5rem; line-height: 1.5; }

.incl {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: .68rem;
}
.incl li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .68rem;
  align-items: start;
  font-size: .93rem;
  line-height: 1.5;
}
.incl svg { width: 18px; height: 18px; color: #2F7D4F; margin-top: .18rem; flex: none; }
.incl b { font-weight: 600; }

.price-card .btn { width: 100%; }

.notice {
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem;
  font-size: .89rem;
  line-height: 1.55;
  background: rgba(201, 162, 39, .09);
  border: 1px solid rgba(201, 162, 39, .3);
  color: #6B5416;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
}
.notice svg { width: 19px; height: 19px; color: #A8801A; margin-top: .12rem; flex: none; }
.notice strong { display: block; margin-bottom: .18rem; color: #5A460F; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .75rem; }
.faq details {
  background: #fff;
  border: 1px solid rgba(90,15,26,.11);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s;
}
.faq details[open] { border-color: rgba(90,15,26,.25); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3.2rem 1.1rem 1.35rem;
  font-weight: 580;
  font-size: 1rem;
  line-height: 1.45;
  position: relative;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--rose-500);
  border-bottom: 2px solid var(--rose-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq summary:hover { color: var(--wine-500); }
.faq .faq-body { padding: 0 1.35rem 1.3rem; font-size: .95rem; color: var(--muted); }
.faq .faq-body p { margin-bottom: .8rem; }

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; }
.final-cta .wrap { max-width: 780px; }
.final-cta h2 { margin-bottom: .45em; }
.final-cta .cta-group { justify-content: center; }
.final-cta .cta-note { margin-inline: auto; text-align: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--wine-900);
  color: rgba(243, 221, 224, .62);
  font-size: .87rem;
  padding-block: clamp(2.75rem, 4vw, 4rem) 2rem;
  --logo-gap: var(--wine-900);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(243,221,224,.13);
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; } }

.site-footer .brand b { color: var(--blush); }
.site-footer .brand svg { color: var(--rose-300); }
.site-footer .brand .brand-sub { color: var(--rose-400); }
.site-footer h4 {
  font-family: var(--ff-body);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: .9rem;
  font-weight: 650;
}
.site-footer a { color: rgba(243,221,224,.8); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.disclosure {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.15rem;
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(243,221,224,.5);
}
.disclosure strong { color: rgba(243,221,224,.78); }
.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,221,224,.13);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(243,221,224,.45);
}

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: .7rem var(--gut) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(20, 4, 7, .93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(243,221,224,.14);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform .32s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sc-copy { color: var(--blush); font-size: .8rem; line-height: 1.3; }
.sticky-cta .sc-copy b { display: block; font-size: .92rem; color: #fff; font-weight: 600; }
.sticky-cta .btn { flex: none; padding: .82em 1.5em; font-size: .92rem; }
@media (min-width: 861px) { .sticky-cta { display: none; } }
@media (max-width: 420px) { .sticky-cta .sc-copy { display: none; } .sticky-cta .btn { flex: 1; } }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--wine-500);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.mt-lg { margin-top: clamp(2.25rem, 4vw, 3.5rem); }
.center { text-align: center; }

/* ---------- Small-screen adjustments ---------- */

@media (max-width: 560px) {
  /* The full brand lock-up + CTA overflows a 390px header. Drop the sub-line. */
  .site-header .wrap { gap: .75rem; }
  .brand .brand-sub { display: none; }
  .brand b { font-size: 1.05rem; }
  .brand svg { width: 26px; height: 26px; }
  .nav .btn { padding: .68em 1.15em; font-size: .85rem; }

  /* Three stacked announce lines eat too much of the fold. */
  .announce li:nth-child(2) { display: none; }
  .announce { font-size: .76rem; }
}

/* Keep the sticky CTA from covering the end of the footer. */
@media (max-width: 860px) {
  body { padding-bottom: 78px; }
}

/* ---------- Spacing / one-off utilities ----------
   These exist so the markup carries no inline `style` attributes, which lets
   the nginx CSP keep `style-src 'self'` with no 'unsafe-inline'. */

.mt-sm  { margin-top: 1.1rem; }
.mt-md  { margin-top: 1.6rem; }
.mt-cta { margin-top: 1.9rem; }
.mt-2   { margin-top: 2rem; }
.mt-3   { margin-top: 2.5rem; }
.mt-note{ margin-top: 1.75rem; }

.sprite { position: absolute; }
.measure { max-width: 46ch; }
.align-center { align-items: center; }

.note-fine {
  font-size: .8rem;
  color: rgba(243, 221, 224, .5);
  margin-top: 1rem;
}
.guarantee-copy { margin: 0; color: var(--muted); }
.cta-note--centered { text-align: center; margin-inline: auto; }

/* The "being straight with you" panel reuses .notice on a dark section. */
.notice--dark {
  background: rgba(243, 221, 224, .05);
  border-color: rgba(243, 221, 224, .16);
  color: rgba(243, 221, 224, .72);
}
.notice--dark svg { color: var(--rose-300); }
.notice--dark strong { color: var(--blush); }
