/* ============================================
   VICTUS WINE BOUTIQUE - Premium Design System
   ============================================ */

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --ink: #1a0f0c;
  --ink-soft: #2d1f1a;
  --cream: #faf6f1;
  --cream-dark: #f0e8df;
  --cherry: #7a1f22;
  --cherry-light: #9a2d31;
  --cherry-dark: #5a1518;
  --amber: #c9944f;
  --amber-light: #daa86a;
  --olive: #8d7a55;
  --mist: #f5efe8;
  --burgundy: #4a1518;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 15, 12, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 15, 12, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 15, 12, 0.16);
  --shadow-xl: 0 24px 64px rgba(26, 15, 12, 0.2);
  
  /* Typography Scale (Perfect Fourth - 1.333) */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.5rem;    /* 40px */
  --text-5xl: 3.25rem;   /* 52px */
  --text-6xl: 4rem;      /* 64px */
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffcf8 0%, #f8f2eb 50%, #f0e8df 100%);
  line-height: 1.7;
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Bodoni MT', 'Didot', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  max-width: 65ch;
}

/* ============================================
   NAVIGATION
   ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(26, 15, 12, 0.9) 0%, rgba(45, 31, 26, 0.85) 50%, rgba(26, 15, 12, 0.8) 100%),
    url("../images/teaser-badaro.jpg") center/cover no-repeat;
  color: var(--cream);
  padding: var(--space-8) clamp(var(--space-6), 6vw, var(--space-20)) var(--space-24);
  position: relative;
  min-height: 100vh;
}

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.2s ease, padding 0.2s ease;
  will-change: background, padding;
}

.nav-wrapper.scrolled {
  background: rgba(26, 15, 12, 0.98);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) clamp(var(--space-6), 6vw, var(--space-20));
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  left: clamp(var(--space-4), 4vw, var(--space-8));
  top: var(--space-4);
  z-index: 20;
  transition: top var(--duration-normal) var(--ease-out);
}

.nav-wrapper.scrolled .hamburger {
  top: var(--space-6);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
  display: flex;
  gap: var(--space-10);
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  position: relative;
  opacity: 0.85;
  padding: var(--space-2) 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-logo {
  display: none;
}

/* Share Button */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(250, 246, 241, 0.1);
  border: 1px solid rgba(250, 246, 241, 0.3);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  position: absolute;
  right: calc(clamp(var(--space-4), 4vw, var(--space-8)) + 120px);
  top: var(--space-4);
  z-index: 20;
}

.lang-switcher:hover {
  background: var(--cherry);
  border-color: var(--cherry);
  transform: translateY(-2px);
}

.lang-switcher svg {
  flex-shrink: 0;
}

.lang-text {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.nav-wrapper.scrolled .lang-switcher {
  top: var(--space-6);
}

@media (max-width: 480px) {
  .lang-switcher {
    right: calc(clamp(var(--space-4), 4vw, var(--space-8)) + 60px);
    padding: var(--space-2);
  }
  
  .lang-text {
    display: none;
  }
}

.share-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(250, 246, 241, 0.1);
  border: 1px solid rgba(250, 246, 241, 0.3);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  position: absolute;
  right: clamp(var(--space-4), 4vw, var(--space-8));
  top: var(--space-4);
  z-index: 20;
}

.share-btn:hover {
  background: var(--cherry);
  border-color: var(--cherry);
  transform: translateY(-2px);
}

.share-btn svg {
  flex-shrink: 0;
}

.nav-wrapper.scrolled .share-btn {
  top: var(--space-6);
}

@media (max-width: 480px) {
  .share-btn span {
    display: none;
  }
  
  .share-btn {
    padding: var(--space-2);
  }
}

/* ============================================
   HERO CONTENT
   ============================================ */
.hero-content {
  margin-top: 330px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 600px;
  align-self: start;
}

.hero-logo-container {
  position: absolute;
  top: var(--space-4);
  left: clamp(var(--space-6), 6vw, var(--space-20));
  z-index: 2;
}

.hero-logo {
  display: block;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.hero-logo:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.hero-logo img {
  width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .hero-logo {
    margin-bottom: var(--space-2);
  }
}

.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-6xl));
  font-weight: 500;
  line-height: 1.08;
  color: var(--cream);
  margin: var(--space-4) 0 var(--space-6);
  letter-spacing: -0.03em;
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  opacity: 0.92;
  max-width: 500px;
  font-weight: 300;
}

.eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-block;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}

.btn {
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    background var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out);
}

.btn.primary {
  background: var(--cherry);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(122, 31, 34, 0.4);
}

.btn.primary:hover {
  background: var(--cherry-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(122, 31, 34, 0.5);
}

.btn.ghost {
  border-color: rgba(250, 246, 241, 0.5);
  color: var(--cream);
  background: rgba(250, 246, 241, 0.12);
}

.btn.ghost:hover {
  border-color: rgba(250, 246, 241, 0.8);
  background: rgba(250, 246, 241, 0.15);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  justify-self: end;
}

.hero-visual img:first-child {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
}

.meme {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(250, 246, 241, 0.6);
  box-shadow: var(--shadow-lg);
  width: clamp(100px, 18vw, 170px);
  transition: transform var(--duration-slow) var(--ease-out);
}

.meme:hover {
  transform: scale(1.05) !important;
}

.meme-1 {
  top: -20px;
  right: -15px;
  transform: rotate(6deg);
}

.meme-2 {
  position: relative;
  transform: rotate(-8deg);
  align-self: end;
  margin-bottom: var(--space-8);
  width: clamp(120px, 15vw, 180px);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: var(--space-2);
  }
  
  .hero-logo-container {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    padding: var(--space-2) 0;
  }
  
  .hero-logo img {
    width: 200px;
  }
  
  .meme-2 {
    display: none;
  }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  padding: var(--space-24) clamp(var(--space-6), 6vw, var(--space-20)) var(--space-12);
}

/* Story Section */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 8vw, var(--space-20));
  align-items: center;
  margin-bottom: var(--space-24);
}

.story-media img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--duration-slow) var(--ease-out);
}

.story-media:hover img {
  transform: scale(1.02);
}

.story-copy h2 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  margin: var(--space-4) 0 var(--space-6);
  color: var(--ink);
}

.story-copy p {
  margin-bottom: var(--space-5);
  color: var(--ink-soft);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

/* Menu Section */
.menu {
  background: linear-gradient(145deg, var(--mist) 0%, var(--cream-dark) 100%);
  padding: var(--space-16) clamp(var(--space-6), 5vw, var(--space-16));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-24);
}

.menu-header {
  max-width: 550px;
  margin-bottom: var(--space-12);
}

.menu-header h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  margin: var(--space-3) 0 var(--space-4);
}

.menu-header > p:last-child {
  color: var(--ink-soft);
  font-size: var(--text-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.menu-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.menu-card > div {
  padding: var(--space-6);
  flex: 1;
}

.menu-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--ink);
}

.menu-card p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Wines Section */
.wines {
  margin-bottom: var(--space-24);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.section-head h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  margin-top: var(--space-3);
}

/* Swiper Wine Slider */
.wine-swiper {
  padding: var(--space-6) var(--space-2) var(--space-16);
  position: relative;
}

.wine-swiper .swiper-slide {
  width: 280px;
  height: auto;
}

.wine-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.wine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.wine-card img {
  height: 260px;
  object-fit: contain;
  margin: 0 auto var(--space-5);
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.wine-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.wine-card p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}

.wine-order-btn {
  display: inline-block;
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-5);
  background: var(--cherry);
  color: var(--cream);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.wine-order-btn:hover {
  background: var(--cherry-light);
  transform: translateY(-2px);
}

/* Swiper Navigation */
.wine-swiper .swiper-button-prev,
.wine-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cream);
  box-shadow: var(--shadow-md);
  transition: 
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.wine-swiper .swiper-button-prev:hover,
.wine-swiper .swiper-button-next:hover {
  background: var(--cherry);
  transform: scale(1.1);
}

.wine-swiper .swiper-button-prev::after,
.wine-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: var(--cherry);
  transition: color var(--duration-fast) var(--ease-out);
}

.wine-swiper .swiper-button-prev:hover::after,
.wine-swiper .swiper-button-next:hover::after {
  color: var(--cream);
}

.wine-swiper .swiper-button-prev {
  left: 0;
}

.wine-swiper .swiper-button-next {
  right: 0;
}

/* Swiper Pagination */
.wine-swiper .swiper-pagination {
  bottom: 0;
}

.wine-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--olive);
  opacity: 0.4;
  transition: 
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.wine-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--cherry);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .wine-swiper .swiper-slide {
    width: 240px;
  }
  
  .wine-swiper .swiper-button-prev,
  .wine-swiper .swiper-button-next {
    display: none;
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

/* Spirits Section */
.spirits {
  margin-bottom: var(--space-24);
}

.spirits .section-head {
  max-width: 600px;
  margin-bottom: var(--space-12);
}

.spirits .section-head p:last-child {
  color: var(--ink-soft);
  font-size: var(--text-lg);
  margin-top: var(--space-3);
}

/* Featured Spirits (Arak & Gin) */
.spirits-featured {
  margin-bottom: var(--space-16);
}

.spirits-swiper {
  display: none;
}

.spirits-featured > .swiper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.spirits-featured .swiper-wrapper {
  display: contents;
}

.spirits-featured .swiper-slide {
  width: auto;
  height: auto;
}

.spirits-featured .swiper-pagination {
  display: none;
}

@media (max-width: 720px) {
  .spirits-featured > .swiper {
    display: block;
    padding: var(--space-6) var(--space-2) var(--space-16);
    position: relative;
  }
  
  .spirits-featured .swiper-wrapper {
    display: flex;
  }
  
  .spirits-featured .swiper-slide {
    width: 280px;
  }
  
  .spirits-featured .swiper-pagination {
    display: block;
    bottom: 0;
  }
  
  .spirits-featured .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--olive);
    opacity: 0.4;
    transition: 
      opacity var(--duration-fast) var(--ease-out),
      transform var(--duration-fast) var(--ease-out),
      background var(--duration-fast) var(--ease-out);
  }
  
  .spirits-featured .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--cherry);
    transform: scale(1.3);
  }
}

.spirit-card-large {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.spirit-card-large:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.spirit-card-large img {
  height: 260px;
  object-fit: contain;
  margin: 0 auto var(--space-5);
  transition: transform var(--duration-slow) var(--ease-out);
}

.spirit-card-large:hover img {
  transform: scale(1.05);
}

.spirit-card-large h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.spirit-card-large p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  flex: 1;
}

/* Extase Collection */
.extase-collection {
  background: linear-gradient(145deg, var(--mist) 0%, var(--cream-dark) 100%);
  padding: var(--space-12) clamp(var(--space-6), 5vw, var(--space-12));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.collection-header {
  text-align: left;
  margin-bottom: var(--space-10);
}

.collection-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.collection-header p {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  font-style: italic;
}

/* Extase Swiper */
.extase-swiper {
  padding: var(--space-6) var(--space-2) var(--space-16);
  position: relative;
}

.extase-swiper .swiper-slide {
  width: 280px;
  height: auto;
}

.collection-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.collection-card img {
  height: 260px;
  object-fit: contain;
  margin: 0 auto var(--space-5);
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.collection-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.collection-card p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  flex: 1;
}

.spirit-order-btn,
.collection-order-btn {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: var(--cherry);
  color: var(--cream);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  text-align: center;
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.spirit-order-btn:hover,
.collection-order-btn:hover {
  background: var(--cherry-light);
  transform: translateY(-2px);
}

/* Extase Swiper Navigation */
.extase-swiper .swiper-button-prev,
.extase-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cream);
  box-shadow: var(--shadow-md);
  transition: 
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.extase-swiper .swiper-button-prev:hover,
.extase-swiper .swiper-button-next:hover {
  background: var(--cherry);
  transform: scale(1.1);
}

.extase-swiper .swiper-button-prev::after,
.extase-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: var(--cherry);
  transition: color var(--duration-fast) var(--ease-out);
}

.extase-swiper .swiper-button-prev:hover::after,
.extase-swiper .swiper-button-next:hover::after {
  color: var(--cream);
}

.extase-swiper .swiper-button-prev {
  left: 0;
}

.extase-swiper .swiper-button-next {
  right: 0;
}

/* Extase Swiper Pagination */
.extase-swiper .swiper-pagination {
  bottom: 0;
}

.extase-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--olive);
  opacity: 0.4;
  transition: 
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.extase-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--cherry);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .extase-swiper .swiper-slide {
    width: 240px;
  }
  
  .extase-swiper .swiper-button-prev,
  .extase-swiper .swiper-button-next {
    display: none;
  }
  
  .collection-card img {
    height: 220px;
  }
}

/* Contact Section */
.contact {
  position: relative;
  overflow: visible;
}

.contact-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--burgundy) 50%, var(--cherry-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  box-shadow: var(--shadow-xl);
  overflow: visible;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 148, 79, 0.15), transparent 70%);
  pointer-events: none;
}

.contact-card h2 {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  margin: var(--space-3) 0 var(--space-5);
  color: var(--cream);
}

.contact-card > div:first-child p {
  opacity: 0.9;
  font-size: var(--text-lg);
  line-height: 1.75;
}

.contact-buttons {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.contact-btn svg {
  flex-shrink: 0;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.phone-btn {
  background: var(--cream);
  color: var(--ink);
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(250, 246, 241, 0.3);
}

.google-review-btn {
  display: inline-block;
  margin-top: var(--space-8);
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.google-review-btn img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: var(--radius-md);
}

.google-review-btn:hover {
  transform: translateY(-3px) scale(1.02);
  opacity: 0.9;
}

.contact-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-media img:first-child {
  width: min(200px, 70%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.contact-media img:first-child:hover {
  transform: scale(1.05);
}

.meme-3 {
  top: -25px;
  left: 0;
  transform: rotate(-8deg);
}

.meme-4 {
  bottom: -20px;
  right: 5%;
  transform: rotate(7deg);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--ink) 0%, var(--burgundy) 100%);
  color: var(--cream);
  padding-top: var(--space-16);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-10);
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.footer-brand img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  padding-top: var(--space-4);
}

.footer-brand-text p {
  font-size: var(--text-lg);
  opacity: 0.85;
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: var(--space-4);
}

.footer-brand-text p:last-child {
  margin-bottom: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding-top: var(--space-4);
  justify-self: center;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--amber);
}

.footer-links p,
.footer-links a {
  display: block;
  font-size: var(--text-base);
  opacity: 0.85;
  margin-bottom: var(--space-1);
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--amber-light);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--space-3) var(--space-5);
  border: 1px solid rgba(250, 246, 241, 0.35);
  border-radius: var(--radius-full);
  transition: 
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
  background: rgba(250, 246, 241, 0.1);
  border-color: rgba(250, 246, 241, 0.6);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-map-wrapper {
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-xl);
}

.footer-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(250, 246, 241, 0.1);
  color: var(--cream);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: 
    background var(--duration-fast) var(--ease-out), 
    transform var(--duration-fast) var(--ease-out);
}

.map-link:hover {
  background: var(--cherry);
  transform: translateY(-2px);
}

.map-link svg {
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: var(--space-12);
  padding: var(--space-5) clamp(var(--space-6), 6vw, var(--space-20));
  background: #361012;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin: 0 auto;
}

.footer-bottom .powered-by {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  opacity: 0.5;
}

.footer-bottom .powered-by a {
  color: var(--amber);
  transition: opacity 0.2s ease;
}

.footer-bottom .powered-by a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  
  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand-text p {
    max-width: 100%;
  }
  
  .footer-contact {
    align-items: center;
    text-align: center;
  }
  
  .footer-map {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .footer-brand img {
    width: 140px;
    height: 140px;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-copy {
    max-width: 100%;
  }
  
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .lead {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    justify-self: center;
    margin-top: var(--space-8);
  }
  
  .story {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .story-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    overflow: visible;
  }
  
  .contact-buttons {
    justify-content: center;
  }
  
  .contact-media {
    margin-top: var(--space-6);
  }
  
  .contact-media img:first-child {
    width: min(180px, 60%);
  }
  
  .meme-3, .meme-4 {
    width: clamp(70px, 20vw, 100px);
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-6);
    padding-top: var(--space-16);
    background: rgba(26, 15, 12, 0.95);
    transform: translateX(-100%);
    transition: transform var(--duration-normal) var(--ease-out);
    z-index: 15;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-logo {
    display: block;
    width: 120px;
    height: auto;
    margin-bottom: var(--space-6);
  }
  
  .nav-links a {
    font-size: var(--text-xl);
    padding: var(--space-3) 0;
    color: var(--cream);
    opacity: 0.9;
  }
  
  .nav-links a:hover {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 15px;
  }
  
  .hero {
    padding-bottom: var(--space-8);
    min-height: auto;
  }
  
  .hero-visual {
    margin-top: var(--space-6);
  }
  
  .hero-visual img:first-child {
    max-width: 100%;
  }
  
  .meme {
    width: clamp(80px, 25vw, 120px);
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  
  .slider-wrapper {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .slider-btn {
    display: none;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .wine-card {
    flex: 0 0 220px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-logo img {
    width: 160px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: var(--space-6);
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--cherry);
  color: var(--cream);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Initial state - hidden */
.story, .menu, .wines, .spirits, .contact,
.menu-card, .wine-card, .spirit-card-large, .collection-card,
.story-media, .story-copy, .menu-header, .section-head,
.contact-card, .spirits-featured, .extase-collection {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--animation-order, 0) * 0.03s);
}

/* Animated state - visible */
.story.animate-in, .menu.animate-in, .wines.animate-in, .spirits.animate-in, .contact.animate-in,
.menu-card.animate-in, .wine-card.animate-in, .spirit-card-large.animate-in, .collection-card.animate-in,
.story-media.animate-in, .story-copy.animate-in, .menu-header.animate-in, .section-head.animate-in,
.contact-card.animate-in, .spirits-featured.animate-in, .extase-collection.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero elements - fade in on load */
.hero-content, .hero-logo-container {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-logo-container {
  animation-delay: 0.15s;
}

.hero-copy {
  animation-delay: 0.3s;
}

.hero-visual {
  animation-delay: 0.45s;
}

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

/* Mobile - faster animations */
@media (max-width: 1024px) {
  .story, .menu, .wines, .spirits, .contact,
  .menu-card, .wine-card, .spirit-card-large, .collection-card,
  .story-media, .story-copy, .menu-header, .section-head,
  .contact-card, .spirits-featured, .extase-collection {
    transition-duration: 0.4s;
    transition-delay: calc(var(--animation-order, 0) * 0.015s);
  }
  
  .hero-content, .hero-logo-container {
    animation-duration: 0.6s;
  }
  
  .hero-logo-container {
    animation-delay: 0.1s;
  }
  
  .hero-copy {
    animation-delay: 0.2s;
  }
  
  .hero-visual {
    animation-delay: 0.3s;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .story, .menu, .wines, .spirits, .contact,
  .menu-card, .wine-card, .spirit-card-large, .collection-card,
  .story-media, .story-copy, .menu-header, .section-head,
  .contact-card, .spirits-featured, .extase-collection,
  .hero-content, .hero-logo-container {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 15, 12, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out), visibility var(--duration-normal) var(--ease-out);
}

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

.lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(250, 246, 241, 0.1);
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.lightbox-close:hover {
  background: var(--cherry);
  transform: scale(1.1);
}

/* Zoomable images cursor */
[data-zoomable] {
  cursor: zoom-in;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cherry);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(122, 31, 34, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--cherry-light);
  transform: translateY(-3px);
}

.back-to-top svg {
  flex-shrink: 0;
}

/* ============================================
   SCROLL ANIMATIONS (GPU Accelerated)
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll margin for navigation */
section[id] {
  scroll-margin-top: 20px;
}
