/* ============================================================
   THE WINE ROOM — WINE CLUB
   styles.css
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --white:         #FFFFFF;
  --cream:         #FAF7F2;
  --champagne:     #F5EDD8;
  --blush:         #F2E4E1;
  --burgundy:      #7B1C3C;
  --burgundy-dk:   #5A1229;
  --burgundy-lt:   #9B2347;
  --gold:          #C4962A;
  --gold-lt:       #D4AB4B;
  --charcoal:      #2A2A2A;
  --near-black:    #0F0810;
  --slate:         #5A5A6A;
  --slate-lt:      #8888A0;
  --rule:          rgba(196, 150, 42, 0.22);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Raleway', system-ui, sans-serif;

  --text-xs:       clamp(0.68rem,  1.4vw,  0.78rem);
  --text-sm:       clamp(0.84rem,  1.7vw,  0.92rem);
  --text-base:     clamp(0.96rem,  1.9vw,  1.02rem);
  --text-lg:       clamp(1.08rem,  2.1vw,  1.22rem);
  --text-xl:       clamp(1.22rem,  2.4vw,  1.46rem);
  --text-2xl:      clamp(1.5rem,   3vw,    2rem);
  --text-3xl:      clamp(2rem,     4vw,    2.8rem);
  --text-hero:     clamp(2.6rem,   5.5vw,  5rem);

  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  --max-w:        1160px;
  --r-sm:         6px;
  --r-md:         14px;
  --r-lg:         24px;
  --r-xl:         32px;
  --r-pill:       9999px;

  --shadow-card:  0 4px 28px rgba(123,28,60,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lift:  0 16px 48px rgba(123,28,60,0.15), 0 2px 10px rgba(0,0,0,0.06);
  --shadow-gold:  0 0 0 1px rgba(196,150,42,0.3), 0 8px 32px rgba(196,150,42,0.12);
  --shadow-btn:   0 4px 22px rgba(123,28,60,0.38);
  --shadow-btn-hv:0 8px 36px rgba(123,28,60,0.52);

  --ease-spring:  cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     160ms;
  --dur-med:      300ms;
  --dur-slow:     560ms;
  --dur-xslow:    900ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy-lt));
  background-size: 200% 100%;
  z-index: 200;
  animation: progressShimmer 2s linear infinite;
  transition: width 0.1s linear;
  pointer-events: none;
}
@keyframes progressShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-4);
}
.eyebrow--dark  { color: var(--gold); }
.eyebrow--gold  { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--sp-4);
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--slate);
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast) var(--ease-out);
  border-radius: inherit;
  pointer-events: none;
}
.btn:active { transform: scale(0.97) translateY(1px) !important; }

.btn--primary {
  background: linear-gradient(135deg, var(--burgundy-lt), var(--burgundy-dk));
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hv);
}
.btn--primary:hover::after { background: rgba(255,255,255,0.07); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn--ghost-dark:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #A07820);
  color: var(--charcoal);
  box-shadow: 0 4px 22px rgba(196,150,42,0.35);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(196,150,42,0.5);
}

.btn--full { width: 100%; justify-content: center; }

.btn-arrow {
  transition: transform var(--dur-fast) var(--ease-spring);
  flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
[data-animate-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-animate-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-animate-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
[data-animate-stagger].is-visible > *:nth-child(5) { transition-delay: 360ms; }
[data-animate-stagger].is-visible > *:nth-child(6) { transition-delay: 450ms; }
[data-animate-stagger].is-visible > *:nth-child(7) { transition-delay: 540ms; }
[data-animate-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STICKY NAV
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    backdrop-filter var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
}
#site-nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-color: rgba(196,150,42,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(123,28,60,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Logo band — large centred logo below hero */
.hero-logo-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-10) var(--sp-6);
  background: var(--cream);
}
.hero-logo-band__img {
  width: clamp(200px, 32vw, 340px);
  height: auto;
  display: block;
}
.hero-logo-band__fallback {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

/* Hero eyebrow logo — replaces the text eyebrow in hero-left */
.hero-eyebrow-logo { margin-bottom: var(--sp-4); }
.hero-eyebrow-logo__img {
  width: clamp(110px, 16vw, 180px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transition:
    color var(--dur-fast) var(--ease-out),
    opacity var(--dur-med) var(--ease-out);
  position: relative;
}
#site-nav.is-scrolled .nav-links a {
  opacity: 1;
  pointer-events: auto;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -3px;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }
.nav-links a:hover,
.nav-links a.is-active { color: var(--burgundy); }

.nav-cta {
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out);
  font-size: var(--text-xs);
  padding: var(--sp-3) var(--sp-6);
}
#site-nav.is-scrolled .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-hamburger:hover { background: rgba(123,28,60,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-spring), opacity var(--dur-fast) var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(15, 8, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-overlay__close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  text-align: center;
}
.nav-overlay__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-spring);
  display: block;
}
.nav-overlay__link:hover {
  color: var(--gold);
  transform: translateX(6px);
}
.nav-overlay__cta { margin-top: var(--sp-4); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO REVEAL ANIMATIONS (above-fold — CSS, not IO)
   ============================================================ */
.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal var(--dur-slow) var(--ease-out) both;
  animation-delay: var(--reveal-delay, 0ms);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 68px; /* nav height */
}

/* Ambient orbs on left side */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F5EDD8, transparent 70%);
  top: -10%; left: -8%;
  animation-delay: 0s;
}
.hero-bg-orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #F2E4E1, transparent 70%);
  bottom: 5%; left: 15%;
  animation-delay: -3s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.06); }
}

/* Split grid */
.hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
}

/* LEFT column */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-16) var(--sp-12) var(--sp-16) clamp(var(--sp-6), 6vw, var(--sp-20));
  position: relative;
  z-index: 1;
}

.hero-logo-wrap { position: relative; }
.hero-logo {
  max-width: 260px;
  width: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}
.hero-logo:hover { transform: scale(1.03); }

/* Logo fallback */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.logo-fallback__icon { flex-shrink: 0; }
.logo-fallback__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.logo-fallback__the {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1;
}
.logo-fallback__wine,
.logo-fallback__room {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--charcoal);
  line-height: 1;
}
.logo-fallback__sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  margin-top: var(--sp-2);
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
}
.hero-headline em {
  font-style: italic;
  display: inline;
}

/* Hero sub */
.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
}
.hero-sub strong {
  font-weight: 700;
  color: var(--burgundy);
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  color: var(--slate-lt);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: var(--sp-4);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--slate-lt);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--slate-lt);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* RIGHT column — illustration panel */
.hero-right {
  background: linear-gradient(160deg, var(--burgundy-dk) 0%, var(--burgundy) 60%, #6B1535 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(196,150,42,0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}
/* Ghost "180+" text */
.hero-right__ghost {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  animation: ghostDrift 12s ease-in-out infinite alternate;
}
@keyframes ghostDrift {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-30px, -20px) rotate(-1.5deg); }
}

/* World record label above badge */
.hero-record-label {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,150,42,0.88);
  position: relative;
  z-index: 2;
  margin: 0 0 var(--sp-3);
  animation: goldPulse 4s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.75; letter-spacing: 0.18em; }
  50%       { opacity: 1;    letter-spacing: 0.22em; }
}

/* Achievement stats row below badge */
.hero-record-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  position: relative;
  z-index: 2;
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-6);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(196,150,42,0.2);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat__desc {
  font-family: var(--font-body);
  font-size: clamp(0.56rem, 0.85vw, 0.66rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  text-align: center;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(196,150,42,0.25);
  flex-shrink: 0;
}

/* Badge — centrepiece of hero-right */
.hero-badge-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgeFloat 5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}
.badge-spin-wrap {
  display: inline-block;
  animation: badgeSpin 10s linear infinite;
}
.badge-spin-wrap:hover { animation-play-state: paused; }
.badge-hero {
  width: clamp(200px, 26vw, 300px);
  display: block;
  filter: invert(1) drop-shadow(0 4px 32px rgba(0,0,0,0.45));
  cursor: pointer;
}

/* Pulsing rings around badge */
.badge-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(196,150,42,0.65);
  pointer-events: none;
  animation: badgeRingPulse 2.4s ease-out infinite;
}
.badge-ring--1 { width: 280px; height: 280px; animation-delay: 0s; }
.badge-ring--2 { width: 360px; height: 360px; animation-delay: 1.2s; }
@keyframes badgeRingPulse {
  0%   { transform: scale(0.75); opacity: 0.85; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--sz);
  height: var(--sz);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: particleFloat var(--dur, 8s) var(--dly, 0s) ease-in-out infinite;
}
.particle--gold  { background: rgba(196,150,42,1); box-shadow: 0 0 14px 3px rgba(196,150,42,0.8); }
.particle--white { background: rgba(255,255,255,1); box-shadow: 0 0 12px 3px rgba(255,255,255,0.7); }
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1);         opacity: 0; }
  10%  { opacity: 1; }
  75%  { opacity: 0.9; }
  100% { transform: translateY(-140px) scale(0.15); opacity: 0; }
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Badge fallback */
.badge-fallback {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-fallback__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.badge-fallback__top,
.badge-fallback__bottom {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.badge-fallback__est {
  font-family: var(--font-body);
  font-size: 0.4rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

/* Decorative particle dots */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleDrift 6s ease-in-out infinite alternate;
}
.hero-particle--1 {
  width: 6px; height: 6px;
  background: rgba(196,150,42,0.55);
  top: 22%; left: 12%;
  animation-duration: 7s;
  animation-delay: 0s;
}
.hero-particle--2 {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.35);
  top: 65%; left: 18%;
  animation-duration: 5.5s;
  animation-delay: 1s;
}
.hero-particle--3 {
  width: 5px; height: 5px;
  background: rgba(196,150,42,0.4);
  top: 35%; right: 14%;
  animation-duration: 8s;
  animation-delay: 2s;
}
.hero-particle--4 {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.5);
  bottom: 28%; right: 20%;
  animation-duration: 6.5s;
  animation-delay: 0.5s;
}
@keyframes particleDrift {
  from { transform: translate(0, 0); opacity: 0.8; }
  to   { transform: translate(10px, -18px); opacity: 0.3; }
}

/* ============================================================
   DIAGONAL SEPARATORS
   ============================================================ */
.sep {
  position: relative;
  height: 70px;
  overflow: hidden;
  z-index: 1;
}
/* White → Burgundy */
.sep--white-to-burg {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 55%, var(--burgundy-lt) 100%);
}
.sep--white-to-burg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
/* Burgundy → Champagne */
.sep--burg-to-champ {
  background: linear-gradient(170deg, var(--white) 0%, var(--champagne) 45%, var(--cream) 75%, var(--white) 100%);
}
.sep--burg-to-champ::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 55%, var(--burgundy-lt) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* Champagne → Near-black */
.sep--champ-to-dark {
  background: var(--near-black);
}
.sep--champ-to-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(170deg, var(--white) 0%, var(--champagne) 45%, var(--cream) 75%, var(--white) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
/* Near-black → Cream */
.sep--dark-to-cream {
  background: var(--cream);
}
.sep--dark-to-cream::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--near-black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ============================================================
   WORLD RECORD STRIP
   ============================================================ */
#record-strip {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 55%, var(--burgundy-lt) 100%);
  border-top: 1px solid rgba(196,150,42,0.3);
  border-bottom: 1px solid rgba(196,150,42,0.3);
  padding: var(--sp-12) var(--sp-6);
  overflow: hidden;
  position: relative;
}
#record-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(196,150,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
  min-width: 120px;
}
.strip-stat__number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--white);
  line-height: 1;
  display: inline;
}
.strip-stat__plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--gold-lt);
  line-height: 1;
  vertical-align: super;
  display: inline;
}
.strip-stat__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.strip-stat__text--gold { color: var(--gold-lt); }
.strip-stat__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: var(--sp-1);
}
.strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(196,150,42,0.35);
  flex-shrink: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
#benefits {
  padding: var(--sp-32) var(--sp-6);
  background: linear-gradient(170deg, var(--white) 0%, var(--champagne) 45%, var(--cream) 75%, var(--white) 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.benefit-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(196,150,42,0.18);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    background var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
  will-change: transform;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(196,150,42,0.35);
  background: rgba(255,255,255,0.95);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-card--featured {
  background: rgba(255,255,255,0.88);
  border-color: rgba(196,150,42,0.35);
}
.benefit-card--featured::before { opacity: 0.6; }
.benefit-card--rare {
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(245,237,216,0.6));
}
/* ---- Flip card wrapper ---- */
.benefit-flip { perspective: 1000px; cursor: pointer; }
.benefit-flip--last {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.benefit-flip__inner { width: 100%; }

/* Face visibility — JS midpoint-swap drives this */
.benefit-flip__back { display: none; }
.benefit-flip.is-flipped .benefit-flip__front { display: none; }
.benefit-flip.is-flipped .benefit-flip__back  { display: block; }

/* ↺ flip icon, top-right of front card */
.benefit-card::after {
  content: '\21BA';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-size: 1rem;
  color: rgba(196,150,42,0.4);
  transition: color var(--dur-med), transform var(--dur-med) var(--ease-spring);
  line-height: 1;
}
.benefit-flip:hover .benefit-card::after {
  color: rgba(196,150,42,0.85);
  transform: rotate(180deg);
}

/* Tap hint — replaced by ::after icon */
.card-flip-hint { display: none; }

/* Back face card */
.benefit-card-back {
  background: linear-gradient(145deg, var(--burgundy-dk) 0%, var(--burgundy) 100%);
  border: 1px solid rgba(196,150,42,0.4);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 20px 60px rgba(90,18,41,0.35), 0 0 0 1px rgba(196,150,42,0.15);
  position: relative;
  overflow: hidden;
}
/* Gold shimmer top bar */
.benefit-card-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Watermark number bottom-right */
.benefit-card-back::after {
  content: attr(data-num);
  position: absolute;
  bottom: -0.15em; right: 0.1em;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.benefit-card-back--featured {
  background: linear-gradient(145deg, #3A0A1E 0%, var(--burgundy-dk) 100%);
  border-color: rgba(196,150,42,0.55);
}
.benefit-card-back--rare {
  background: linear-gradient(145deg, #1A0510 0%, var(--burgundy-dk) 60%, #3A0A1E 100%);
}
.card-back__number {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.card-back__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(196,150,42,0.22);
}
.card-back__body {
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 1.4vw, 0.92rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.card-back__close {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196,150,42,0.6);
  margin-top: var(--sp-2);
}
.card-back__close::before { content: '\21BA'; font-size: 0.9rem; }

.benefit-card--last {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(196,150,42,0.1), rgba(123,28,60,0.06));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(196,150,42,0.15);
  transition:
    background var(--dur-med) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring),
    border-color var(--dur-med) var(--ease-out);
}
.benefit-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(196,150,42,0.18), rgba(123,28,60,0.1));
  border-color: rgba(196,150,42,0.35);
  transform: scale(1.08) rotate(-3deg);
}
.card-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-2);
  opacity: 0.7;
  transition: opacity var(--dur-med) var(--ease-out);
}
.benefit-card:hover .card-number { opacity: 1; }
.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
  transition: color var(--dur-med) var(--ease-out);
}
.benefit-card:hover .card-title { color: var(--burgundy); }
.card-body {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.card-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,150,42,0.1);
  border: 1px solid rgba(196,150,42,0.2);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-3);
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.benefit-card:hover .card-tag {
  background: rgba(196,150,42,0.18);
  border-color: rgba(196,150,42,0.4);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--sp-32) var(--sp-6);
  background: linear-gradient(175deg, var(--white) 0%, var(--blush) 40%, var(--champagne) 70%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '\201C';
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(196,150,42,0.04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(196,150,42,0.16);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
  position: relative;
  will-change: transform;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(196,150,42,0.32);
}
.testimonial-card--featured {
  background: rgba(255,255,255,0.92);
  border-color: rgba(196,150,42,0.32);
  box-shadow: var(--shadow-gold);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  transition: opacity var(--dur-med) var(--ease-out);
}
.testimonial-card:hover .testimonial-quote { opacity: 0.9; }
.testimonial-body {
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-lt));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(123,28,60,0.25);
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--charcoal);
}
.testimonial-since {
  font-size: var(--text-xs);
  color: var(--slate-lt);
  letter-spacing: 0.05em;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-top: auto;
}

/* ============================================================
   THE RARE ROOM — dark section
   ============================================================ */
#rare-room {
  background: var(--near-black);
  padding: var(--sp-32) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.rare-room-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.rare-room-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,28,60,0.3), transparent 70%);
  top: -15%; left: -10%;
}
.rare-room-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,150,42,0.12), transparent 70%);
  bottom: -10%; right: -5%;
}

.rare-room-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rare-room-header {
  margin-bottom: var(--sp-16);
}
.rare-room-header .eyebrow {
  color: var(--gold);
  opacity: 0.85;
}
.rare-room-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.rare-room-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rare-room-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.rare-room-pillars {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-12);
}
.rare-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  min-width: 140px;
  transition: transform var(--dur-med) var(--ease-spring);
}
.rare-pillar:hover { transform: translateY(-6px); }
.rare-pillar__icon {
  width: 52px; height: 52px;
  background: rgba(196,150,42,0.1);
  border: 1px solid rgba(196,150,42,0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}
.rare-pillar:hover .rare-pillar__icon {
  background: rgba(196,150,42,0.18);
  border-color: rgba(196,150,42,0.5);
}
.rare-pillar__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1;
}
.rare-pillar__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.rare-room-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.55);
  border-left: 2px solid rgba(196,150,42,0.4);
  padding-left: var(--sp-6);
  text-align: left;
  max-width: 560px;
  width: 100%;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
  transition: color var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.rare-room-quote:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(196,150,42,0.7);
}

/* ============================================================
   WINE CARD SECTION
   ============================================================ */
#wine-card {
  padding: var(--sp-32) var(--sp-6);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#wine-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(180deg, var(--champagne), var(--cream));
  pointer-events: none;
}

.wine-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.wine-card-text {
  position: relative;
  z-index: 1;
}
.wine-card-text .section-title { margin-top: var(--sp-4); }

.wine-card-body {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: var(--sp-8);
}

.wine-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.wine-card-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.6;
  transition: transform var(--dur-fast) var(--ease-out);
}
.wine-card-features li:hover { transform: translateX(4px); }
.feature-dot {
  display: block;
  width: 8px; height: 8px; min-width: 8px;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  border-radius: 50%;
  margin-top: 5px;
  transition: transform var(--dur-fast) var(--ease-spring);
}
.wine-card-features li:hover .feature-dot { transform: scale(1.5); }

.wine-card-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  position: relative;
  z-index: 1;
}

/* Card mockup */
.card-mockup-wrap {
  position: relative;
  display: inline-block;
}
.card-mockup {
  width: 340px;
  max-width: 100%;
  height: 210px;
  background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1C 50%, #0D0D0D 100%);
  border-radius: 18px;
  padding: var(--sp-6) var(--sp-7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.7),
    0 0 0 1px rgba(196,150,42,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transform: perspective(900px) rotateY(-12deg) rotateX(4deg);
  transition:
    transform var(--dur-xslow) var(--ease-out),
    box-shadow var(--dur-xslow) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.card-mockup:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(196,150,42,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.card-mockup__shine {
  position: absolute;
  top: -100%; left: -100%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left var(--dur-slow) var(--ease-out), top var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.card-mockup:hover .card-mockup__shine { left: 150%; top: -100%; }
.card-mockup::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(196,150,42,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.card-mockup__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.card-mockup__logo-img {
  width: 60px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.card-mockup__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.card-the {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(196,150,42,0.8);
}
.card-wine {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.card-mockup__chip {
  width: 32px; height: 24px;
  background: linear-gradient(145deg, var(--gold), #A07820);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.card-mockup__chip::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
}
.card-mockup__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.card-mockup__label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.card-mockup__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-mockup__dots {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.card-mockup__est {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(196,150,42,0.75);
}
.card-mockup-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 80px;
  background: radial-gradient(ellipse, rgba(123,28,60,0.35) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.card-stats {
  display: flex;
  gap: var(--sp-6);
  justify-content: center;
}
.card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.card-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  background: rgba(255,255,255,0.95);
}
.card-stat__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--burgundy);
}
.card-stat__lbl {
  font-size: var(--text-xs);
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   VALUE CALCULATOR
   ============================================================ */
#calculator {
  padding: var(--sp-32) var(--sp-6);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,237,216,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.calc-left { display: flex; flex-direction: column; gap: var(--sp-6); }

.calc-question {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--charcoal);
  line-height: 1.4;
}

.calc-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.calc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  font-size: 1.4rem;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease-out);
  line-height: 1;
}
.calc-btn:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(123,28,60,0.3);
}
.calc-btn:active { transform: scale(0.95); }

.calc-display {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.calc-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--burgundy);
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-spring), color var(--dur-fast) var(--ease-out);
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}
.calc-value.is-changing {
  transform: scale(1.2);
  color: var(--gold);
}
.calc-unit {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--slate);
  font-weight: 300;
}

.calc-track {
  width: 100%;
  height: 6px;
  background: rgba(123,28,60,0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.calc-track__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy-dk), var(--gold));
  border-radius: var(--r-pill);
  transition: width var(--dur-med) var(--ease-out);
}

.calc-note {
  font-size: var(--text-xs);
  color: var(--slate-lt);
  letter-spacing: 0.06em;
}

.calc-perk-group { display: flex; flex-direction: column; gap: var(--sp-3); }
.calc-perk-divider { width: 100%; height: 1px; background: rgba(196,150,42,0.2); margin: var(--sp-2) 0; }
.calc-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.5em;
}

.calc-card {
  background: var(--white);
  border: 1px solid rgba(196,150,42,0.25);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur-med) var(--ease-out);
}
.calc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy-dk), var(--gold), var(--burgundy-lt));
  background-size: 200% 100%;
  animation: accentShimmer 3s ease-in-out infinite;
}
.calc-card:hover { box-shadow: 0 0 0 1px rgba(196,150,42,0.4), 0 20px 60px rgba(196,150,42,0.18); }

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
}
.calc-row--value { padding-top: var(--sp-2); }
.calc-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--charcoal);
}
.calc-sublabel {
  font-size: var(--text-xs);
  color: var(--slate-lt);
  margin-top: 2px;
}
.calc-label--savings {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--charcoal);
}
.calc-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--charcoal);
  transition: transform var(--dur-fast) var(--ease-spring), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.calc-amount.is-changing {
  transform: scale(1.15);
}
.calc-amount--value { color: var(--charcoal); }
.calc-amount--price { color: var(--slate); font-size: var(--text-xl); }
.calc-amount--savings {
  color: var(--burgundy);
  font-size: var(--text-3xl);
}
.calc-amount--savings.is-changing { color: var(--gold); }

.calc-divider-line {
  height: 1px;
  background: rgba(196,150,42,0.15);
}
.calc-divider-line--gold {
  background: linear-gradient(90deg, transparent, rgba(196,150,42,0.4), transparent);
}

.calc-annual {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: rgba(196,150,42,0.07);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--slate);
  text-align: center;
  border: 1px solid rgba(196,150,42,0.15);
}
.calc-annual strong {
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  transition: color var(--dur-fast) var(--ease-out);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: var(--sp-32) var(--sp-6);
  background: var(--white);
}
.pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(196,150,42,0.28);
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-10);
  width: 100%; max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(196,150,42,0.45),
    0 20px 60px rgba(196,150,42,0.2),
    0 8px 20px rgba(123,28,60,0.1);
}
.pricing-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy-dk), var(--gold), var(--burgundy-lt), var(--gold), var(--burgundy-dk));
  background-size: 200% 100%;
  animation: accentShimmer 3s ease-in-out infinite;
}
@keyframes accentShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.pricing-card__shimmer {
  position: absolute;
  top: -50%; left: -100%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-15deg);
  animation: cardShimmer 4s ease-in-out infinite 2s;
  pointer-events: none;
}
@keyframes cardShimmer {
  0%       { left: -100%; }
  40%, 100% { left: 200%; }
}
.pricing-card__header { margin-bottom: var(--sp-4); }
.pricing-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,150,42,0.1);
  border: 1px solid rgba(196,150,42,0.25);
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-5);
}
.pricing-card__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: var(--sp-6) 0;
  line-height: 1;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-top: 0.6rem;
  align-self: flex-start;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5.5rem;
  color: var(--burgundy);
  line-height: 1;
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--dur-med) var(--ease-spring);
}
.pricing-card:hover .price-amount { transform: scale(1.04); }
.price-period {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--slate);
  align-self: flex-end;
  margin-bottom: 0.8rem;
  margin-left: var(--sp-2);
}
.pricing-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-5) 0 var(--sp-7);
}
.pricing-divider__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.pricing-divider__glyph {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.7;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  text-align: left;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.5;
  transition: transform var(--dur-fast) var(--ease-out);
}
.pricing-list li:hover { transform: translateX(3px); }
.check-icon {
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform var(--dur-fast) var(--ease-spring);
}
.pricing-list li:hover .check-icon { transform: scale(1.2); }
.pricing-fine {
  margin-top: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--slate-lt);
  letter-spacing: 0.05em;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: var(--sp-32) var(--sp-6);
  background: linear-gradient(170deg, var(--cream) 0%, var(--champagne) 50%, var(--cream) 100%);
  position: relative;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(196,150,42,0.18);
  transition: background var(--dur-fast) var(--ease-out);
}
.faq-item:first-child { border-top: 1px solid rgba(196,150,42,0.18); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--charcoal);
  text-align: left;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-q:hover { color: var(--burgundy); }
.faq-q[aria-expanded="true"] { color: var(--burgundy); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--dur-med) var(--ease-spring);
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-a[aria-hidden="false"] { max-height: 400px; }

.faq-a__inner {
  padding: 0 0 var(--sp-6) 0;
  font-size: var(--text-base);
  color: var(--slate);
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   JOIN FORM
   ============================================================ */
#join {
  padding: var(--sp-32) var(--sp-6);
  background: linear-gradient(160deg, var(--blush) 0%, var(--champagne) 45%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.join-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.join-bg-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,28,60,0.08), transparent 70%);
  top: -10%; left: -5%;
}
.join-bg-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(196,150,42,0.1), transparent 70%);
  bottom: -10%; right: -5%;
}
.join-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.join-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.join-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.join-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-sub {
  font-size: var(--text-lg);
  color: var(--slate);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}
.join-form-wrap {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196,150,42,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: 0 8px 40px rgba(123,28,60,0.1), 0 0 0 1px rgba(255,255,255,0.8);
  transition: box-shadow var(--dur-med) var(--ease-out);
}
.join-form-wrap:focus-within {
  box-shadow: 0 12px 50px rgba(123,28,60,0.15), 0 0 0 1px rgba(196,150,42,0.3);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.field-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--slate-lt);
  font-size: var(--text-xs);
}
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.45;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.input-wrap:focus-within .input-icon { opacity: 0.85; }
input {
  width: 100%;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) 2.8rem;
  border: 1.5px solid rgba(90,18,41,0.15);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: rgba(255,255,255,0.7);
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  -webkit-appearance: none;
}
input::placeholder { color: var(--slate-lt); }
input:hover {
  border-color: rgba(123,28,60,0.3);
  background: rgba(255,255,255,0.9);
}
input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123,28,60,0.1);
  background: var(--white);
  transform: translateY(-1px);
}
input.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.error-msg {
  font-size: var(--text-xs);
  color: #C0392B;
  margin-top: var(--sp-1);
  animation: errorShake 0.3s var(--ease-spring);
}
@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}
.btn--submit {
  margin-top: var(--sp-2);
  font-size: var(--text-base);
  padding: var(--sp-5) var(--sp-8);
}
.btn-spinner { display: inline-flex; }
.spin { animation: spinSvg 0.8s linear infinite; }
@keyframes spinSvg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.form-disclaimer {
  margin-top: var(--sp-5);
  font-size: var(--text-xs);
  color: var(--slate-lt);
  text-align: center;
  line-height: 1.6;
}
.form-success {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  animation: fadeInUp var(--dur-slow) var(--ease-out) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon {
  margin: 0 auto var(--sp-6);
  animation: successPop var(--dur-slow) var(--ease-spring) both;
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
}
.form-success p { color: var(--slate); line-height: 1.7; }
.success-ornament {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: var(--sp-6);
  animation: glyphPulse 3s ease-in-out infinite;
}
@keyframes glyphPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--sp-16) var(--sp-6) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col { display: flex; flex-direction: column; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-links li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: var(--text-sm);
  line-height: 1.6;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-links li a:hover { color: var(--gold); }
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  color: rgba(255,255,255,0.25);
  font-size: var(--text-xs);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-logo {
  max-width: 180px;
  filter: invert(1);
  opacity: 0.9;
  margin-bottom: var(--sp-4);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer-logo:hover { opacity: 1; }
.footer-logo-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition:
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring);
}
.social-link:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(196,150,42,0.15);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--gold-lt);
  margin-bottom: var(--sp-4);
}
.footer-address {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.footer-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.footer-dot { color: var(--gold); opacity: 0.5; }
.footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-5) 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
#mobile-cta {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 90;
  transition: transform var(--dur-med) var(--ease-spring), opacity var(--dur-med) var(--ease-out);
  opacity: 0;
  pointer-events: none;
  display: none;
}
#mobile-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: linear-gradient(135deg, var(--burgundy-lt), var(--burgundy-dk));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 30px rgba(123,28,60,0.5), 0 0 0 1px rgba(196,150,42,0.25);
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.mobile-cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(123,28,60,0.6), 0 0 0 1px rgba(196,150,42,0.4);
}
.mobile-cta-btn:active { transform: scale(0.97); }

@media (max-width: 768px) {
  #mobile-cta { display: block; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Only stop entrance/scroll-triggered animations — keep looping decorative ones */
  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
  }
  .hero-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #scroll-progress { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp-32: 6rem; --sp-24: 4rem; }
  .hero-split { grid-template-columns: 1fr 1fr; }
  .calc-wrap { gap: var(--sp-8); }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .wine-card-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  #wine-card::before { display: none; }
  .calc-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --sp-32: 4rem; --sp-20: 3.5rem; --sp-16: 3rem; }

  /* Stack hero on mobile */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: var(--sp-10) var(--sp-6) var(--sp-8);
    align-items: center;
    text-align: center;
  }
  .hero-logo { margin: 0 auto; }
  .hero-sub { text-align: center; }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .hero-ctas .btn { justify-content: center; }
  .hero-scroll-hint { align-items: center; }
  .hero-right {
    min-height: 420px;
    order: -1; /* badge above text on mobile */
  }
  .hero-badge-wrap {
    top: auto;
    right: auto;
  }
  .badge-spin-wrap { animation: badgeSpin 10s linear infinite; }
  .badge-hero { width: clamp(180px, 50vw, 240px); }

  .strip-inner { gap: var(--sp-6); }
  .strip-divider { display: none; }
  .card-mockup { width: 290px; height: 178px; }
  .card-stats { gap: var(--sp-3); }
  .pricing-card { padding: var(--sp-8) var(--sp-6); }
  .join-form-wrap { padding: var(--sp-8) var(--sp-6); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .rare-room-pillars { gap: var(--sp-8); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-left { grid-column: 1 / -1; }
  .footer-right { grid-column: 1 / -1; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: var(--sp-3); }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .benefits-grid { gap: var(--sp-4); }
  .benefit-card--last { grid-column: auto; max-width: 100%; margin: 0; }
  .card-stats { flex-wrap: wrap; gap: var(--sp-3); }
  .card-mockup {
    width: 260px; height: 160px;
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  }
  .pricing-card__price { margin: var(--sp-4) 0; }
  .price-amount { font-size: 4.5rem; }
  .calc-controls { gap: var(--sp-4); }
  .calc-value { font-size: 2.8rem; }
}
