/* ============================================================
   CASA TUPKA — Premium Luxury Tequila Website
   Design System & Styles
   ============================================================ */

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

:root {
  --black:        #0a0806;
  --black-mid:    #110f0c;
  --black-card:   #16120e;
  --black-border: #2a2018;
  --gold:         #c9a34c;
  --gold-light:   #e8d08a;
  --gold-dark:    #8c6d2f;
  --gold-glow:    rgba(201,163,76,0.18);
  --copper:       #b87333;
  --ivory:        #f5f0e8;
  --ivory-dim:    #c8bfaf;
  --white:        #ffffff;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Cinzel', serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --transition:   0.6s var(--ease-out);
  --section-pad:  120px 0;
  --radius:       4px;
}



body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--black);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 24px rgba(201,163,76,0.3);
}
.btn--gold:hover {
  background-position: right center;
  box-shadow: 0 6px 40px rgba(201,163,76,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold-glow);
  box-shadow: 0 4px 24px rgba(201,163,76,0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.3);
}
.btn--ghost:hover {
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn--large { padding: 18px 48px; font-size: 13px; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  opacity: 1;
  transition: opacity 0.8s var(--ease-out);
}
.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-gate__inner {
  text-align: center;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.age-gate__logo {
  width: 180px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 30px rgba(201,163,76,0.4));
}
.age-gate__tagline {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.age-gate__question {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
}
.age-gate__buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.age-gate__disclaimer {
  font-size: 11px;
  color: var(--ivory-dim);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 360px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.navbar__logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: height 0.4s;
}
.navbar.scrolled .navbar__logo img { height: 38px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__links a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.navbar__links a:hover { color: var(--gold-light); }
.navbar__links a:hover::after { width: 100%; }
.navbar__cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  color: var(--gold) !important;
  transition: all 0.3s !important;
}
.navbar__cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.navbar__cta::after { display: none !important; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}
.navbar__hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
  transform-origin: center;
}
.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,8,6,0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold-light); }
.mobile-link--cta {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  border-radius: var(--radius);
  margin-top: 16px;
}

/* ============================================================
   SECTION LABELS / HEADINGS
   ============================================================ */
.section { padding: var(--section-pad); position: relative; }

.section__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 48px;
}
.section__heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.8);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.3) 70%),
    linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 50%);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 160px 80px 120px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__badge span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__badge-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  display: block !important;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero__sub strong { color: var(--gold-light); font-weight: 500; }

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  left: 80px;
}
.hero__scroll span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.3; }
}

.hero__bottle-wrap {
  position: absolute;
  right: 0; bottom: 0; top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 45%;
  pointer-events: none;
}
.hero__bottle {
  height: 95vh;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(-30px 0 60px rgba(201,163,76,0.25));
  animation: bottle-float 6s ease-in-out infinite;
}
@keyframes bottle-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.5deg); }
  66%       { transform: translateY(-6px) rotate(-0.3deg); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
}
.marquee-track .dot {
  font-size: 8px;
  opacity: 0.6;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about .container { padding-top: 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__image-col { position: relative; }

.about__image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about__img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.9) contrast(1.05);
}
.about__image-border {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.about__image-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about__image-small img {
  width: 220px;
  height: 140px;
  object-fit: cover;
}
.about__image-small p {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 8px 4px 4px;
}

.about__text-col { padding-top: 20px; }

.about__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 32px;
}

.about__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin-bottom: 20px;
}
.about__body strong { color: var(--ivory); font-weight: 500; }

.about__quote {
  margin-top: 40px;
  padding: 32px 32px 32px 40px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201,163,76,0.06), transparent);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ivory);
  position: relative;
}
.about__quote em { color: var(--gold-light); font-style: italic; }

.quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
}
.about__quote .quote-mark:first-child { top: -10px; left: 12px; }
.about__quote .quote-mark:last-child  { display: none; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,163,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,163,76,0.04) 0%, transparent 60%),
    var(--black-mid);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.stat-card {
  position: relative;
  padding: 48px 36px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,163,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: inline;
}
.stat-card__suffix {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  display: inline;
  vertical-align: super;
  font-size: 0.6em;
}
.stat-card__number-wrap {
  margin-bottom: 12px;
  line-height: 1;
}
.stat-card__label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 16px;
}
.stat-card__desc {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.6;
  opacity: 0.7;
}

/* ============================================================
   TEQUILA EDUCATION
   ============================================================ */
.tequila { background: var(--black); }

.tequila__intro {
  font-size: 16px;
  color: var(--ivory-dim);
  line-height: 1.85;
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.tequila__intro strong { color: var(--ivory); font-weight: 500; }
.tequila__intro em { color: var(--gold-light); font-style: italic; }

/* PROCESS */
.process {
  margin-bottom: 100px;
}
.process__header {
  text-align: center;
  margin-bottom: 60px;
}
.process__header h3 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.process__step {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.process__step:hover { border-color: var(--gold-dark); }
.process__step:hover .process__step-img img {
  transform: scale(1.08);
}

.process__step-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  z-index: 2;
}

.process__step-img {
  height: 200px;
  overflow: hidden;
}
.process__step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.7);
  transition: transform 0.6s var(--ease-out);
}

.process__step-content {
  padding: 24px 24px 28px;
}
.process__step-content h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.process__step-content p {
  font-size: 13.5px;
  color: var(--ivory-dim);
  line-height: 1.7;
}
.process__step-content em { color: var(--gold-light); font-style: italic; }
.process__step-content strong { color: var(--ivory); font-weight: 500; }

/* FACTS */
.facts { margin-top: 20px; }
.facts__title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fact-card {
  padding: 36px 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.fact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.fact-card:hover { border-color: var(--gold-dark); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.fact-card:hover::after { width: 100%; }

.fact-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.fact-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.3;
}
.fact-card p {
  font-size: 13.5px;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ============================================================
   EXPRESSIONS
   ============================================================ */
.expressions { background: var(--black-mid); }

.expression {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  padding: 80px 0;
  border-top: 1px solid var(--black-border);
}
.expression:last-child { margin-bottom: 0; }

.expression--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.expression--reverse .expression__img-col { order: 2; }
.expression--reverse .expression__content { order: 1; }

.expression__img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.expression__bottle-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 4s ease-in-out infinite;
}
.expression__bottle-glow--white {
  background: radial-gradient(circle, rgba(220,230,250,0.15) 0%, transparent 70%);
}
.expression__bottle-glow--gold {
  background: radial-gradient(circle, rgba(201,163,76,0.2) 0%, transparent 70%);
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}

.expression__bottle {
  height: 480px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
  transition: transform 0.6s var(--ease-out);
}
.expression:hover .expression__bottle {
  transform: translateY(-8px) scale(1.02);
}

.expression__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.expression__badge::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
}
.expression__badge--blanco::before { background: rgba(220,230,250,0.6); }
.expression__badge--blanco { color: rgba(220,230,250,0.8); }
.expression__badge--reposado::before { background: var(--gold); }
.expression__badge--reposado { color: var(--gold); }

.expression__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
}
.expression__title em { font-style: italic; color: var(--gold-light); }

.expression__divider {
  width: 50px; height: 1px;
  background: rgba(220,230,250,0.3);
  margin-bottom: 28px;
}
.expression__divider--gold { background: var(--gold); }

.expression__body {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 18px;
}
.expression__body em { color: var(--gold-light); font-style: italic; }
.expression__body strong { color: var(--ivory); font-weight: 500; }

/* Tasting Notes */
.tasting-notes {
  margin: 32px 0;
  padding: 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 2px;
}
.tasting-notes h5 {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
}
.tasting-notes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ivory-dim);
}
.note__icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.note__label { line-height: 1.4; }

.expression__quote {
  background: linear-gradient(to right, rgba(201,163,76,0.05), transparent);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0 28px;
}
.expression__quote p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 8px;
}
.expression__quote span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.expression__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.coming-soon-pill::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ivory-dim);
  animation: blink 1.5s ease-in-out infinite;
}
.coming-soon-pill--gold { color: var(--gold); border-color: rgba(201,163,76,0.3); }
.coming-soon-pill--gold::before { background: var(--gold); }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ============================================================
   PARALLAX STRIP
   ============================================================ */
.parallax-strip {
  position: relative;
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.6) 100%);
}
.parallax-strip__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 800px;
}
.parallax-strip__label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.parallax-strip__quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}
.parallax-strip__attr {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: var(--black); }

.founder__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.founder__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin-bottom: 20px;
}
.founder__body strong { color: var(--ivory); font-weight: 500; }
.founder__body em { color: var(--gold-light); font-style: italic; }

.founder__milestones {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--black-border);
  padding-left: 28px;
}
.milestone {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--black-border);
  position: relative;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 24px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,163,76,0.5);
}
.milestone__year {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  min-width: 44px;
  padding-top: 2px;
}
.milestone__text {
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.5;
}

.founder__quote {
  padding: 36px 36px 36px 44px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201,163,76,0.06), transparent);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ivory);
  position: relative;
  margin-top: 40px;
}
.founder__quote em { color: var(--gold-light); font-style: italic; }
.founder__quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.founder__quote .quote-mark {
  top: -5px; left: 10px;
  font-size: 60px;
  opacity: 0.15;
}

.founder__image-col { position: relative; }

.founder__img-frame {
  position: relative;
}
.founder__img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.85) contrast(1.05);
}
.founder__img-border {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.founder__img-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,8,6,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--black-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder__img-tag img { height: 32px; width: auto; }
.founder__img-tag span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder__img-second {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.founder__img-second img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  object-position: top;
}
.founder__img-second p {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 8px 4px 4px;
}

/* ============================================================
   NOTIFY / EMAIL CAPTURE
   ============================================================ */
.notify {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.notify__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,163,76,0.1) 0%, transparent 65%),
    var(--black-mid);
}

.notify__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.notify__logo {
  width: 160px;
  filter: drop-shadow(0 0 30px rgba(201,163,76,0.3));
  margin-bottom: 8px;
}

.notify__heading {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin: 8px 0;
}
.notify__heading em { font-style: italic; color: var(--gold-light); }

.notify__sub {
  font-size: 16px;
  color: var(--ivory-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 16px;
}

.notify__form { width: 100%; }
.notify__form-group {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.notify__input {
  flex: 1;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,163,76,0.3);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.notify__input:focus { border-color: var(--gold); }
.notify__input::placeholder { color: var(--ivory-dim); opacity: 0.5; }
.notify__btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
}

.notify__disclaimer {
  font-size: 12px;
  color: var(--ivory-dim);
  opacity: 0.5;
  margin-top: 4px;
}

.notify__success {
  text-align: center;
  padding: 40px;
}
.success-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  animation: rotate-star 3s linear infinite;
}
@keyframes rotate-star {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.notify__success h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 300;
}
.notify__success p { color: var(--ivory-dim); font-size: 15px; }

.notify__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.notify__socials span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0.7;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,163,76,0.3);
  border-radius: 50%;
  transition: all 0.3s;
}
.social-link img {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(2) saturate(0.5);
}
.social-link:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: scale(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); }

.footer__top {
  padding: 80px 0 60px;
  border-top: 1px solid var(--black-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer__logo { width: 140px; margin-bottom: 20px; }
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer__origin {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li { font-size: 13px; color: var(--ivory-dim); opacity: 0.7; }
.footer__col ul li a {
  color: var(--ivory-dim);
  opacity: 0.7;
  transition: all 0.3s;
}
.footer__col ul li a:hover { color: var(--gold-light); opacity: 1; }

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--black-border);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal {
  font-size: 11px;
  color: var(--ivory-dim);
  opacity: 0.4;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 11px;
  color: var(--ivory-dim);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.footer__links a:hover { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 40px; right: 40px;
  width: 48px; height: 48px;
  background: var(--black-card);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about__image-small { right: -20px; bottom: -20px; }
  .founder__img-second { right: -20px; bottom: -20px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px 0; }
  .container { padding: 0 24px; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar { padding: 18px 24px; }
  .navbar.scrolled { padding: 14px 24px; }

  .hero__content { padding: 140px 24px 100px; }
  .hero__scroll { left: 24px; }
  .hero__bottle-wrap { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__image-small { position: static; margin-top: 16px; }
  .about__image-small img { width: 100%; height: 180px; }

  .expression {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .expression--reverse .expression__img-col { order: 1; }
  .expression--reverse .expression__content { order: 2; }
  .expression__bottle { height: 320px; }
  .expression__img-col { min-height: 340px; }

  .founder__grid { grid-template-columns: 1fr; gap: 60px; }
  .founder__img-second { display: none; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .facts__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .notify__form-group { flex-direction: column; }
  .notify__input { border-right: 1px solid rgba(201,163,76,0.3); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .notify__btn { border-radius: 0 0 var(--radius) var(--radius); }
  .parallax-strip { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .facts__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .age-gate__buttons { flex-direction: column; width: 100%; }
  .tasting-notes__grid { grid-template-columns: 1fr; }
  .expression__cta { flex-direction: column; align-items: flex-start; }
  .age-gate__logo {
  display: none;
}
}
