/* ===================================
   NEXT DOOR WINE — STYLE SYSTEM
   Product-First Modern Design
   =================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Colors — deep wine palette */
  --color-bg: #0c0a09;
  --color-bg-alt: #1a1614;
  --color-bg-card: #231f1c;
  --color-surface: #2c2622;
  --color-wine: #8b2252;
  --color-wine-light: #b8446a;
  --color-wine-dark: #6b1a3f;
  --color-gold: #c8a96e;
  --color-gold-light: #e0c98f;
  --color-cream: #f5f0e8;
  --color-text: #ede8e0;
  --color-text-muted: #a09890;
  --color-text-subtle: #706860;
  --color-border: rgba(200, 169, 110, 0.12);
  --color-overlay: rgba(12, 10, 9, 0.7);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --gap: clamp(16px, 2vw, 24px);
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-gold-light);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-cream);
}

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-gold);
}

.section-header.centered .section-tag {
  padding-left: 0;
}

.section-header.centered .section-tag::before {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(245, 240, 232, 0.3);
}

.btn-ghost:hover {
  border-color: var(--color-cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform var(--duration) var(--ease);
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  padding: 8px 16px;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-cream);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all 0.3s var(--ease);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.8) 0%,
    rgba(12, 10, 9, 0.75) 40%,
    rgba(12, 10, 9, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(200, 169, 110, 0.4);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.6s; }
.hero-title-line:nth-child(3) { animation-delay: 0.8s; }

.hero-title-line.accent {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: block;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 8px;
  background: var(--color-gold);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s var(--ease) infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- INTRO / WINES ---------- */
.intro {
  background: var(--color-bg);
}

.wines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: clamp(60px, 8vw, 100px);
}

.wine-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.wine-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.wine-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 110, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wine-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}

.wine-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.wine-card:hover .wine-card-img img {
  transform: scale(1.08);
}

.wine-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(12, 10, 9, 0.8);
  backdrop-filter: blur(8px);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.wine-card-body {
  padding: 24px;
}

.wine-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.wine-origin {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.wine-card-body p:last-child {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Values Strip */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--color-border);
}

.value-item {
  text-align: center;
  padding: 32px 20px;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--color-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--color-bg-alt);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.about-img-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-year-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.3);
}

.year-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.year-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 9, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-cream);
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 10, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption-text {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-cream);
  cursor: pointer;
  font-size: 2rem;
  padding: 16px;
  transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
  z-index: 2;
}

.lightbox-close {
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-gold);
}

/* ---------- SOCIAL ---------- */
.social {
  background: var(--color-bg-alt);
}

.social-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.social-content .section-tag {
  margin-bottom: 16px;
}

.social-content .section-title {
  margin-bottom: 20px;
}

.social-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 16px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.social-link svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.social-link:hover {
  border-color: var(--color-gold);
  background: rgba(200, 169, 110, 0.06);
  color: var(--color-cream);
  transform: translateX(8px);
}

.social-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collage-item:hover img {
  transform: scale(1.06);
}

.collage-item:nth-child(2) {
  margin-top: 32px;
}

.collage-item:nth-child(3) {
  margin-top: -32px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: 60px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4,
.footer-location h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-cream);
}

.footer-location p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
}

.footer-legal {
  font-style: italic;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links li {
  margin: 0;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
}

.footer-credit a {
  color: var(--color-gold);
  transition: color var(--duration) var(--ease);
}

.footer-credit a:hover {
  color: var(--color-gold-light);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---------- AGE GATE ---------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(12, 10, 9, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.age-gate-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-gate-modal {
  text-align: center;
  max-width: 420px;
  padding: 48px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.age-gate-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 24px;
}

.age-gate-modal h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.age-gate-modal p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.age-gate-question {
  font-weight: 500;
  color: var(--color-cream) !important;
  margin-bottom: 24px !important;
  font-size: 1rem !important;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate-actions .btn {
  min-width: 140px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .wines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(12, 10, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  /* Hero */
  .hero-content {
    padding-top: 140px;
  }

  /* Wines */
  .wines-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto 40px;
  }

  .about-stats {
    gap: 32px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Social */
  .social-wrapper {
    grid-template-columns: 1fr;
  }

  .social-image-collage {
    max-width: 400px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-left {
    align-items: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  /* Cookie */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wines-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .about-img-secondary {
    right: -16px;
    bottom: -16px;
    width: 50%;
  }

  .about-year-badge {
    right: -8px;
  }

  .age-gate-modal {
    margin: 20px;
    padding: 32px 24px;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .age-gate-actions .btn {
    width: 100%;
  }
}

/* ---------- ANIMATIONS (scroll-triggered) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-bg);
}

.faq-list {
  max-width: 820px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq-item[open] {
  border-color: rgba(200, 169, 110, 0.35);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--color-cream);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration) var(--ease);
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--color-gold-light); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
  transition: transform var(--duration) var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-a {
  padding: 0 26px 24px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-a p { margin: 0; }
.faq-a a { color: var(--color-gold-light); }
