/* ══════════════════════════════════════════════
   ORIGINAL TEQUILA — Unified Design System
   
   TYPE SCALE (consistent everywhere):
   —  Display:    Cinzel 900,  clamp(3rem, 6vw, 5.5rem)
   —  Heading:    Cinzel 600,  clamp(2rem, 4vw, 3.4rem)
   —  Subheading: Cormorant italic 300, clamp(1.1rem, 2vw, 1.5rem)
   —  Body:       Cormorant 300, 1.2rem / line-height 1.9
   —  Label:      Cinzel 400, 0.75rem / letter-spacing 0.45em
   —  Nav links:  Cinzel 400, 0.85rem / letter-spacing 0.22em
   —  Buttons:    Cinzel 600, 0.8rem  / letter-spacing 0.3em
   —  Tags:       Cinzel 400, 0.7rem  / letter-spacing 0.2em
══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9943a;
  --gold-light:  #e8be6a;
  --gold-dim:    #7a5a20;
  --black:       #0a0804;
  --dark:        #130f08;
  --dark2:       #1a1409;
  --cream:       #f5edd8;
  --cream-dim:   #c4b08a;
  --amber:       #a0520a;

  /* Type scale tokens */
  --font-display:   'Cinzel', serif;
  --font-serif:     'Cormorant Garamond', serif;

  --size-display:   clamp(3rem, 6vw, 5.5rem);
  --size-heading:   clamp(2rem, 4vw, 3.4rem);
  --size-subhead:   clamp(1.1rem, 2vw, 1.5rem);
  --size-body:      1.15rem;
  --size-label:     0.75rem;
  --size-nav:       0.85rem;
  --size-btn:       0.8rem;
  --size-tag:       0.68rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: var(--size-body);
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
body.gate-active  { overflow: hidden; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
}

/* ══════════════════════════════
   AGE GATE
══════════════════════════════ */

#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-bg {
  position: absolute; inset: 0;
  background-image: url('images/Tequila.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.3) saturate(0.6) sepia(0.4);
  transform: scale(1.05);
}

.age-gate-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(10,8,4,0.45) 0%, rgba(10,8,4,0.92) 100%);
}

.age-gate-box {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 4rem 4.5rem;
  max-width: 560px; width: 90%;
  border: 1px solid rgba(201,148,58,0.2);
  background: rgba(10,8,4,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: gateBoxIn 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes gateBoxIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Corner accents */
.age-gate-box::before,
.age-gate-box::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: rgba(201,148,58,0.4);
  border-style: solid;
}
.age-gate-box::before {
  top: -1px; left: -1px;
  border-width: 1px 0 0 1px;
}
.age-gate-box::after {
  bottom: -1px; right: -1px;
  border-width: 0 1px 1px 0;
}

.age-gate-logo {
  width: 160px;
  mix-blend-mode: screen;
  filter: contrast(1.05) saturate(1.2);
  margin-bottom: 1.4rem;
  animation: gateBoxIn 1s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.age-gate-rule {
  width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,148,58,0.7), transparent);
  margin-bottom: 1.8rem;
}

.age-gate-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.age-gate-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.age-gate-subtext {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 2.4rem;
}

.age-gate-btns {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.age-gate-yes {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}
.age-gate-yes:hover { opacity: 0.85; transform: translateY(-1px); }

.age-gate-no {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,148,58,0.4);
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.age-gate-no:hover { border-color: var(--gold); background: rgba(201,148,58,0.07); }

.age-gate-legal {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(196,176,138,0.4);
  max-width: 380px;
}
.age-gate-legal a {
  color: rgba(201,148,58,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.age-gate-legal a:hover { color: var(--gold); }

/* ══════════════════════════════
   GLOBAL TYPE COMPONENTS
══════════════════════════════ */

/* Section labels — e.g. "Our Story", "The Craft" */
.section-label {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* Section headings */
.section-heading {
  font-family: var(--font-display);
  font-size: var(--size-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin: 1.4rem 0;
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Body text */
.body-text {
  font-family: var(--font-serif);
  font-size: var(--size-body);
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-bottom: 1.6rem;
}

/* Buttons */
.btn-primary {
  font-family: var(--font-display);
  font-size: var(--size-btn);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.9rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--font-display);
  font-size: var(--size-btn);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(201,148,58,0.45);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,148,58,0.07); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════
   CINEMATIC INTRO
══════════════════════════════ */

#intro {
  position: fixed; inset: 0; z-index: 9000;
  background: #000;
  overflow: hidden;
  pointer-events: all;
}
#intro.done { display: none; }

.intro-bar-top, .intro-bar-bottom {
  position: absolute; left: 0; right: 0;
  background: #000; z-index: 10; height: 0;
}
.intro-bar-top    { top: 0;    animation: introBarTop    0.6s 0s cubic-bezier(0.16,1,0.3,1) forwards; }
.intro-bar-bottom { bottom: 0; animation: introBarBottom 0.6s 0s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes introBarTop    { to { height: 10vh; } }
@keyframes introBarBottom { to { height: 10vh; } }

.intro-bg {
  position: absolute; inset: 0;
  background-image: url('../images/Tequila.png');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0) saturate(0);
  transform: scale(1.08);
  animation: introBgBreathe 5s 0.1s ease forwards;
}
@keyframes introBgBreathe {
  0%   { filter: brightness(0) saturate(0);                    transform: scale(1.08); }
  25%  { filter: brightness(0.08) saturate(0.2) sepia(0.8);    transform: scale(1.06); }
  60%  { filter: brightness(0.28) saturate(0.5) sepia(0.4);    transform: scale(1.04); }
  100% { filter: brightness(0.38) saturate(0.65) sepia(0.35);  transform: scale(1.02); }
}

.intro-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(10,8,4,0.1) 0%, rgba(10,8,4,0.92) 100%);
}

#intro-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  opacity: 0;
  animation: introCanvasIn 1.5s 1s ease forwards;
}
@keyframes introCanvasIn { to { opacity: 1; } }

.intro-flare {
  position: absolute;
  top: 50%; left: -20%;
  width: 140%; height: 1px;
  background: linear-gradient(to right,
    transparent 0%, transparent 20%,
    rgba(201,148,58,0.06) 35%,
    rgba(232,190,106,0.45) 50%,
    rgba(201,148,58,0.06) 65%,
    transparent 80%, transparent 100%);
  transform: rotate(-8deg) translateY(-50%);
  opacity: 0;
  animation: introFlare 0.9s 2.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes introFlare {
  0%   { opacity: 0; transform: rotate(-8deg) translateY(-50%) translateX(-30%); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(-8deg) translateY(-50%) translateX(30%); }
}

.intro-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 5;
}

.intro-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: rgba(122, 90, 32, 0.85);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: introFadeSlide 1s 0.7s ease forwards;
}
@keyframes introFadeSlide {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-rule {
  position: relative; height: 1px; width: 0;
  margin-bottom: 2.6rem; overflow: visible;
}
.intro-rule::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px; width: 0;
  background: linear-gradient(to right, transparent, rgba(201,148,58,0.9), transparent);
  animation: introRuleExpand 1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes introRuleExpand { to { width: clamp(200px, 30vw, 360px); } }

.intro-logo {
  width: clamp(200px, 30vw, 320px);
  opacity: 0;
  animation: introLogoReveal 1.6s 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
  mix-blend-mode: screen;
  filter: contrast(1.1) saturate(1.2);
}
@keyframes introLogoReveal {
  0%   { opacity: 0; transform: scale(1.06) translateY(8px); }
  30%  { opacity: 0.6; }
  100% { opacity: 1; transform: scale(1) translateY(0);
         filter: contrast(1.1) saturate(1.3) drop-shadow(0 0 30px rgba(201,148,58,0.6)); }
}

.intro-rule-bottom {
  height: 1px; width: 0; position: relative;
  margin-top: 2.6rem;
}
.intro-rule-bottom::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px; width: 0;
  background: linear-gradient(to right, transparent, rgba(201,148,58,0.9), transparent);
  animation: introRuleExpand 1s 1.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.intro-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.08em;
  color: rgba(196,176,138,0);
  margin-top: 2rem;
  animation: introTaglineBreathe 1.8s 2.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes introTaglineBreathe {
  0%   { color: rgba(196,176,138,0); letter-spacing: 0.02em; }
  100% { color: rgba(196,176,138,0.8); letter-spacing: 0.38em; }
}

.intro-wipe {
  position: absolute; inset: 0;
  background: #000;
  transform: translateY(100%);
  animation: introWipeUp 0.6s 4.8s cubic-bezier(0.76,0,0.24,1) forwards;
  z-index: 20;
}
@keyframes introWipeUp { to { transform: translateY(0); } }


/* ══════════════════════════════
   NAV
══════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.5rem;
  height: 96px;
  transition: height 0.4s ease, background 0.4s ease;
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 3.5rem; right: 3.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,148,58,0.2) 30%, rgba(201,148,58,0.2) 70%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
nav.scrolled {
  background: rgba(8,6,3,0.97);
  height: 74px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
nav.scrolled::after { opacity: 1; }

/* Left links */
.nav-left {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
.nav-left a, .nav-right a:not(.btn-nav-cta) {
  font-family: var(--font-display);
  font-size: var(--size-nav);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,176,138,0.7);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-left a::after, .nav-right a:not(.btn-nav-cta)::after {
  content: '';
  position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-left a:hover, .nav-right a:not(.btn-nav-cta):hover { color: var(--gold-light); }
.nav-left a:hover::after, .nav-right a:not(.btn-nav-cta):hover::after { transform: scaleX(1); }

/* Centre wordmark — the hero of the nav */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 2px;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.nav-logo-original {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(201,148,58,0.25);
  transition: font-size 0.4s;
}
nav.scrolled .nav-logo-original { font-size: 1.75rem; }

.nav-logo-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,148,58,0.55), transparent);
  margin: 2px 0;
}

.nav-logo-tequila {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: font-size 0.4s;
}
nav.scrolled .nav-logo-tequila { font-size: 0.65rem; }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.8rem;
}

.btn-nav-cta {
  font-family: var(--font-display);
  font-size: var(--size-btn);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.75rem 1.8rem;
  transition: opacity 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }


/* ══════════════════════════════
   HERO
══════════════════════════════ */

.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.45; filter: saturate(0.75) sepia(0.2);
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,8,4,0.3) 0%,
    rgba(10,8,4,0.1) 30%,
    rgba(10,8,4,0.5) 70%,
    rgba(10,8,4,1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.4rem;
  opacity: 0; animation: fadeUp 1.2s 5.6s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--size-label);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-logo-img {
  width: clamp(240px, 35vw, 380px);
  mix-blend-mode: screen;
  filter: contrast(1.05) saturate(1.2) drop-shadow(0 0 30px rgba(201,148,58,0.35));
}
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--size-subhead);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
}
.hero-cta { display: flex; gap: 1.2rem; margin-top: 0.5rem; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  opacity: 0; animation: fadeUp 1s 6.3s ease forwards;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.scroll-line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }


/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats {
  background: var(--dark);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(201,148,58,0.1);
  border-bottom: 1px solid rgba(201,148,58,0.1);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-dim); margin-top: 0.5rem;
}


/* ══════════════════════════════
   LEGACY
══════════════════════════════ */
.legacy {
  padding: 9rem 4rem;
  background: var(--black);
  position: relative; overflow: hidden;
}
.legacy::before {
  content: 'ORIGINAL';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw; font-weight: 900;
  color: rgba(201,148,58,0.022);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
}
.legacy-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.legacy-text { position: relative; z-index: 1; }
.legacy-img { position: relative; }
.legacy-img img {
  width: 100%; height: 580px;
  object-fit: cover; object-position: center 20%;
  filter: sepia(0.15) saturate(0.9); display: block;
}
.legacy-img::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,148,58,0.18);
  pointer-events: none; z-index: 1;
}


/* ══════════════════════════════
   PHILOSOPHY
══════════════════════════════ */
.philosophy {
  padding: 9rem 4rem;
  background: var(--dark); text-align: center;
}
.philosophy-inner { max-width: 860px; margin: 0 auto; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 10rem; line-height: 0.4;
  color: rgba(201,148,58,0.1); display: block;
}
.philosophy-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.5;
  color: var(--cream); margin: 2.5rem 0 1.5rem;
}
.philosophy-quote strong { color: var(--gold); font-style: normal; font-weight: 400; }
.philosophy-attr {
  font-family: var(--font-display);
  font-size: var(--size-label);
  letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold-dim);
}


/* ══════════════════════════════
   PRODUCT
══════════════════════════════ */
.products {
  padding: 9rem 4rem;
  background: var(--black); text-align: center;
}
.products-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--size-subhead);
  font-weight: 300;
  color: var(--cream-dim); margin-bottom: 4rem;
}
.single-product {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(201,148,58,0.15); overflow: hidden;
}
.single-product-img { position: relative; overflow: hidden; }
.single-product-img img {
  width: 100%; height: 100%; min-height: 540px;
  object-fit: cover; object-position: center 22%;
  filter: sepia(0.1) saturate(0.92);
  transition: transform 0.9s ease; display: block;
}
.single-product:hover .single-product-img img { transform: scale(1.04); }
.single-product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(26,20,9,1) 100%);
  pointer-events: none;
}
.single-product-info {
  background: var(--dark2); padding: 5rem 4rem;
  text-align: left; display: flex;
  flex-direction: column; justify-content: center;
}
.product-badge {
  font-family: var(--font-display);
  font-size: var(--size-tag);
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,148,58,0.3);
  display: inline-block; padding: 0.35rem 1.1rem;
  margin-bottom: 1.5rem; align-self: flex-start;
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600; color: var(--cream);
  line-height: 1.1; margin-bottom: 0.3rem;
}
.product-name em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.1rem;
  font-weight: 300; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 1.5rem;
}
.product-novelty {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem; margin-bottom: 2rem;
}
.product-novelty p {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.05rem;
  color: var(--gold); font-weight: 300; line-height: 1.7;
}
.product-notes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.note-tag {
  font-family: var(--font-display);
  font-size: var(--size-tag);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201,148,58,0.15);
  padding: 0.32rem 0.8rem;
}


/* ══════════════════════════════
   LIFESTYLE
══════════════════════════════ */
.lifestyle {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.lifestyle-img { position: relative; overflow: hidden; }
.lifestyle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.1);
  transition: transform 0.9s ease; display: block;
}
.lifestyle-img:hover img { transform: scale(1.04); }
.lifestyle-text {
  background: var(--dark); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}


/* ══════════════════════════════
   BARREL
══════════════════════════════ */
.barrel-section {
  position: relative; height: 72vh; min-height: 520px;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center; text-align: center;
}
.barrel-section img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.7) sepia(0.2);
}
.barrel-overlay { position: absolute; inset: 0; background: rgba(10,8,4,0.62); }
.barrel-content { position: relative; z-index: 2; max-width: 700px; padding: 2rem; }
.barrel-heading {
  font-family: var(--font-display);
  font-size: var(--size-display);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(160deg, var(--gold-light), var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  margin: 1.5rem 0 1rem; line-height: 1.05;
}
.barrel-sub {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.25rem;
  color: var(--cream-dim); font-weight: 300; letter-spacing: 0.1em;
}


/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process { padding: 9rem 4rem; background: var(--dark); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 1.9rem; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
}
.step { text-align: center; }
.step-num {
  width: 3.8rem; height: 3.8rem;
  border: 1px solid var(--gold-dim);
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold); position: relative; z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--size-label);
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 0.8rem;
}
.step-desc {
  font-family: var(--font-serif);
  font-size: 1rem; line-height: 1.8;
  color: var(--cream-dim); font-weight: 300;
}


/* ══════════════════════════════
   SHOT BAND
══════════════════════════════ */
.shot-band {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.shot-img { overflow: hidden; }
.shot-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  filter: saturate(0.9); display: block;
  transition: transform 0.9s ease;
}
.shot-img:hover img { transform: scale(1.04); }
.shot-text {
  background: var(--black); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}


/* ══════════════════════════════
   FOUNDER
══════════════════════════════ */
.founder {
  padding: 5.5rem 4rem;
  background: var(--dark2); text-align: center;
  border-top: 1px solid rgba(201,148,58,0.1);
  border-bottom: 1px solid rgba(201,148,58,0.1);
}
.founder-inner { max-width: 600px; margin: 0 auto; }
.founder-label {
  font-family: var(--font-display);
  font-size: var(--size-label);
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.2rem;
}
.founder-name {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold); letter-spacing: 0.04em;
}
.founder-title {
  font-family: var(--font-display);
  font-size: var(--size-label);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 0.6rem;
}


/* ══════════════════════════════
   CTA
══════════════════════════════ */
.cta-section {
  padding: 11rem 4rem;
  background: var(--black); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(160,82,10,0.14) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-heading {
  font-family: var(--font-display);
  font-size: var(--size-display);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(160deg, var(--gold-light), var(--gold), var(--amber));
  -webkit-background-clip: text; background-clip: text;
  margin: 1.5rem 0; line-height: 1.05;
}
.cta-tagline {
  font-family: var(--font-serif);
  font-style: italic; font-size: var(--size-subhead);
  color: var(--cream-dim); font-weight: 300; margin-bottom: 3rem;
}
.cta-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark); padding: 5.5rem 4rem 3.5rem;
  border-top: 1px solid rgba(201,148,58,0.1);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo img {
  height: 72px;
  mix-blend-mode: screen;
  filter: contrast(1.05) saturate(1.1);
  margin-bottom: 1.2rem; display: block;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.05rem;
  color: var(--cream-dim); font-weight: 300; margin-bottom: 1.2rem;
}
.footer-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(196,176,138,0.45); font-weight: 300;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--size-label);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 0.9rem;
}
.footer-links a {
  font-family: var(--font-serif);
  font-size: 1rem; color: rgba(196,176,138,0.45);
  text-decoration: none; transition: color 0.3s; font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,148,58,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copyright {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(196,176,138,0.28);
}
.footer-venture {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1rem;
  color: var(--gold-dim);
}
.footer-legal {
  font-family: var(--font-serif);
  font-size: 0.9rem; color: rgba(196,176,138,0.28); font-style: italic;
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  nav {
    grid-template-columns: auto 1fr;
    padding: 0 1.5rem;
    height: 72px;
  }
  nav.scrolled { height: 60px; }
  .nav-left { display: none; }
  .nav-right { gap: 1rem; }
  .nav-right a:not(.btn-nav-cta) { display: none; }
  .nav-logo-original { font-size: 1.6rem; }
  nav.scrolled .nav-logo-original { font-size: 1.35rem; }

  .legacy, .products, .process, .philosophy, .cta-section { padding: 5.5rem 2rem; }
  .legacy-inner, .single-product, .lifestyle, .shot-band { grid-template-columns: 1fr; }
  .legacy-img img { height: 320px; }
  .single-product-img img { min-height: 300px; object-position: center 30%; }
  .single-product-img::after { background: linear-gradient(to bottom, transparent 60%, rgba(26,20,9,1) 100%); }
  .single-product-info, .lifestyle-text, .shot-text { padding: 3.5rem 2rem; }
  .stats { padding: 4rem 2rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .barrel-section { height: 55vh; }
  .founder { padding: 4rem 2rem; }
  footer { padding: 4rem 2rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
