/* ============================================
   WHISKY DISCOVERY — Premium Design System
   Aesthetic: Dark Vault Luxury / Editorial
   ============================================ */

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

/* --- Custom Properties --- */
:root {
  /* Core palette */
  --black: #0a0a08;
  --black-warm: #111110;
  --charcoal: #1a1a17;
  --charcoal-light: #242420;
  --slate: #2e2e28;
  --stone: #3a3a33;
  --muted: #6b6b5e;
  --text-dim: #8a8a7d;
  --text-body: #b8b8a8;
  --text-light: #d4d4c4;
  --cream: #e8e4d8;
  --white: #f5f2ea;

  /* Accent — whisky amber */
  --amber: #c8973e;
  --amber-light: #daa84f;
  --amber-glow: #e8bd6a;
  --amber-dark: #a67a2e;
  --amber-deep: #8a6424;

  /* Functional */
  --success: #6b8f5e;
  --error: #c45c4a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Garamond, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 10rem;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --container-narrow: 860px;
  --header-height: 80px;

  /* Effects */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);

  /* Borders */
  --border-subtle: 1px solid rgba(200, 151, 62, 0.12);
  --border-light: 1px solid rgba(200, 151, 62, 0.25);
  --border-accent: 1px solid var(--amber);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background-color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a {
  color: var(--amber-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--amber-glow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.serif-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--sp-3xl) 0;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header.scrolled {
  background: rgba(10, 10, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200, 151, 62, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--amber);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}

.logo-text span {
  color: var(--amber);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav-main a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width var(--transition-med);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--amber-light);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  margin: 6px 0;
  transition: all var(--transition-fast);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    var(--charcoal) 40%,
    #1a170e 70%,
    var(--black) 100%
  );
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 151, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--sp-3xl) var(--sp-md);
}

.hero .label {
  margin-bottom: var(--sp-md);
  display: inline-block;
}

.hero h1 {
  margin-bottom: var(--sp-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-description {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.9;
}

/* Decorative line */
.hero-line {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto var(--sp-lg);
  opacity: 0.6;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page heroes (non-home) */
.hero--page {
  min-height: 50vh;
  padding-top: var(--header-height);
}

.hero--page .hero-content {
  padding: var(--sp-2xl) var(--sp-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--amber);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--amber-glow);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(200, 151, 62, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.btn--outline:hover {
  background: var(--amber);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--amber-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 151, 62, 0.3);
}

.btn--ghost:hover {
  border-bottom-color: var(--amber);
  color: var(--amber-glow);
}

.btn--ghost .arrow {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   FEATURED PRODUCTS GRID
   ============================================ */
.products-section {
  background: var(--black-warm);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: var(--border-subtle);
}

.section-header .label {
  display: block;
  margin-bottom: var(--sp-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.product-card {
  position: relative;
  background: var(--charcoal);
  border: var(--border-subtle);
  transition: all var(--transition-med);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(200, 151, 62, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 50%);
  opacity: 0.6;
}

.product-card__image img {
  width: 55%;
  height: 80%;
  object-fit: contain;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

/* Placeholder bottle silhouette */
.bottle-placeholder {
  width: 40%;
  height: 70%;
  background: linear-gradient(to bottom,
    rgba(200, 151, 62, 0.08) 0%,
    rgba(200, 151, 62, 0.03) 100%
  );
  border-radius: 8px 8px 4px 4px;
  position: relative;
}

.bottle-placeholder::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 30%;
  width: 40%;
  height: 20%;
  background: rgba(200, 151, 62, 0.06);
  border-radius: 2px 2px 0 0;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.badge--sold-out {
  background: var(--error);
  color: var(--white);
}

.badge--sale {
  background: var(--amber);
  color: var(--black);
}

.badge--rare {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
}

.product-card__info {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__region {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  margin-top: auto;
}

.product-card__price .original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.product-card__action {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: rgba(200, 151, 62, 0.08);
  border: none;
  border-top: var(--border-subtle);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-card__action:hover {
  background: var(--amber);
  color: var(--black);
}

/* ============================================
   CATEGORY FILTERS (SHOP)
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: var(--border-subtle);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.filter-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
  font-weight: 500;
}

/* ============================================
   BRAND STORY SECTION
   ============================================ */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border: var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 151, 62, 0.1);
  pointer-events: none;
}

.story-content .label {
  margin-bottom: var(--sp-md);
  display: block;
}

.story-content h2 {
  margin-bottom: var(--sp-lg);
}

.story-content p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: var(--sp-md);
}

/* ============================================
   STATS / TRUST BAR
   ============================================ */
.stats-bar {
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  background: var(--charcoal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: var(--sp-xl) 0;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 151, 62, 0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   TESTIMONIAL / QUOTE
   ============================================ */
.quote-section {
  text-align: center;
  position: relative;
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-section blockquote::before {
  content: '\201C';
  display: block;
  font-size: 5rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: var(--sp-md);
  opacity: 0.4;
}

.quote-attribution {
  margin-top: var(--sp-md);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-md);
}

.blog-card {
  background: var(--charcoal);
  border: var(--border-subtle);
  transition: all var(--transition-med);
  overflow: hidden;
}

.blog-card:hover {
  border-color: rgba(200, 151, 62, 0.35);
  transform: translateY(-3px);
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--charcoal-light), var(--slate));
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: var(--sp-md);
}

.blog-card__date {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--charcoal);
  border: var(--border-subtle);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--amber);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: var(--border-subtle);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}

.footer-brand p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: var(--sp-sm);
  max-width: 320px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-lg);
  border-top: var(--border-subtle);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-md);
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ============================================
   VIP SERVICE PAGE
   ============================================ */
.vip-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.vip-feature {
  padding: var(--sp-lg);
  background: var(--charcoal);
  border: var(--border-subtle);
  text-align: center;
}

.vip-feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-md);
  color: var(--amber);
}

.vip-feature h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-sm);
}

.vip-feature p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================
   SHIPPING / POLICY PAGE
   ============================================ */
.policy-content {
  max-width: 800px;
}

.policy-content h3 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-bottom: 0.5rem;
  border-bottom: var(--border-subtle);
}

.policy-content p {
  margin-bottom: var(--sp-md);
  line-height: 1.8;
}

.policy-content ul {
  list-style: none;
  margin-bottom: var(--sp-md);
}

.policy-content li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--charcoal);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: var(--sp-lg) auto 0;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: var(--black);
  border: var(--border-light);
  border-right: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--amber);
}

.newsletter-form button {
  padding: 0.9rem 2rem;
  background: var(--amber);
  border: 1px solid var(--amber);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--amber-glow);
}

/* ============================================
   AGE GATE OVERLAY
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 8, 0.97);
  backdrop-filter: blur(30px);
  opacity: 1;
  transition: opacity 0.6s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate__content {
  text-align: center;
  max-width: 420px;
  padding: var(--sp-lg);
}

.age-gate__content h2 {
  margin-bottom: var(--sp-sm);
}

.age-gate__content p {
  color: var(--text-dim);
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.age-gate__buttons {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--charcoal);
  border: var(--border-light);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__image {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--charcoal-light), var(--black-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.modal__image img {
  width: 80%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.modal__content {
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__region {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.modal__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--sp-md);
}

.modal__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--sp-lg);
}

.modal__description {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.modal__actions {
  display: flex;
  gap: var(--sp-sm);
}

.modal__close {
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-sm);
  width: 40px;
  height: 40px;
  background: rgba(10,10,8,0.6);
  border: 1px solid rgba(200,151,62,0.2);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.modal__close:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

@media (max-width: 768px) {
  .modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .modal__image {
    aspect-ratio: 1/1;
  }
  .modal__content {
    padding: var(--sp-md);
  }
  .modal__actions {
    flex-direction: column;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .vip-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-main {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--sp-lg);
    gap: var(--sp-md);
    border-bottom: var(--border-subtle);
  }

  .nav-main.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    padding: 0 var(--sp-md);
  }

  section {
    padding: var(--sp-2xl) 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-sm);
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid rgba(200, 151, 62, 0.25);
  }

  .age-gate__buttons {
    flex-direction: column;
  }

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

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--sp-sm);
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

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