/* ============================================================
   SUCCESS VODKA — Homepage Styles
   ============================================================ */

/* ── Age Gate ──────────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.age-gate__inner {
  text-align: center;
  padding: 60px 40px;
  max-width: 480px;
}
.age-gate__logo {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.age-gate__logo span { color: var(--gold); }
.age-gate__rule {
  width: 48px; height: 1px; background: var(--gold);
  margin: 16px auto 32px;
}
.age-gate__question {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 300;
  color: var(--white); margin-bottom: 8px;
}
.age-gate__sub {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.age-gate__actions {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 32px;
  flex-wrap: wrap;
}
.age-gate__legal {
  font-size: 11px; color: rgba(255,255,255,0.2);
  line-height: 1.6;
}
.age-gate__legal a { color: rgba(255,255,255,0.35); text-decoration: underline; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(201,168,76,0.04) 0%, transparent 45%),
    linear-gradient(160deg, #0d0d0d 0%, #000 60%, #0A0A0A 100%);
}
.hero__glow {
  position: absolute;
  right: 5%; top: 50%; transform: translateY(-50%);
  width: 45vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding-top: 60px; padding-bottom: 80px;
}
.hero__left { max-width: 560px; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; line-height: 0.95;
  color: var(--white);
  margin: 20px 0 28px;
}
.hero__headline em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75; max-width: 420px;
  margin-bottom: 44px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__right {
  display: flex; justify-content: center; align-items: center;
}
.hero__bottle-wrap {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero__bottle-glow {
  position: absolute;
  width: 200px; height: 500px;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.15) 0%, transparent 65%);
  top: -40px;
  pointer-events: none;
}
.hero__bottle {
  position: relative; z-index: 1;
  width: clamp(140px, 20vw, 220px);
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.18)) drop-shadow(0 4px 20px rgba(0,0,0,0.6));
  animation: bottleFloat 6s ease-in-out infinite;
}
.bottle-svg { width: 100%; height: auto; }
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__awards {
  display: flex; gap: 24px; margin-top: 36px;
}
.hero__award {
  display: flex; flex-direction: column;
  align-items: center;
}
.hero__award-num {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--gold);
}
.hero__award-text {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.hero__scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Statement Strip ────────────────────────────────────────── */
.statement-strip {
  background: var(--charcoal);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.statement-strip__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
}
.statement-strip__text em {
  color: var(--gold);
  font-style: italic;
}
.br-mobile { display: none; }

/* ── Brand Story ────────────────────────────────────────────── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.brand-story__visual {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.brand-story__image-composition {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.bsv__surface {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #111 100%);
}
.bsv__light-beam {
  position: absolute;
  top: 0; right: 30%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.08) 70%, transparent);
  transform: rotate(-8deg) scaleX(60);
}
.bsv__glass {
  position: relative; z-index: 2;
  width: 80px; height: 140px;
  left: -20px;
}
.bsv__glass-body {
  position: absolute; bottom: 0;
  width: 80px; height: 120px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px 4px 2px 2px;
  backdrop-filter: blur(1px);
}
.bsv__glass-liquid {
  position: absolute; bottom: 0;
  width: 80px; height: 60px;
  background: linear-gradient(to top, rgba(201,168,76,0.25), rgba(201,168,76,0.05));
  border-radius: 0 0 2px 2px;
}
.bsv__glass-shine {
  position: absolute; bottom: 10px; left: 10px;
  width: 8px; height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  border-radius: 4px;
}
.bsv__quote-overlay {
  position: absolute; bottom: 48px; left: 48px; right: 48px;
  z-index: 3;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.bsv__quote-overlay span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.brand-story__content {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.brand-story__content .t-title { color: var(--black); margin-top: 8px; }
.brand-story__content .t-body { color: var(--mid-gray); margin-top: 20px; }

/* ── Product Grid ───────────────────────────────────────────── */
.collection-preview {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.collection-preview__header {
  text-align: center; margin-bottom: 72px;
}
.collection-preview__header .t-title {
  color: var(--white); margin-top: 12px;
}
.collection-preview__header .t-title em { color: var(--gold); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-luxury);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__visual {
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.6s var(--ease-luxury);
  transform-style: preserve-3d;
  perspective: 800px;
}
.product-card:hover .product-card__visual { transform: scale(1.02); }
.product-card__bottle-art {
  width: 100px; height: 280px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-luxury);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}
.product-card__bottle-art svg { width: 100%; height: 100%; }

/* Accent lighting per flavor */
.product-card--original .product-card__visual::before { background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 60%); }
.product-card--peach   .product-card__visual::before { background: radial-gradient(ellipse at 50% 100%, rgba(255,140,60,0.1) 0%, transparent 60%); }
.product-card--blackberry .product-card__visual::before { background: radial-gradient(ellipse at 50% 100%, rgba(100,20,180,0.12) 0%, transparent 60%); }
.product-card--apple   .product-card__visual::before { background: radial-gradient(ellipse at 50% 100%, rgba(180,20,20,0.1) 0%, transparent 60%); }
.product-card__visual::before {
  content: ''; position: absolute; inset: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card__visual::before { opacity: 1.5; }

.product-card__info {
  padding: 28px 24px 32px;
  border-top: 1px solid rgba(201,168,76,0.12);
  flex: 1; display: flex; flex-direction: column;
}
.product-card__label {
  color: var(--gold); font-size: 9px;
  display: block; margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  color: var(--white); line-height: 1;
  margin-bottom: 10px;
}
.product-card__descriptor {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.55; flex: 1;
}
.product-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  color: var(--gold); font-size: 10px;
  transition: gap 0.3s;
}
.product-card__cta:hover { gap: 14px; }

.collection-preview__footer {
  text-align: center; margin-top: 64px;
}

/* ── Lifestyle Banner ───────────────────────────────────────── */
.lifestyle-banner {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.lifestyle-banner__bg {
  position: absolute; inset: 0; z-index: 0;
}
.lb__scene { position: absolute; inset: 0; overflow: hidden; }
.lb__surface {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 40%, #0d0d0d 100%);
}
.lb__light-pool {
  position: absolute;
  width: 80%; height: 100%;
  top: 0; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.18) 0%, transparent 55%);
}
.lb__bokeh {
  position: absolute; border-radius: 50%;
  background: rgba(201,168,76,0.06);
  filter: blur(40px);
  animation: bokehFloat 8s ease-in-out infinite;
}
.lb__bokeh--1 { width: 300px; height: 300px; top: -100px; left: 10%; animation-delay: 0s; }
.lb__bokeh--2 { width: 200px; height: 200px; bottom: -50px; right: 15%; animation-delay: -3s; }
.lb__bokeh--3 { width: 150px; height: 150px; top: 30%; right: 35%; animation-delay: -5s; }
@keyframes bokehFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}
.lifestyle-banner__content {
  position: relative; z-index: 1;
  text-align: center;
}
.lifestyle-banner__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.3;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

/* ── Credentials Bar ────────────────────────────────────────── */
.credentials-bar {
  background: var(--off-white);
  padding: 72px 0;
  border-top: 1px solid var(--champagne);
}
.credentials-bar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.credentials-bar__item {
  display: flex; align-items: center; gap: 20px;
  flex: 1; min-width: 200px;
}
.credentials-bar__icon {
  width: 48px; height: 48px; flex-shrink: 0;
}
.credentials-bar__icon svg { width: 100%; height: 100%; }
.credentials-bar__value {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--black); line-height: 1;
  margin-bottom: 4px;
}
.credentials-bar__desc { color: var(--warm-gray); }
.credentials-bar__divider {
  width: 1px; height: 48px;
  background: var(--champagne); flex-shrink: 0;
}

/* ── Email Capture ──────────────────────────────────────────── */
.email-capture {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.email-capture__inner { }
.email-form__row {
  display: flex; gap: 0;
  max-width: 520px; margin: 0 auto;
}
.email-form__input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.email-form__input::placeholder { color: rgba(255,255,255,0.25); }
.email-form__input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.email-form__row .btn {
  border-radius: 0;
  flex-shrink: 0;
}

/* ── Hero bottle as real image ──────────────────────────────── */
.hero__bottle-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.2)) drop-shadow(0 4px 30px rgba(0,0,0,0.7));
  animation: bottleFloat 6s ease-in-out infinite;
}

/* ── Product card image ─────────────────────────────────────── */
.product-card__link {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__glow {
  position: absolute; inset: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.product-card__glow--original   { background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.2) 0%, transparent 60%); }
.product-card__glow--peach      { background: radial-gradient(ellipse at 50% 100%, rgba(255,140,60,0.18) 0%, transparent 60%); }
.product-card__glow--blackberry { background: radial-gradient(ellipse at 50% 100%, rgba(160,40,200,0.18) 0%, transparent 60%); }
.product-card__glow--apple      { background: radial-gradient(ellipse at 50% 100%, rgba(200,20,20,0.15) 0%, transparent 60%); }
.product-card:hover .product-card__glow { opacity: 1.5; }

/* ── Lifestyle banner with real image ───────────────────────── */
.lifestyle-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.lifestyle-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.55) 100%);
}

/* ── Lifestyle Editorial Grid ───────────────────────────────── */
.lifestyle-grid-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.lifestyle-grid-header {
  margin-bottom: 56px;
}
.lifestyle-grid-header .t-title { margin-top: 10px; }
.lifestyle-grid-header .t-title em { color: var(--gold); }
.lifestyle-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3px;
  height: 640px;
}
.leg__card {
  position: relative; overflow: hidden; background: var(--charcoal);
  cursor: pointer;
}
.leg__card--tall { grid-row: span 1; }
.leg__right-col {
  display: grid; grid-template-rows: 1fr 1fr; gap: 3px;
}
.leg__card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease-luxury);
}
.leg__card:hover .leg__card-bg { transform: scale(1.04); }
.leg__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.leg__card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px; z-index: 1;
}
.leg__card-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 22px);
  font-style: italic; font-weight: 300;
  color: var(--white); margin-top: 8px; line-height: 1.3;
}

/* ── Founder Section ────────────────────────────────────────── */
.founder-section {
  background: var(--black);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.founder-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-section__quote {
  margin: 20px 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}
.founder-section__quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
}
.founder-section__image-wrap {
  position: relative;
  overflow: hidden;
}
.founder-section__img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.1) brightness(0.88);
}
.founder-section__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10,10,10,0.5) 100%
  );
  pointer-events: none;
}

/* ── Email Capture ──────────────────────────────────────────── */
.email-capture__icon { display: block; margin: 0 auto; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .lifestyle-editorial-grid { height: 480px; }
  .founder-section__inner { gap: 48px; }
  .founder-section__img { height: 520px; }
}
@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; }
  .hero__left { max-width: 100%; order: 2; }
  .hero__right { order: 1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__bottle-img { max-width: 160px; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story__visual { height: 320px; }
  .brand-story__content { padding: 48px 28px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .credentials-bar__inner { flex-direction: column; gap: 32px; }
  .credentials-bar__divider { width: 48px; height: 1px; }
  .email-form__row { flex-direction: column; gap: 12px; }
  .email-form__input { border-right: 1px solid rgba(201,168,76,0.3); }
  .br-mobile { display: block; }
  .statement-strip { padding: 52px 0; }
  .lifestyle-editorial-grid { grid-template-columns: 1fr; height: auto; }
  .leg__right-col { grid-template-rows: auto; }
  .leg__card { height: 260px; }
  .founder-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-section__img { height: 420px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}
