/* ============================================================
   SUCCESS VODKA — Luxury Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --charcoal:   #1A1A1A;
  --deep-gray:  #2D2D2D;
  --mid-gray:   #4A4A4A;
  --warm-gray:  #888070;
  --gold:       #C9A84C;
  --gold-dark:  #9A7B2F;
  --gold-light: #E5C97A;
  --off-white:  #FAF8F5;
  --parchment:  #F2F0EC;
  --champagne:  #D4C49A;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --track-wide:  0.15em;
  --track-wider: 0.25em;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 88px;
  --section-pad: clamp(80px, 10vw, 140px);
  --content-max: 1280px;
  --content-narrow: 900px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography Scale ──────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.05;
}
.t-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
}
.t-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}
.t-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
}
.t-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}
.t-body-sm {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.container--narrow {
  max-width: var(--content-narrow);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-luxury), border-color 0.5s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxury);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 10px 24px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  padding: 120px 40px 60px;
  flex-direction: column;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 32px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--white);
}
.nav__mobile .nav__link:hover { color: var(--gold); }
.nav__mobile .nav__link::after { display: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  padding: 16px 40px;
  transition: 0.3s var(--ease-luxury);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
}
.btn--outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-luxury);
}
.btn:hover .btn__arrow { transform: translateX(6px); }

/* ── Gold Rule ─────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }
.gold-rule--long { width: 100%; }

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Pull Quote ────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}
.pull-quote--dark {
  color: var(--charcoal);
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-reveal), transform 0.9s var(--ease-reveal);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer__social { display: flex; gap: 24px; }
.footer__social-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.footer__social-link:hover { color: var(--gold); }
.footer__age-gate {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 24px;
}

/* ── Page Hero (Interior Pages) ────────────────────────────── */
.page-hero {
  min-height: 60vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-top: calc(var(--nav-h) + 60px);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  max-width: 800px;
}
.page-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  max-width: 600px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
