/* ==========================================================================
   HoneyFil — Design System
   Palette sourced from official product packaging + brand imagery:
   deep black, honey-amber gold, and a deep wine-red pulled from the gummy
   itself (signature accent used in The Hive ingredient grid).
   ========================================================================== */

:root {
  /* Color */
  --black: #0D0D0D;
  --panel: #18140E;
  --gold: #D4A017;
  --gold-deep: #B8860B;
  --honey: #E8A33D;
  --wine: #7A2436;
  --wine-deep: #5C1B28;
  --white: #FFFFFF;
  --offwhite: #F9F6F0;
  --ink: #000000;
  --border-light: #E8DCC0;

  /* Type */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;

  /* Radius / Shadow */
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-elevated: 0px 5px 20px 1px rgba(0, 0, 0, 0.35);
  --shadow-standard: 0px 4px 16px rgba(0, 0, 0, 0.12);

  /* Spacing scale */
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.25em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.25em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-xl) 0; }
.section--tight { padding: var(--space-lg) 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--panel { background: var(--offwhite); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block; }

.section-head { max-width: 720px; margin: 0 auto var(--space-lg); text-align: center; }
.section-head p { font-size: 1.1rem; }
.section--dark .section-head p, .section--dark p { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 1.1rem 2.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--primary { background: var(--gold); color: var(--black); box-shadow: var(--shadow-standard); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-elevated); }
.btn--dark { background: var(--black); color: var(--white); border-color: var(--gold); }
.btn--dark:hover { background: #000; box-shadow: var(--shadow-elevated); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--block { width: 100%; }

/* Ticker */
.ticker {
  background: var(--wine-deep);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--gold);
}
.ticker__track { display: inline-flex; gap: 3rem; padding: 0.6rem 0; animation: ticker 28s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: 0.5rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212,160,23,0.35);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; max-width: 1180px; margin: 0 auto; position: relative; }
.nav__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }
.nav__logo .hex {
  width: 30px; height: 30px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 15px; font-weight: 800;
}
.nav__links { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--white); font-size: 16px; font-weight: 600; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; }
.nav__links a:hover { border-color: var(--gold); }
.nav__toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  font-size: 1.3rem;
  cursor: pointer;
  min-width: 44px; min-height: 44px;
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--gold);
  }
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--black);
  padding: 1rem 1.5rem; z-index: 999; font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Hero */
.hero { background: var(--black); color: var(--white); position: relative; overflow: hidden; padding: var(--space-xl) 0; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 40%, rgba(212,160,23,0.06) 100%),
    repeating-linear-gradient(60deg, rgba(212,160,23,0.05) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(-60deg, rgba(212,160,23,0.05) 0 2px, transparent 2px 42px);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: center; position: relative; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,160,23,0.12); border: 1px solid var(--gold); color: var(--honey);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--honey); }
.hero__sub { font-size: 1.2rem; max-width: 46ch; color: var(--white); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.hero__chips span { border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.95rem; font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__figure { position: relative; text-align: center; }
.hero__figure img { border-radius: var(--radius); margin: 0 auto; filter: drop-shadow(0 25px 40px rgba(0,0,0,0.5)); }
.hero__stat {
  position: absolute; bottom: 10%; left: -10px;
  background: var(--white); color: var(--black);
  border-radius: var(--radius-sm); padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-elevated);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.5rem;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__figure { order: -1; max-width: 280px; margin: 0 auto 1rem; }
}

/* Trust badges */
.trust-strip { background: var(--offwhite); border-bottom: 1px solid var(--border-light); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; padding: var(--space-md) 0; text-align: center; }
.trust-grid__item { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-grid__item .icon { font-size: 1.8rem; }

/* Split content */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-lg); align-items: center; }
.split--reverse { grid-template-columns: 1.15fr 0.85fr; }
.split--reverse .split__figure { order: 2; }
.split__figure img { border-radius: var(--radius); box-shadow: var(--shadow-elevated); }
@media (max-width: 850px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__figure { order: -1; }
  .split__figure { max-width: 380px; margin: 0 auto; }
}

/* Card grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 850px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (min-width: 851px) and (max-width: 1050px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-standard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.card .icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--black); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { margin-bottom: 0; font-size: 1rem; }

/* The Hive — signature ingredient honeycomb */
.hive-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 920px; margin: 0 auto; }
.hex-cell {
  width: 190px; aspect-ratio: 0.87;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--panel); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.6rem 1.4rem; position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hex-cell:nth-child(even) { margin-top: 60px; }
.hex-cell:hover, .hex-cell:focus-within { background: var(--wine); transform: scale(1.04); }
.hex-cell .num { font-family: var(--font-display); font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; }
.hex-cell h4 { font-size: 0.98rem; margin: 0.4rem 0 0.35rem; font-family: var(--font-display); line-height: 1.25; }
.hex-cell p { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.5; }
@media (max-width: 700px) {
  .hex-cell { width: 150px; padding: 1.2rem 1rem; }
  .hex-cell:nth-child(even) { margin-top: 40px; }
  .hex-cell h4 { font-size: 0.85rem; }
  .hex-cell p { font-size: 0.72rem; }
}
@media (max-width: 460px) {
  .hive-wrap { gap: 8px; }
  .hex-cell { width: 130px; clip-path: none; border-radius: var(--radius-sm); aspect-ratio: auto; }
  .hex-cell:nth-child(even) { margin-top: 0; }
}

/* How it works */
.phase-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.phase-track::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 10px, transparent 10px 18px);
}
@media (max-width: 850px) { .phase-track { grid-template-columns: 1fr; } .phase-track::before { display: none; } }
.phase { position: relative; text-align: left; }
.phase__marker {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  margin-bottom: 1.25rem; position: relative; z-index: 1; box-shadow: var(--shadow-standard);
}
.phase h3 { color: var(--white); }
.phase p { color: var(--white); font-size: 1rem; }

/* Who it's for */
.who-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.who-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 1.05rem; padding: 0.9rem 1.1rem; background: var(--offwhite); border-radius: var(--radius-sm); border-left: 4px solid var(--gold); }
.who-list .mark { font-weight: 800; color: var(--gold-deep); flex-shrink: 0; }
.who-note { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--white); border: 2px solid var(--wine); border-radius: var(--radius-sm); font-size: 1rem; }

/* Usage timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 750px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
.timeline__item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-standard); }
.timeline__item .day { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--gold-deep); display: block; margin-bottom: 0.5rem; }
.timeline__item p { font-size: 0.95rem; margin: 0; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-standard); }
table.compare { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
table.compare th, table.compare td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border-light); font-size: 1rem; }
table.compare thead th { font-family: var(--font-display); background: var(--black); color: var(--white); font-size: 0.95rem; }
table.compare thead th:nth-child(2) { color: var(--honey); }
table.compare td.yes { color: var(--gold-deep); font-weight: 700; }
table.compare td.no { color: #555; }
table.compare tbody tr:last-child td { border-bottom: none; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
@media (max-width: 950px) { .pricing-grid { grid-template-columns: 1fr; } .price-card--featured { transform: none; } }
.price-card { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-standard); }
.price-card--featured { border-color: var(--gold); box-shadow: var(--shadow-elevated); transform: scale(1.03); background: var(--offwhite); }
.price-card__tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.05em; padding: 0.4rem 1.1rem; border-radius: 999px; white-space: nowrap;
}
.price-card img { width: 130px; margin: 0.5rem auto 1.25rem; }
.price-card h3 { text-align: center; margin-bottom: 0.25rem; }
.price-card .supply { text-align: center; color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.price-card .per-bottle { text-align: center; font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--black); }
.price-card .per-bottle span { font-size: 1rem; font-weight: 600; color: #555; }
.price-card .total-row { text-align: center; margin: 0.5rem 0 1.25rem; font-size: 0.95rem; color: #555; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.price-card ul li { font-size: 0.95rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.price-card ul li::before { content: "✓"; color: var(--gold-deep); font-weight: 800; }
.price-card .btn { margin-top: auto; }

/* Guarantee */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; background: var(--black); color: var(--white); border-radius: var(--radius); padding: 3rem; }
@media (max-width: 700px) { .guarantee { grid-template-columns: 1fr; text-align: center; } }
.guarantee__seal {
  width: 140px; height: 140px; border-radius: 50%; border: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--gold);
  text-align: center; line-height: 1.15; flex-shrink: 0; margin: 0 auto;
}
.guarantee__seal .big { font-size: 2.25rem; }
.guarantee h2, .guarantee p { color: var(--white); }
.guarantee-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.guarantee-badges span { font-size: 0.95rem; font-weight: 600; color: var(--honey); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 800px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-standard); display: flex; gap: 1.1rem; }
.review-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold); }
.review-card .stars { color: var(--gold-deep); font-size: 1rem; margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.review-card p { font-size: 1rem; margin-bottom: 0.6rem; }
.review-card .who { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.review-card .who span { font-weight: 400; color: #555; display: block; font-size: 0.85rem; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.25rem 1.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--gold-deep); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.5rem; font-size: 1rem; }
.faq-item[open] summary { border-bottom: 1px solid var(--border-light); }

/* Blog preview */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-standard); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__tag { color: var(--gold-deep); font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.95rem; color: #444; margin-bottom: 1rem; }
.blog-card .read-more { margin-top: auto; font-weight: 700; color: var(--gold-deep); font-family: var(--font-display); }

/* Final CTA */
.final-cta { background: linear-gradient(160deg, #0D0D0D, #1c1608); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.final-cta img { max-width: 220px; margin: 0 auto 1.5rem; }
.final-cta h2 { color: var(--white); }
.final-cta__badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin: 1.75rem 0; }
.final-cta__badges span { font-size: 0.95rem; color: var(--honey); font-weight: 600; }

/* Footer */
.footer { background: var(--black); color: var(--white); padding: var(--space-lg) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--gold); font-size: 1rem; }
.footer p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.footer ul a:hover { color: var(--gold); }
.footer .disclaimer { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer .bottom { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* Mobile sticky CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--black); border-top: 2px solid var(--gold); padding: 0.75rem 1rem; display: none; gap: 0.75rem; align-items: center; }
.mobile-cta span { color: var(--white); font-size: 0.85rem; font-weight: 600; flex: 1; }
.mobile-cta .btn { flex-shrink: 0; padding: 0.85rem 1.5rem; font-size: 1rem; }
@media (max-width: 780px) { .mobile-cta { display: flex; } body { padding-bottom: 78px; } }

/* Back to top */
.back-top {
  position: fixed; bottom: 100px; right: 1.25rem; z-index: 89;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: none;
  font-size: 1.25rem; cursor: pointer; box-shadow: var(--shadow-elevated);
  display: none; align-items: center; justify-content: center;
}
.back-top.is-visible { display: flex; }
@media (max-width: 780px) { .back-top { bottom: 92px; } }

/* Exit popup */
.exit-popup { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.exit-popup.is-open { display: flex; }
.exit-popup__card { background: var(--white); border-radius: var(--radius); max-width: 460px; width: 100%; padding: 2.5rem 2rem; text-align: center; position: relative; box-shadow: var(--shadow-elevated); border: 3px solid var(--gold); }
.exit-popup__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px; }
.exit-popup__timer { font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; color: var(--wine); margin: 1rem 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
