/* ===========================
   YUTI BREWERIIES — STYLES.CSS
   =========================== */

:root {
  --gold: #f7941d;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --crimson: #8B1A1A;
  --crimson-light: #C0392B;
  --dark: #0A0805;
  --dark-2: #120E09;
  --dark-3: #1C1510;
  --tan: #F5EDD8;
  --tan-dark: #E8D9B8;
  --cream: #FAF6EE;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.5);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TEXTURE OVERLAY */
.texture-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.texture-overlay.dark { opacity: 0.08; }

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

/* ========================
   AGE GATE
   ======================== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(139,26,26,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.15) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=1080&fit=crop') center/cover no-repeat;
  filter: brightness(0.15);
}

.age-gate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 520px;
  padding: 60px 40px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(10,8,5,0.85);
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 16px;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(201,168,76,0); }
}

.age-gate-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
}

.age-gate-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.age-gate-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.age-gate-dob label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.dob-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.dob-fields input {
  width: 70px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}
.dob-fields input:focus { border-color: var(--gold); }
.dob-fields span { color: var(--gold); font-size: 1.2rem; }

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-enter {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-enter:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-deny {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-deny:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }

.age-gate-legal { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.age-gate-legal a { color: var(--gold); text-decoration: none; }
.age-gate-warning {
  font-size: 0.7rem;
  color: rgba(201,168,76,0.6);
  padding: 10px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.denied-page {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--cream);
  z-index: 9999;
  gap: 16px;
  font-family: var(--font-body);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.4s var(--transition);
}

.navbar.scrolled {
  background: rgba(10,8,5,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.45rem;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.7);
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomOut 10s ease-out forwards;
}

@keyframes zoomOut {
  from { transform: scale(1.1); }
  to { transform: scale(1.0); }
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: 
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=1080&fit=crop') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(10,8,5,0.85) 40%, rgba(10,8,5,0.3) 100%),
    linear-gradient(to top, rgba(10,8,5,0.7) 0%, transparent 50%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 750px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title .line1 {
  display: block;
  animation: fadeInUp 0.8s 0.4s both;
}
.hero-title .line2 {
  display: block;
  color: var(--gold);
  animation: fadeInUp 0.8s 0.55s both;
}
.hero-title .line3 {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: rgba(255,255,255,0.6);
  animation: fadeInUp 0.8s 0.7s both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 480px;
  animation: fadeInUp 0.8s 0.85s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 1s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(201,168,76,0.3);
}

.btn-secondary {
  color: var(--cream);
  padding: 16px 36px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  display: inline-block;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 30px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.3s;
  margin-top: 24px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s 1.1s both;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================
   TICKER STRIP
   ======================== */
.about-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.strip-inner {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--dark);
}
.strip-inner .dot { color: var(--dark-3); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================
   SECTIONS SHARED
   ======================== */
.section-tag {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 40px;
}
.section-title em { color: var(--crimson); font-style: italic; }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold); }

.section-header { margin-bottom: 60px; }
.section-header.light .section-tag { color: var(--gold); }

/* ========================
   MANUFACTURER SECTION
   ======================== */
.manufacturer-section {
  position: relative;
  background: 
    linear-gradient(135deg, var(--tan) 0%, var(--cream) 50%, var(--tan-dark) 100%);
  padding: 120px 0;
  overflow: hidden;
}

.manufacturer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(139,26,26,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

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

.mfr-text .lead-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.5;
}
.mfr-text p {
  font-size: 0.9rem;
  color: rgba(10,8,5,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mfr-images {
  position: relative;
  height: 480px;
}
.img-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.img-card:hover img { transform: scale(1.05); }
.img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  font-weight: 600;
}

.img-card-1 { width: 65%; height: 55%; top: 0; left: 0; }
.img-card-2 { width: 55%; height: 55%; bottom: 0; right: 0; }

.mfr-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.badge-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(139,26,26,0.4);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.badge-text {
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-align: center;
  line-height: 1.4;
}

/* ========================
   BRANDS PREVIEW
   ======================== */
.brands-preview {
  position: relative;
  background: var(--dark-2);
  padding: 120px 0;
  overflow: hidden;
}

.brands-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 50%);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  aspect-ratio: 3/4;
  transition: transform 0.4s var(--transition);
}
.brand-card:hover { transform: translateY(-8px); }

.brand-img { position: absolute; inset: 0; }
.brand-img img { width: 100%; height: 100%; object-fit: scale-down; transition: transform 0.5s; }
.brand-card:hover .brand-img img { transform: scale(1.08); }
.brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.9) 0%, rgba(10,8,5,0.2) 60%, transparent 100%);
}

.brand-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.brand-cat {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}
.brand-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.brand-info p { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.brand-card.featured .brand-info h3 { color: var(--gold); }

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  z-index: 3;
}

.brands-cta { text-align: center; }

/* ========================
   DISTRIBUTION SECTION
   ======================== */
.distribution-section {
  position: relative;
  background: var(--tan);
  padding: 120px 0;
  overflow: hidden;
}

.distribution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(139,26,26,0.06)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

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

.dist-text .section-title { color: var(--dark); }
.dist-text p {
  font-size: 0.9rem;
  color: rgba(10,8,5,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

.dist-partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dark);
  padding: 24px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
}
.partner-info { display: flex; flex-direction: column; gap: 4px; }
.partner-info strong { color: var(--cream); font-size: 0.9rem; }
.partner-info span { color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 0.1em; }
.partner-link { color: var(--gold); font-size: 0.75rem; text-decoration: none; margin-top: 4px; }

.dist-map { position: relative; }
.map-visual {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.map-visual img { width: 100%; height: 500px; object-fit: cover; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(245,237,216,0.5) 100%);
}

.map-pins { position: absolute; inset: 0; }
.pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.pin::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
  animation: pingMap 2s ease-out infinite;
}
.pin span {
  font-size: 0.65rem;
  background: var(--dark);
  color: var(--gold);
  padding: 3px 8px;
  margin-top: 4px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
@keyframes pingMap {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.pin-1 { top: 45%; left: 35%; }
.pin-2 { top: 60%; left: 60%; }
.pin-3 { top: 75%; left: 55%; }
.pin-4 { top: 55%; left: 42%; }

/* ========================
   AWARDS SECTION
   ======================== */
.awards-section {
  position: relative;
  background: var(--dark-3);
  padding: 120px 0;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.awards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}

.award-item {
  background: var(--dark-3);
  padding: 60px 40px;
  text-align: center;
  transition: background 0.3s;
}
.award-item:hover, .award-item.featured { background: rgba(201,168,76,0.08); }

.award-icon { font-size: 3rem; margin-bottom: 16px; }
.award-year {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.award-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.award-product { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }

/* ========================
   CSR SECTION
   ======================== */
.csr-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.csr-image { position: relative; overflow: hidden; }
.csr-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.csr-section:hover .csr-image img { transform: scale(1.05); }
.csr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(10,8,5,0.5) 100%);
}

.csr-content {
  background: var(--dark);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.csr-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}
.csr-content h2 em { color: var(--gold); font-style: italic; }
.csr-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  position: relative;
  background: #050402;
  padding: 80px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo small {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.5);
  font-family: var(--font-body);
}
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.social-icon:hover { background: var(--gold); color: var(--dark); }

.footer-links h4, .footer-brands-list h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul, .footer-brands-list ul { list-style: none; }
.footer-links li, .footer-brands-list li { margin-bottom: 10px; }
.footer-links a, .footer-brands-list a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-brands-list a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.25); }
.drink-resp { color: rgba(201,168,76,0.4) !important; }

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .navbar { padding: 20px 30px; }
  .navbar.scrolled { padding: 14px 30px; }
  .hero-content { padding: 0 30px; padding-top: 80px; }
  .manufacturer-grid { grid-template-columns: 1fr; gap: 40px; }
  .mfr-images { height: 350px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-grid { grid-template-columns: 1fr; }
  .csr-section { grid-template-columns: 1fr; }
  .csr-image { height: 400px; }
  .awards-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10,8,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 100px 40px 40px;
    transition: right 0.4s var(--transition);
    border-left: 1px solid rgba(201,168,76,0.2);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links a { display: block; padding: 16px 0; font-size: 0.8rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-content { padding: 0 20px; padding-top: 80px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.8rem; }

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

  .age-gate-content { margin: 20px; padding: 40px 24px; }
  .age-gate-buttons { flex-direction: column; }

  .csr-content { padding: 60px 30px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .manufacturer-section, .brands-preview, .distribution-section,
  .awards-section, .csr-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(4rem, 20vw, 6rem); }
}

.logo-img img {
  height: 65px;
  width: auto;
  display: block;
}

/* =========================
   NAV DROPDOWN — FULL CLEAN CODE
   ========================= */

/* parent li */
.nav-links li {
  position: relative;
  list-style: none;
}

/* dropdown parent link */
.nav-links li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

/* small side arrow icon */
.nav-links li.dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin-left: 4px;
  flex-shrink: 0;
  display: none !important;
}

/* parent hover color */
.nav-links li.dropdown:hover > a {
  color: var(--gold);
}

/* arrow rotate on desktop hover */
.nav-links li.dropdown:hover > a::after {
  transform: rotate(-135deg);
}

/* dropdown box */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  padding: 10px 0;
  margin: 0;
  background: rgba(10, 8, 5, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

/* small invisible hover bridge */
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 100%;
  height: 14px;
}

/* show on hover desktop */
.nav-links li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown items */
.dropdown-menu li {
  width: 100%;
}

/* dropdown links */
.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 22px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
  white-space: nowrap;
}

/* hover effect */
.dropdown-menu li a:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  padding-left: 28px;
}

/* =========================
   MOBILE DROPDOWN
   ========================= */
@media (max-width: 768px) {
  .nav-links li.dropdown {
    width: 100%;
  }

  .nav-links li.dropdown > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links li.dropdown > a::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 100%;
    padding: 6px 0 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 18px 10px 32px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    white-space: normal;
  }

  .dropdown-menu li a:hover {
    background: none;
    color: var(--gold);
    padding-left: 32px;
  }

  .dropdown.open > a::after {
    transform: rotate(-135deg);
  }
}.btn-primary{
    cursor:pointer !important;
    pointer-events:auto !important;
    position:relative;
    z-index:999999 !important;
}