/* ============================================================
   Pop N' Pour — styles.css
   Brand: Navy blue + cream, retro-modern, youthful premium
   ============================================================ */

/* --- Variables ------------------------------------------- */
:root {
  --navy-deep:  #0B1A33;
  --navy:       #1B3A6B;
  --navy-mid:   #2B5299;
  --navy-pale:  #E4EBF5;
  --cream:      #F9F6F1;
  --cream-2:    #F0EBE3;
  --white:      #FFFFFF;
  --text:       #0B1A33;
  --text-mid:   #4A5568;
  --text-light: #8A96A8;
  --gold:       #C8A840;

  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --shadow:    0 4px 20px rgba(11,26,51,.10);
  --shadow-lg: 0 20px 60px rgba(11,26,51,.18);

  --ease: 0.3s ease;
  --max-w: 1200px;
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: .75rem;
}
.eyebrow--navy  { color: var(--navy); }
.eyebrow--light { color: rgba(255,255,255,.55); }

.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-head h2 { margin-bottom: .6rem; }
.section-head p {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 500px;
}
.section-head--center p { margin: 0 auto; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: var(--text);
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: 0 8px 28px rgba(27,58,107,.4);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(27,58,107,.25);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.btn--nav {
  background: var(--navy);
  color: var(--white);
  padding: .55rem 1.4rem;
  font-size: .8rem;
}
.btn--nav:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(27,58,107,.4);
}

.btn--sm   { padding: .55rem 1.25rem; font-size: .8rem; }
.btn--lg   { padding: 1rem 2.25rem; font-size: .95rem; }
.btn--block { width: 100%; display: flex; }

/* --- Age Gate -------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease;
}
.age-gate.fade-out { opacity: 0; pointer-events: none; }

.age-gate__inner {
  text-align: center;
  color: var(--white);
  padding: 2.5rem 2rem;
  max-width: 440px;
}
.age-gate__logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .25rem;
}
.age-gate__sub {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2rem;
}
.age-gate__inner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: .75rem;
}
.age-gate__body {
  color: rgba(255,255,255,.55);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}
.age-gate__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.age-gate__legal {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.age-gate__legal a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* --- Navigation ------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 24px rgba(11,26,51,.1);
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}
.nav.scrolled .nav__logo-img {
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a:not(.btn) {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--ease);
}
.nav__links a:not(.btn):hover,
.nav__links a:not(.btn).active { color: var(--white); }
.nav.scrolled .nav__links a:not(.btn) { color: var(--text-mid); }
.nav.scrolled .nav__links a:not(.btn):hover,
.nav.scrolled .nav__links a:not(.btn).active { color: var(--navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav.scrolled .nav__hamburger span { background: var(--navy-deep); }

/* --- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(43,82,153,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(27,58,107,.2) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 5%, rgba(200,168,64,.06) 0%, transparent 30%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
  width: 100%;
}

.hero__text { max-width: 560px; }
.hero__text .eyebrow {
  color: var(--gold);
  border: 1px solid rgba(200,168,64,.3);
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero__text h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Bottle visual */
.hero__bottle {
  position: relative;
  flex-shrink: 0;
  width: 280px;
}
.hero__bottle-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,82,153,.4) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.1); }
}
.hero__bottle-img {
  width: 100%;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.6));
  animation: bottle-float 6s ease-in-out infinite;
}
@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 2rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(200,168,64,.7);
  animation: slide-line 2.5s ease infinite;
}
@keyframes slide-line { 0%{left:-100%} 100%{left:100%} }

/* --- Marquee --------------------------------------------- */
.marquee {
  background: var(--navy);
  padding: .875rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.marquee__track .dot { color: var(--gold); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Story ----------------------------------------------- */
.story {
  padding: 8rem 0;
  background: var(--cream);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__text h2 { margin-bottom: 1.5rem; }
.story__text p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.story__text .btn { margin-top: .5rem; }

.story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-card--dark  { background: var(--navy-deep); color: var(--white); }
.stat-card--navy  { background: var(--navy); color: var(--white); grid-row: span 2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-card--light { background: var(--navy-pale); color: var(--navy-deep); }
.stat-card--outline {
  background: transparent;
  border: 2px solid var(--navy-pale);
  color: var(--navy);
}
.stat-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-card__label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  opacity: .7;
}

/* --- Wines ----------------------------------------------- */
.wines {
  padding: 8rem 0;
  background: var(--navy-deep);
}
.wines .section-head h2 { color: var(--white); }
.wines .section-head p  { color: rgba(255,255,255,.45); }
.wines .eyebrow { color: var(--gold); }

.wines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wine-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
  position: relative;
}
.wine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.wine-card--featured {
  background: rgba(27,58,107,.35);
  border-color: rgba(255,255,255,.2);
}

.wine-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
}

.wine-card__img-wrap {
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 280px;
}
.wine-card__img {
  max-height: 220px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.5));
  transition: transform var(--ease);
}
.wine-card:hover .wine-card__img { transform: scale(1.03); }

.wine-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wine-card__varietal {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.wine-card__name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.wine-card__notes {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .875rem;
  letter-spacing: .03em;
}
.wine-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.wine-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.wine-card__price {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
}

/* --- Why ------------------------------------------------- */
.why {
  padding: 8rem 0;
  background: var(--navy);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why__text h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.why__text p {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  line-height: 1.75;
}
.why__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pillar {
  padding: 1.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.pillar:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateX(4px);
}
.pillar__icon { font-size: 1.75rem; margin-bottom: .75rem; }
.pillar h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.pillar p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* --- Testimonials ---------------------------------------- */
.testimonials {
  padding: 7rem 0;
  background: var(--cream-2);
}
.testimonials .section-head h2 { color: var(--text); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.quote p {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.quote cite {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-mid);
  font-style: normal;
}

/* --- Buy / Sales Funnel ---------------------------------- */
.buy {
  padding: 8rem 0;
  background: var(--cream);
}
.buy .section-head h2 { color: var(--text); }
.buy .section-head p  { color: var(--text-mid); }

.buy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.buy__card {
  background: var(--white);
  border: 2px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.buy__card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.buy__card--hero {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
  transform: scale(1.03);
}
.buy__card--hero:hover {
  border-color: var(--navy-mid);
  transform: scale(1.03) translateY(-4px);
}

.buy__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.buy__card h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .875rem;
}
.buy__card--hero h4 { color: var(--white); }

.buy__price {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.1;
}
.buy__price span {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: .2rem;
}
.buy__card--hero .buy__price { color: var(--gold); }
.buy__card--hero .buy__price span { color: rgba(255,255,255,.4); }

.buy__card > p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.buy__card--hero > p { color: rgba(255,255,255,.55); }

.buy__perks {
  margin-bottom: 1.75rem;
}
.buy__perks li {
  font-size: .85rem;
  color: var(--text-mid);
  padding: .45rem 0;
  border-bottom: 1px solid var(--cream-2);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.buy__perks li::before { content: '✓'; color: var(--navy-mid); font-weight: 700; font-size: .8rem; }
.buy__card--hero .buy__perks li { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.1); }
.buy__card--hero .buy__perks li::before { color: var(--gold); }

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--navy-pale);
  border: 1px solid var(--navy-pale);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}
.urgency-strip span { font-size: 1.5rem; flex-shrink: 0; }
.urgency-strip p {
  flex: 1;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
  min-width: 200px;
}

/* --- Find Our Wine --------------------------------------- */
.find {
  padding: 8rem 0;
  background: var(--navy-deep);
}
.find__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.find__text h2 { color: var(--white); margin-bottom: 1.25rem; }
.find__text p { color: rgba(255,255,255,.55); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.find__text .eyebrow { color: var(--gold); }

.find__search {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.find__input {
  flex: 1;
  min-width: 180px;
  padding: .875rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: background var(--ease), border-color var(--ease);
}
.find__input::placeholder { color: rgba(255,255,255,.35); }
.find__input:focus {
  outline: none;
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.4);
}

.find__result {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  line-height: 1.7;
}
.find__result a { color: var(--gold); text-decoration: underline; }

.find__retailers h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.retailer-list li {
  color: rgba(255,255,255,.65);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .95rem;
  transition: color var(--ease);
}
.retailer-list li:hover { color: var(--white); }
.retailer-list li:last-child { border-bottom: none; }
.find__retailers .btn--outline-navy {
  margin-top: 1.5rem;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.find__retailers .btn--outline-navy:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* --- Footer ---------------------------------------------- */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 5rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .4rem;
}
.footer__brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.footer__tagline {
  font-style: italic;
  color: var(--gold) !important;
  margin-top: .5rem;
}
.footer__col h5 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer__col ul li { margin-bottom: .75rem; }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__col p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.footer__col p a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  font-weight: 700;
  transition: all var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,64,.1);
}
.footer__bottom { text-align: center; }
.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  line-height: 1.9;
}
.footer__bottom a {
  color: rgba(255,255,255,.35);
  transition: color var(--ease);
}
.footer__bottom a:hover { color: var(--white); }

/* --- Sold Out cards -------------------------------------- */
.wine-card--soldout { opacity: .75; }
.wine-card--soldout:hover { opacity: 1; }

.wine-card__badge--soldout {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.wine-card__img--muted {
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.5)) grayscale(40%);
  opacity: .7;
}
.btn--notify {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}
.btn--notify:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Notify Me Modal ------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,26,51,.7);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--ease);
}
.modal__close:hover { color: var(--text); }
.modal__box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: .5rem;
}
.modal__box p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal__input {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--cream-2);
  margin-bottom: .75rem;
  width: 100%;
  display: block;
}
.modal__input::placeholder { color: var(--text-light); }
.modal__input:focus {
  background: var(--white);
  border-color: var(--navy);
}
.modal__confirm p {
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* --- Scroll reveal --------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .story__grid,
  .why__grid,
  .find__grid { grid-template-columns: 1fr; gap: 3rem; }

  .story__stats { max-width: 460px; }

  .wines__grid { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right .35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,.4);
  }
  .nav__links.open { right: 0; }
  .nav__links a:not(.btn) { color: rgba(255,255,255,.8) !important; font-size: 1rem; }
  .nav__hamburger { display: flex; }

  .hero__content {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 7rem;
    gap: 2.5rem;
  }
  .hero__bottle { width: 200px; }
  .hero__ctas { justify-content: center; }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__text .eyebrow { display: block; margin-left: auto; margin-right: auto; width: fit-content; }

  .wines__grid,
  .testimonials__grid,
  .buy__grid { grid-template-columns: 1fr; }

  .buy__card--hero { transform: none; }
  .buy__card--hero:hover { transform: translateY(-4px); }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .find__search { flex-direction: column; }
  .find__input { min-width: auto; }
  .age-gate__btns { flex-direction: column; align-items: center; }
  .urgency-strip { flex-direction: column; text-align: center; }
}
