/* =============================================
   SCHWEPPES — Premium Portfolio Experience
   ============================================= */

/* ---- Reset & Variables ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --burgundy: #1a0408;
  --wine: #3d0d1a;
  --crimson: #7a1533;
  --rose: #c4385a;
  --gold: #c8934a;
  --cream: #f0e6d3;
  --mint: #4ecdc4;
  --soft-black: #0d0205;
  --nav-height: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft-black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #floating-can { display: none !important; }
  .cursor { display: none !important; }
  body { cursor: auto; }
}

/* ---- Cursor ---- */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}

.cursor.expand {
  transform: scale(3);
}

/* No cursor on touch devices */
@media (hover: none) {
  .cursor { display: none !important; }
  body { cursor: auto; }
  a, button, .flavor-card, .btn-primary, .btn-secondary, .flavor-btn { cursor: pointer; }
  #floating-can { display: none !important; }
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--rose), var(--gold));
  z-index: 1001;
  width: 0%;
  pointer-events: none;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--soft-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.preloader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.3em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rose);
  position: relative;
  overflow: hidden;
}

.preloader-logo::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--rose);
  clip-path: inset(0 100% 0 0);
  animation: revealText 2s cubic-bezier(0.77, 0, 0.18, 1) forwards 0.3s;
}

@keyframes revealText {
  to { clip-path: inset(0 0% 0 0); }
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(196, 56, 90, 0.2);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  animation: barSweep 1.8s ease forwards 0.5s;
}

@keyframes barSweep {
  to { left: 200%; }
}

.preloader-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: rgba(240, 230, 211, 0.4);
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease forwards 1s;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Preloader Bubbles ---- */
.bubbles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(196, 56, 90, 0.3), rgba(122, 21, 51, 0.1));
  border: 1px solid rgba(196, 56, 90, 0.15);
  animation: rise linear infinite;
}

@keyframes rise {
  from { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  to { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  background: rgba(13, 2, 5, 0.4);
  border-bottom: 1px solid rgba(196, 56, 90, 0.06);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
}

.nav-links a.active::after {
  width: 100%;
}

/* ---- Floating Can ---- */
#floating-can {
  position: fixed;
  z-index: 500;
  pointer-events: none;
  width: clamp(120px, 14vw, 220px);
  filter: drop-shadow(0 0 50px rgba(196, 56, 90, 0.35)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  opacity: 0;
  left: 0;
  top: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* ---- Sections Base ---- */
section {
  position: relative;
  overflow: hidden;
}

.section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ---- Sparkle Particles ---- */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 501;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #3d0d1a 0%, #1a0408 50%, #0d0205 100%);
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(122, 21, 51, 0.25);
  user-select: none;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  padding: 0 4rem;
}

.hero-text-left { text-align: right; }

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  color: var(--rose);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 211, 0.65);
  max-width: 340px;
  margin-left: auto;
}

.hero-can-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  perspective: 1000px;
}

#hero-can {
  width: clamp(160px, 18vw, 280px);
  filter: drop-shadow(0 0 60px rgba(196, 56, 90, 0.4)) drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
  position: relative;
  z-index: 4;
  transform-style: preserve-3d;
}

.deco-pomegranate-half {
  position: absolute;
  width: clamp(80px, 10vw, 160px);
  bottom: -10%;
  left: -60%;
  transform: rotate(-20deg);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  z-index: 3;
  pointer-events: none;
}

.deco-flying-pom {
  position: absolute;
  width: clamp(50px, 6vw, 100px);
  top: -15%;
  right: -80%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  z-index: 3;
  pointer-events: none;
}

.deco-mint {
  position: absolute;
  width: clamp(60px, 8vw, 130px);
  top: 10%;
  left: -90%;
  transform: rotate(30deg);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
  z-index: 2;
  pointer-events: none;
}

.hero-text-right { text-align: left; }

.hero-right-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240, 230, 211, 0.6);
  max-width: 320px;
}

.hero-flavor-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(196, 56, 90, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
  background: rgba(122, 21, 51, 0.15);
}

.hero-flavor-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--rose);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(196, 56, 90, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: rgba(240, 230, 211, 0.7);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240, 230, 211, 0.2);
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(240, 230, 211, 0.5);
  color: var(--cream);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.3);
  animation: scrollHint 2s infinite;
  z-index: 5;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(5px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240, 230, 211, 0.3), transparent);
}

/* =============================================
   STORY
   ============================================= */
#story {
  min-height: 100vh;
  background: linear-gradient(180deg, #0d0205 0%, #1a0408 50%, #0d0205 100%);
  display: flex;
  align-items: center;
  padding: 8rem 4rem;
}

.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-text {
  opacity: 0;
  transform: translateY(40px);
}

.story-overline {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: block;
}

.story-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.story-headline .word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

.story-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

.story-body {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240, 230, 211, 0.6);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.story-stat {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.stat-item {
  border-left: 1px solid rgba(196, 56, 90, 0.3);
  padding-left: 1.5rem;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--rose);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.4);
}

/* ---- Story Visual — SVG Rings ---- */
.story-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-ring {
  width: 300px;
  height: 300px;
  opacity: 0;
  transform: scale(0.8);
}

.ring-anim {
  transform-origin: center;
}

.ring-1 { animation: spinSlow 20s linear infinite; }
.ring-2 { animation: spinSlow 30s linear infinite reverse; }
.ring-3 { animation: spinSlow 15s linear infinite; }

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.story-visual-label {
  position: absolute;
  bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 56, 90, 0.2);
}

/* =============================================
   FLAVORS
   ============================================= */
#flavors {
  min-height: 100vh;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, #200a0e 0%, #0d0205 100%);
  padding: 8rem 4rem;
}

.flavors-header {
  text-align: center;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(30px);
}

.flavors-overline {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 1rem;
}

.flavors-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.flavors-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.flavor-card {
  position: relative;
  padding: 3rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 56, 90, 0.15);
  border-radius: 2px;
  text-align: center;
  cursor: none;
  transition: box-shadow 0.4s, border-color 0.4s;
  opacity: 0;
  transform: translateY(50px);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.flavor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 56, 90, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.flavor-card:hover::before { opacity: 1; }

.flavor-card:hover {
  box-shadow: 0 30px 80px rgba(196, 56, 90, 0.2), 0 0 0 1px rgba(196, 56, 90, 0.3);
  border-color: rgba(196, 56, 90, 0.4);
}

.flavor-card.hero-card {
  border-color: rgba(196, 56, 90, 0.4);
  background: rgba(122, 21, 51, 0.08);
}

.flavor-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 0.3rem 0.7rem;
  background: rgba(122, 21, 51, 0.2);
}

.flavor-can {
  width: clamp(100px, 12vw, 180px);
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flavor-card:hover .flavor-can {
  transform: scale(1.05) rotate(-3deg);
}

.flavor-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.flavor-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 230, 211, 0.5);
  margin-bottom: 1.8rem;
}

.flavor-btn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(196, 56, 90, 0.4);
  color: var(--rose);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: none;
  background: none;
}

.flavor-btn:hover {
  background: var(--rose);
  color: var(--cream);
}

/* =============================================
   EXPERIENCE
   ============================================= */
#experience {
  min-height: 100vh;
  background: linear-gradient(180deg, #0d0205 0%, #160306 100%);
  padding: 8rem 4rem;
  position: relative;
}

.exp-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.exp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.exp-title-block {
  opacity: 0;
  transform: translateY(30px);
}

.exp-overline {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--mint);
  display: block;
  margin-bottom: 1rem;
}

.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}

.exp-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 211, 0.5);
  max-width: 400px;
  opacity: 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.exp-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.3s;
  cursor: none;
}

.exp-card:hover {
  border-color: rgba(78, 205, 196, 0.2);
}

.exp-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(196, 56, 90, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.exp-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.exp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.exp-card-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 211, 0.5);
}

.exp-big-stat {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(122, 21, 51, 0.15), rgba(78, 205, 196, 0.05));
  border-color: rgba(196, 56, 90, 0.2);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.exp-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--rose);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-big-text .exp-card-title {
  font-size: 1.8rem;
}

/* =============================================
   FLAVOR MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 2, 5, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  max-width: 480px;
  width: 90%;
  background: linear-gradient(145deg, rgba(61, 13, 26, 0.4), rgba(13, 2, 5, 0.9));
  border: 1px solid rgba(196, 56, 90, 0.2);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: 1px solid rgba(240, 230, 211, 0.15);
  color: rgba(240, 230, 211, 0.5);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.modal-img {
  width: 120px;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 230, 211, 0.6);
  margin-bottom: 1.5rem;
}

.modal-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.modal-detail-item {
  text-align: center;
}

.modal-detail-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--rose);
  display: block;
}

.modal-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--soft-black);
  border-top: 1px solid rgba(196, 56, 90, 0.1);
  padding: 5rem 4rem 3rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.3em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 56, 90, 0.3);
  margin-bottom: 3rem;
  display: block;
}

.footer-by {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(240, 230, 211, 0.4);
  margin-bottom: 2rem;
}

.footer-by strong {
  color: var(--rose);
  font-style: normal;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-link {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 230, 211, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}

.footer-link:hover {
  color: var(--rose);
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(196, 56, 90, 0.2);
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(240, 230, 211, 0.2);
  text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }
  .hero-text-left { text-align: center; order: 2; }
  .hero-text-left .hero-desc { margin: 0 auto; }
  .hero-can-wrapper { order: 1; }
  .hero-text-right { text-align: center; order: 3; }
  .hero-btn-group { align-items: center; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { height: 250px; }
  .story-ring { width: 220px; height: 220px; }
  .flavors-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-big-stat { grid-column: span 1; flex-direction: column; gap: 1rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 5rem 1.5rem !important; }
  .exp-header { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .modal-details { flex-direction: column; gap: 1rem; }
}