/* ============================================
   SALSA ALACRANCITO — Design System
   ============================================ */

:root {
  /* Colors */
  --burgundy: #8B0F1A;
  --burgundy-deep: #5A0810;
  --burgundy-darker: #3A050C;
  --ember: #E25822;
  --ember-bright: #FF6B35;
  --cream: #F5EBD9;
  --cream-light: #FBF6EC;
  --parchment: #EDDFC4;
  --charcoal: #1A0F0F;
  --charcoal-soft: #2D1A1A;
  --gold: #D4A24A;
  --gold-soft: #E8C988;
  --mute: #7A6A60;

  /* Type */
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(58, 5, 12, 0.08);
  --shadow-md: 0 8px 24px rgba(58, 5, 12, 0.12);
  --shadow-lg: 0 24px 60px rgba(58, 5, 12, 0.18);
  --shadow-glow: 0 0 60px rgba(226, 88, 34, 0.35);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 16px;
  display: inline-block;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--ember);
}

.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 18px;
}
.kicker.light { color: var(--gold); }

.h-display {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.h-display.light { color: var(--cream); }
.h-display em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.h-display.light em { color: var(--ember-bright); }

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.text-center .lead { margin-left: auto; margin-right: auto; }
.lead.light { color: rgba(245, 235, 217, 0.85); }

.muted { color: var(--mute); font-size: 14px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--burgundy) 100%);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(139, 15, 26, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(139, 15, 26, 0.45);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ember-bright), var(--ember));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(26, 15, 15, 0.18);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 235, 217, 0.3);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.link-arrow:hover { color: var(--ember); border-color: var(--ember); transform: translateX(4px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(251, 246, 236, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(139, 15, 26, 0);
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(251, 246, 236, 0.92);
  border-bottom-color: rgba(139, 15, 26, 0.08);
  box-shadow: 0 6px 30px rgba(58, 5, 12, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px; height: 42px;
  color: var(--burgundy);
  filter: drop-shadow(0 2px 6px rgba(139, 15, 26, 0.2));
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.08); }
.brand-mark.big { width: 56px; height: 56px; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--burgundy);
}
.brand-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--mute);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--ember);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(226, 88, 34, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 15, 26, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--parchment) 100%);
  z-index: -2;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(58, 5, 12, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: 50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  filter: blur(40px);
  animation: float 18s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translate(0, -50%); }
  50% { transform: translate(-24px, -53%); }
}

.hero-scorpion {
  position: absolute;
  top: 12%; right: 8%;
  width: clamp(280px, 35vw, 520px);
  color: rgba(139, 15, 26, 0.06);
  z-index: -1;
  animation: scorpion-breath 8s ease-in-out infinite;
}
@keyframes scorpion-breath {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-6deg) scale(1.04); }
}

.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.98;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 28px;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.title-script {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--ember) 0%, var(--burgundy) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--charcoal-soft);
  max-width: 56ch;
  margin: 0 0 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 15, 26, 0.12);
  max-width: 720px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-item strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}
.meta-item span {
  font-size: 13px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(139, 15, 26, 0.18);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(139, 15, 26, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 24px 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(226, 88, 34, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--parchment) 100%);
  z-index: -1;
}
.page-hero-content { max-width: var(--container); margin: 0 auto; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 1.02;
  font-weight: 700;
  margin: 12px 0 24px;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.page-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--ember) 0%, var(--burgundy) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--charcoal-soft);
  max-width: 60ch;
  line-height: 1.7;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.section-intro {
  background: linear-gradient(180deg, var(--parchment) 0%, var(--cream-light) 100%);
}

.bullet-list {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--charcoal-soft);
}
.bullet-list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(226, 88, 34, 0.18);
  flex-shrink: 0;
}

.intro-art {
  display: flex;
  justify-content: center;
}
.art-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-darker) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.art-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 162, 74, 0.15) 0%, transparent 50%);
}
.art-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245, 235, 217, 0.1) 1px, transparent 0);
  background-size: 18px 18px;
}
.bottle-svg {
  position: relative;
  width: 65%;
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
  animation: bottle-tilt 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes bottle-tilt {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-4px); }
}
.art-pulse {
  position: absolute;
  width: 80%; height: 80%;
  border-radius: 50%;
  border: 2px solid rgba(245, 235, 217, 0.15);
  animation: pulse 4.5s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes pulse {
  0% { transform: scale(0.92); opacity: 0.5; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ============================================
   HEAT SECTION
   ============================================ */
.section-heat {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--burgundy-darker) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-heat::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 88, 34, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 162, 74, 0.08) 0%, transparent 60%);
}

.heat-scale {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.heat-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 16px;
  background: rgba(245, 235, 217, 0.04);
  border: 1px solid rgba(245, 235, 217, 0.08);
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  min-height: 200px;
  justify-content: flex-end;
  position: relative;
  animation: rise 0.8s var(--ease) backwards;
  animation-delay: calc(var(--i) * 0.1s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.heat-step:hover {
  background: rgba(245, 235, 217, 0.08);
  transform: translateY(-6px);
  border-color: rgba(226, 88, 34, 0.3);
}
.heat-step.active {
  background: linear-gradient(180deg, rgba(226, 88, 34, 0.2) 0%, rgba(139, 15, 26, 0.4) 100%);
  border-color: var(--ember);
  box-shadow: 0 12px 40px rgba(226, 88, 34, 0.25);
  transform: translateY(-12px);
}
.heat-step .flame {
  width: 18px; height: 24px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--ember) 60%, var(--burgundy) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: drop-shadow(0 0 10px rgba(226, 88, 34, 0.45));
  animation: flicker 2.8s ease-in-out infinite;
  display: inline-block;
  transform-origin: center bottom;
}
.heat-step .flame:nth-child(2) { animation-delay: 0.4s; }
.heat-step .flame:nth-child(3) { animation-delay: 0.8s; }
.heat-step .flame:nth-child(4) { animation-delay: 1.2s; }
.heat-step .flame:nth-child(5) { animation-delay: 1.6s; }
@keyframes flicker {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(1.06); opacity: 0.94; }
}
.heat-step span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-top: 12px;
}
.heat-step small {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   INGREDIENTS
   ============================================ */
.section-ingredients {
  background: var(--cream-light);
}
.ing-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.ing-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(139, 15, 26, 0.06);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.ing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 15, 26, 0.12);
}
.ing-card:hover::before { transform: scaleX(1); }
.ing-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 18px;
}
.ing-icon svg { width: 38px; height: 38px; }
.ing-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.ing-card p {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   QUOTE
   ============================================ */
.section-quote {
  background: var(--parchment);
  position: relative;
}
.quote-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  width: 80px; height: 80px;
  margin: 0 auto 8px;
  color: var(--burgundy);
  opacity: 0.3;
}
.quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--charcoal);
  margin: 0 0 28px;
}
.quote-author {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-darker) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(226, 88, 34, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 162, 74, 0.1) 0%, transparent 50%);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.cta-text p {
  font-size: 18px;
  color: rgba(245, 235, 217, 0.85);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 100px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 14px 0 10px;
}
.footer-brand p {
  color: rgba(245, 235, 217, 0.65);
  font-size: 14px;
  max-width: 28ch;
}
.footer-brand .brand-mark {
  color: var(--ember);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  margin: 0 0 22px;
  color: var(--gold);
}
.footer-col a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: rgba(245, 235, 217, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--ember); }
.footer-col p { font-size: 14px; margin: 8px 0; }

.newsletter {
  display: flex;
  margin-top: 12px;
  background: rgba(245, 235, 217, 0.06);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(245, 235, 217, 0.12);
}
.newsletter input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 18px;
  color: var(--cream);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter input::placeholder { color: rgba(245, 235, 217, 0.45); }
.newsletter button {
  background: var(--ember);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s var(--ease);
}
.newsletter button:hover { background: var(--ember-bright); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 24px 0;
  border-top: 1px solid rgba(245, 235, 217, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(245, 235, 217, 0.5);
}
.footer-bottom p { margin: 0; }

/* ============================================
   STORY PAGE
   ============================================ */
.section-story { background: var(--cream-light); }
.story-grid {
  display: grid;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.story-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}
.story-block.reverse {
  grid-template-columns: 1fr 120px;
}
.story-block.reverse .story-num { order: 2; text-align: left; }
.story-block.reverse .story-body { order: 1; text-align: right; }
.story-num {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.8;
  color: var(--ember);
  opacity: 0.7;
}
.story-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--charcoal);
}
.story-body p {
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-body .lead { font-size: 18px; color: var(--charcoal); margin-left: 0; }
.story-block.reverse .story-body .lead { margin-right: 0; margin-left: auto; }

/* ============================================
   TIMELINE
   ============================================ */
.section-timeline {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--burgundy-darker) 100%);
  color: var(--cream);
}
.timeline {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--gold), transparent);
}
.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ember);
  border: 4px solid var(--charcoal);
  box-shadow: 0 0 0 4px var(--ember), 0 0 24px rgba(226, 88, 34, 0.6);
  margin-bottom: 32px;
  z-index: 1;
}
.tl-card {
  background: rgba(245, 235, 217, 0.05);
  border: 1px solid rgba(245, 235, 217, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  width: 100%;
  transition: all 0.4s var(--ease);
}
.tl-card:hover {
  background: rgba(245, 235, 217, 0.08);
  border-color: rgba(226, 88, 34, 0.3);
  transform: translateY(-6px);
}
.tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.tl-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--cream);
}
.tl-card p {
  font-size: 14px;
  color: rgba(245, 235, 217, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   VALUES
   ============================================ */
.section-values { background: var(--parchment); }
.values-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: white;
  padding: 50px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 15, 26, 0.06);
  position: relative;
  transition: all 0.5s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.value-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--ember);
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 0 0 14px;
  color: var(--charcoal);
}
.value-card p {
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.section-products { background: var(--cream-light); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 15, 26, 0.06);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.product-media {
  position: relative;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream-light) 100%);
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}
.product-media::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(58, 5, 12, 0.25) 0%, transparent 70%);
  filter: blur(6px);
}
.product-bottle {
  width: 60%;
  max-width: 180px;
  filter: drop-shadow(0 16px 24px rgba(58, 5, 12, 0.25));
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-bottle {
  transform: translateY(-8px) rotate(-3deg);
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ember);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
}
.product-badge.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: var(--charcoal);
}
.product-info {
  padding: 30px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.product-size {
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.product-heat {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.product-heat .flame {
  width: 14px; height: 18px;
  background: rgba(139, 15, 26, 0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: inline-block;
}
.product-heat .flame.on {
  background: linear-gradient(180deg, var(--gold) 0%, var(--ember) 60%, var(--burgundy) 100%);
  filter: drop-shadow(0 0 6px rgba(226, 88, 34, 0.4));
}
.product-info p {
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 20px;
}

/* ============================================
   PROCESS
   ============================================ */
.section-process {
  background: linear-gradient(180deg, var(--burgundy-darker) 0%, var(--charcoal) 100%);
  color: var(--cream);
}
.process-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step {
  background: rgba(245, 235, 217, 0.04);
  border: 1px solid rgba(245, 235, 217, 0.08);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.5s var(--ease);
}
.process-step:hover {
  background: rgba(245, 235, 217, 0.07);
  border-color: rgba(226, 88, 34, 0.3);
  transform: translateY(-6px);
}
.ps-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--cream);
}
.process-step p {
  color: rgba(245, 235, 217, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* ============================================
   PAIRINGS
   ============================================ */
.section-pairings { background: var(--cream-light); }
.pair-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pair-card {
  background: white;
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(139, 15, 26, 0.06);
  transition: all 0.5s var(--ease);
}
.pair-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-md);
  border-color: var(--ember);
}
.pair-emoji {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.pair-card:hover .pair-emoji { transform: scale(1.1) rotate(8deg); }
.pair-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.pair-card p {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.section-contact { background: var(--cream-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 15, 26, 0.06);
  transition: all 0.4s var(--ease);
}
a.info-card:hover {
  transform: translateX(6px);
  border-color: var(--ember);
  box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-card .info-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  margin-bottom: 4px;
}
.info-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--charcoal);
  font-weight: 600;
}
.info-card small {
  display: block;
  font-size: 12px;
  color: var(--mute);
  margin-top: 4px;
}

.contact-form {
  background: white;
  padding: 50px 50px 46px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 15, 26, 0.08);
  box-shadow: var(--shadow-md);
}
.contact-form h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.form-sub {
  color: var(--mute);
  margin: 0 0 32px;
  font-size: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 20px;
}
.contact-form label > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream-light);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(226, 88, 34, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  background: rgba(34, 139, 34, 0.08);
  color: #1f6b1f;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 20px 0 0;
  font-size: 14px;
  text-align: center;
  border: 1px solid rgba(34, 139, 34, 0.2);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq { background: var(--parchment); }
.faq-list {
  max-width: 820px;
  margin: 60px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 15, 26, 0.06);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(226, 88, 34, 0.25);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--burgundy); }
.faq-icon {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--burgundy);
  font-weight: 400;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--ember);
  color: white;
}
.faq-item p {
  padding: 0 28px 26px;
  margin: 0;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline::before { display: none; }
  .pair-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-wrap { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cta-actions { justify-content: center; }
  .heat-scale { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .heat-step { padding: 24px 8px; min-height: 170px; }
  .heat-step span { font-size: 16px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--cream-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 24px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.5s var(--ease);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }

  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-meta { gap: 18px; }
  .meta-divider { display: none; }
  .meta-item strong { font-size: 26px; }

  .page-hero { padding: 140px 20px 70px; }

  .story-block,
  .story-block.reverse { grid-template-columns: 1fr; gap: 16px; }
  .story-block.reverse .story-num,
  .story-block.reverse .story-body { order: initial; text-align: left; }
  .story-block.reverse .story-body .lead { margin-left: 0; }
  .story-num { font-size: 64px; }

  .timeline { grid-template-columns: 1fr; }
  .heat-scale {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .process-grid { grid-template-columns: 1fr; }
  .pair-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .heat-step.active { transform: translateY(0); }
}

@media (max-width: 480px) {
  .pair-grid { grid-template-columns: 1fr; }
  .heat-scale { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   LOADER SPLASH
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--burgundy-darker) 0%, var(--charcoal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 88, 34, 0.25) 0%, transparent 60%);
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  width: 120px;
  height: 120px;
  color: var(--ember);
  position: relative;
  animation: loader-pop 0.9s var(--ease);
  filter: drop-shadow(0 0 24px rgba(226, 88, 34, 0.6));
}
.loader-mark svg {
  width: 100%;
  height: 100%;
  animation: loader-spin 3s ease-in-out infinite;
}
@keyframes loader-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes loader-spin {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}
.loader-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--cream);
  position: relative;
  animation: loader-fade 0.8s var(--ease) 0.2s backwards;
}
@keyframes loader-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(245, 235, 217, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--ember) 100%);
  width: 0%;
  animation: loader-fill 1.2s ease-out forwards;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(226, 88, 34, 0.6);
}
@keyframes loader-fill {
  to { width: 100%; }
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.28) 0%, rgba(226, 88, 34, 0) 70%);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.cursor-glow.active { opacity: 1; }
.cursor-glow.hover { width: 52px; height: 52px; }
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: all 0.4s var(--ease);
  animation: wa-in 0.8s var(--ease) 1.2s backwards;
}
@keyframes wa-in {
  from { opacity: 0; transform: scale(0.4) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.wa-float:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.18);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: wa-pulse 3.2s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--charcoal);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .wa-tooltip { display: none; }
}

/* ============================================
   NAV CTA — WhatsApp variant
   ============================================ */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HERO PARTICLES (canvas)
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================
   PRESS STRIP / MARQUEE
   ============================================ */
.press-strip {
  background: var(--charcoal);
  color: var(--gold);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 162, 74, 0.2);
  border-bottom: 1px solid rgba(212, 162, 74, 0.2);
}
.press-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.press-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: press-scroll 70s linear infinite;
  padding-left: 60px;
  will-change: transform;
}
.press-track:hover { animation-play-state: paused; }
.press-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.section-stats {
  background: var(--cream-light);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(139, 15, 26, 0.12);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ember) 0%, var(--burgundy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.stat-sub {
  font-size: 13px;
  color: var(--mute);
  margin: 0;
  font-style: italic;
}
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(139, 15, 26, 0.12); }
  .stat-card:last-child { border-bottom: none; }
}

/* ============================================
   GALLERY
   ============================================ */
.section-gallery {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--parchment) 100%);
}
.gallery-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 20px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-tall {
  grid-row: 1 / 3;
}
.gal-wide {
  grid-column: 2 / 4;
}
.gal-img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform 0.6s var(--ease);
}
.gal-item:hover .gal-img {
  transform: scale(1.05);
}
.gal-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 15, 15, 0.7) 100%);
  z-index: 1;
}
.gal-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(139, 15, 26, 0.85);
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
/* Placeholder backgrounds with gradient + pattern (so it looks great even without real photos) */
.g-bottles {
  background:
    linear-gradient(135deg, rgba(139, 15, 26, 0.7) 0%, rgba(58, 5, 12, 0.85) 100%),
    radial-gradient(circle at 30% 40%, var(--ember) 0%, var(--burgundy) 30%, var(--burgundy-darker) 70%);
  position: relative;
}
.g-bottles::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(232, 76, 61, 0.6) 0, rgba(232, 76, 61, 0.6) 8px, transparent 8px),
    radial-gradient(circle at 45% 30%, rgba(232, 76, 61, 0.6) 0, rgba(232, 76, 61, 0.6) 8px, transparent 8px),
    radial-gradient(circle at 65% 30%, rgba(232, 76, 61, 0.6) 0, rgba(232, 76, 61, 0.6) 8px, transparent 8px),
    radial-gradient(circle at 85% 30%, rgba(232, 76, 61, 0.6) 0, rgba(232, 76, 61, 0.6) 8px, transparent 8px),
    radial-gradient(circle at 25% 50%, rgba(232, 76, 61, 0.5) 0, rgba(232, 76, 61, 0.5) 8px, transparent 8px),
    radial-gradient(circle at 45% 50%, rgba(232, 76, 61, 0.5) 0, rgba(232, 76, 61, 0.5) 8px, transparent 8px),
    radial-gradient(circle at 65% 50%, rgba(232, 76, 61, 0.5) 0, rgba(232, 76, 61, 0.5) 8px, transparent 8px),
    radial-gradient(circle at 85% 50%, rgba(232, 76, 61, 0.5) 0, rgba(232, 76, 61, 0.5) 8px, transparent 8px),
    radial-gradient(circle at 25% 70%, rgba(232, 76, 61, 0.4) 0, rgba(232, 76, 61, 0.4) 8px, transparent 8px),
    radial-gradient(circle at 45% 70%, rgba(232, 76, 61, 0.4) 0, rgba(232, 76, 61, 0.4) 8px, transparent 8px),
    radial-gradient(circle at 65% 70%, rgba(232, 76, 61, 0.4) 0, rgba(232, 76, 61, 0.4) 8px, transparent 8px),
    radial-gradient(circle at 85% 70%, rgba(232, 76, 61, 0.4) 0, rgba(232, 76, 61, 0.4) 8px, transparent 8px);
  opacity: 0.7;
}
.g-family {
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.5) 0%, rgba(226, 88, 34, 0.7) 100%),
    radial-gradient(ellipse at 50% 60%, var(--gold-soft) 0%, var(--burgundy) 100%);
}
.g-family::after {
  content: '';
  position: absolute;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 30%;
  background:
    radial-gradient(circle at 20% 50%, var(--cream) 0%, var(--cream) 12px, transparent 12px),
    radial-gradient(circle at 40% 50%, var(--cream) 0%, var(--cream) 12px, transparent 12px),
    radial-gradient(circle at 60% 50%, var(--cream) 0%, var(--cream) 12px, transparent 12px),
    radial-gradient(circle at 80% 50%, var(--cream) 0%, var(--cream) 12px, transparent 12px);
  opacity: 0.4;
}
.g-chiles {
  background:
    linear-gradient(135deg, rgba(58, 5, 12, 0.4) 0%, rgba(139, 15, 26, 0.6) 100%),
    radial-gradient(circle at 50% 50%, var(--ember-bright) 0%, var(--burgundy-darker) 90%);
}
.g-chiles::after {
  content: '';
  position: absolute;
  inset: 20%;
  background:
    linear-gradient(45deg, var(--burgundy-darker) 0%, var(--burgundy-darker) 4px, transparent 4px) 0 0 / 14px 14px,
    linear-gradient(-45deg, var(--burgundy-darker) 0%, var(--burgundy-darker) 4px, transparent 4px) 0 0 / 14px 14px;
  opacity: 0.3;
}
.g-stand {
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.6) 0%, rgba(139, 15, 26, 0.8) 100%),
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 20px, var(--ember) 20px, var(--ember) 40px, var(--burgundy) 40px, var(--burgundy) 60px);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gal-tall { grid-row: 1 / 3; grid-column: 1; }
  .gal-wide { grid-column: 1 / 3; }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gal-tall, .gal-wide { grid-row: auto; grid-column: auto; }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.section-testimonials { background: var(--cream-light); }
.testimonials-wrap {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  padding-bottom: 16px;
}
.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.7s var(--ease);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.testimonial {
  flex: 0 0 calc((100% - 56px) / 3);
  background: white;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 15, 26, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 88, 34, 0.2);
}
.t-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  font-style: italic;
  margin: 0 0 24px;
  flex: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 15, 26, 0.1);
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember) 0%, var(--burgundy) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--charcoal);
  font-size: 15px;
}
.t-author small {
  color: var(--mute);
  font-size: 13px;
}
.testimonial-controls {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--burgundy);
  border: 1.5px solid rgba(139, 15, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.t-btn svg { width: 20px; height: 20px; }
.t-btn:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: scale(1.06);
}
.t-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 15, 26, 0.18);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  padding: 0;
}
.t-dot.active {
  background: var(--ember);
  width: 30px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .testimonial { flex: 0 0 calc((100% - 28px) / 2); }
}
@media (max-width: 768px) {
  .testimonial { flex: 0 0 100%; padding: 32px 28px; }
}

/* ============================================
   RECETAS PAGE
   ============================================ */
.section-featured-recipe { background: var(--cream-light); }
.featured-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.featured-art {
  display: flex;
  justify-content: center;
}
.featured-plate {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plate-circle {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--gold-soft) 0%, var(--ember) 60%, var(--burgundy-darker) 100%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: plate-pulse 5s ease-in-out infinite;
}
@keyframes plate-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.06); opacity: 0.55; }
}
.plate-svg {
  position: relative;
  width: 90%;
  filter: drop-shadow(0 30px 50px rgba(58, 5, 12, 0.3));
  animation: plate-spin 40s linear infinite;
}
@keyframes plate-spin {
  to { transform: rotate(360deg); }
}
.plate-tag {
  position: absolute;
  top: 10%;
  right: 0;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
}

.featured-text h2 { margin-bottom: 24px; }
.recipe-meta {
  display: flex;
  gap: 32px;
  margin: 30px 0 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(139, 15, 26, 0.12);
  border-bottom: 1px solid rgba(139, 15, 26, 0.12);
}
.recipe-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recipe-meta strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--burgundy);
  letter-spacing: 0.04em;
}
.recipe-meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
}
.recipe-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}
.recipe-cols h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.check-list {
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--ember);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.step-list li {
  position: relative;
  padding-left: 42px;
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  counter-increment: step;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-recipe-grid { background: var(--parchment); }
.recipe-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 15, 26, 0.06);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.recipe-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.recipe-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
}
.recipe-time {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.recipe-info {
  padding: 26px 26px 28px;
}
.recipe-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
  margin: 0 0 8px;
  font-weight: 700;
}
.recipe-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.recipe-info p {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin: 0 0 20px;
}
.recipe-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 15, 26, 0.08);
}
.recipe-heat { display: flex; gap: 3px; }
.recipe-heat .flame {
  width: 12px; height: 16px;
  background: rgba(139, 15, 26, 0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.recipe-heat .flame.on {
  background: linear-gradient(180deg, var(--gold) 0%, var(--ember) 60%, var(--burgundy) 100%);
}
.recipe-arrow {
  font-size: 22px;
  color: var(--burgundy);
  transition: transform 0.4s var(--ease);
}
.recipe-card:hover .recipe-arrow { transform: translateX(6px); }

/* Recipe placeholder backgrounds */
.r-1 { background: linear-gradient(135deg, #FFB347 0%, #E25822 60%, #8B0F1A 100%); }
.r-1::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, #FFD700 0%, transparent 40%); }
.r-2 { background: linear-gradient(135deg, #D4A24A 0%, #C72C2C 60%, #4A0810 100%); }
.r-2::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(245, 235, 217, 0.15) 10px 12px); }
.r-3 { background: linear-gradient(135deg, #FFE08A 0%, #E25822 50%, #8B0F1A 100%); }
.r-3::after { content: ''; position: absolute; top: 30%; left: 30%; width: 40%; height: 40%; background: radial-gradient(circle, #FBF6EC 0%, #FFD700 30%, transparent 60%); border-radius: 50%; }
.r-4 { background: linear-gradient(135deg, #6B0F0F 0%, #4A0810 50%, #1A0F0F 100%); }
.r-4::after { content: ''; position: absolute; inset: 20%; background: linear-gradient(135deg, #C72C2C 0%, #8B0F1A 100%); border-radius: 50%; opacity: 0.6; }
.r-5 { background: linear-gradient(135deg, #E25822 0%, #C72C2C 50%, #4A0810 100%); }
.r-5::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50%; height: 70%; background: linear-gradient(180deg, #FFD700 0%, #E25822 50%, #8B0F1A 100%); border-radius: 50% 50% 0 0; opacity: 0.7; }
.r-6 { background: linear-gradient(135deg, #D4A24A 0%, #FFD700 50%, #E25822 100%); }
.r-6::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, #FBF6EC 2px, transparent 2px), radial-gradient(circle at 50% 50%, #FBF6EC 2px, transparent 2px), radial-gradient(circle at 80% 70%, #FBF6EC 2px, transparent 2px); background-size: 30px 30px; opacity: 0.5; }

/* TIP block */
.section-tip { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-darker) 100%); color: var(--cream); }
.tip-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
  background: rgba(245, 235, 217, 0.06);
  border: 1px solid rgba(245, 235, 217, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
}
.tip-icon {
  width: 80px;
  height: 80px;
  background: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}
.tip-icon svg { width: 40px; height: 40px; }
.tip-wrap h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 6px 0 10px;
  color: var(--cream);
}
.tip-wrap p {
  margin: 0;
  color: rgba(245, 235, 217, 0.78);
  line-height: 1.7;
}
.tip-wrap .kicker { color: var(--gold); margin: 0; }

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; gap: 50px; }
  .recipe-grid { grid-template-columns: 1fr 1fr; }
  .recipe-cols { grid-template-columns: 1fr; gap: 24px; }
  .tip-wrap { flex-direction: column; text-align: center; padding: 40px 32px; }
}
@media (max-width: 600px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-meta { gap: 20px; flex-wrap: wrap; }
  .recipe-meta strong { font-size: 20px; }
}

/* ============================================
   BRAND LOGO IMAGE — Navbar
   ============================================ */
.brand-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: auto;
  display: block;
}
.brand {
  gap: 10px;
}
.brand-tag {
  display: block;
}
/* Hide old SVG brand-mark wherever it may remain */
.brand-mark { display: none !important; }
.brand-text { display: none !important; }
/* On scroll (smaller navbar) */
.navbar.scrolled .brand-logo {
  height: 56px;
}

@media (max-width: 768px) {
  .brand-logo { height: 64px; }
  .navbar.scrolled .brand-logo { height: 46px; }
}
@media (max-width: 480px) {
  .brand-logo { height: 52px; }
  .navbar.scrolled .brand-logo { height: 40px; }
}

/* ============================================
   BRAND LOGO IMAGE — Loader
   ============================================ */
.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Remove the spinning animation from loader */
.loader-mark svg,
.loader-mark img {
  animation: none !important;
}
.loader-text { display: none; }

/* ============================================
   BRAND LOGO IMAGE — Footer
   ============================================ */
.footer-brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
/* Hide the old footer h3 since the logo image already has the name */
.footer-brand h3 { display: none; }

@media (max-width: 768px) {
  .footer-brand-logo { height: 80px; }
}

/* ============================================
   ANTI-FLASH — Disable all looping animations
   ============================================ */

/* Hero scorpion watermark — hide (replaced by real logo) */
.hero-scorpion { display: none !important; }

/* Cursor glow — already removed in JS, belt-and-suspenders */
.cursor-glow { display: none !important; }

/* Flame flicker — static flames, no flashing */
.heat-step .flame { animation: none !important; }

/* Art pulse ring behind bottle — static */
.art-pulse { animation: none !important; }

/* WhatsApp floating pulse — static */
.wa-pulse { animation: none !important; }

/* Bottle tilt — static */
.bottle-svg { animation: none !important; }

/* Hero glow float — static */
.hero-glow { animation: none !important; }

/* Scroll cue bounce — static */
.scroll-cue span { animation: none !important; }

/* Plate spin / pulse — static */
.plate-svg { animation: none !important; }
.plate-circle { animation: none !important; }

/* Hero scorpion breath — already hidden, but also disable animation */
.hero-scorpion svg { animation: none !important; }

/* ============================================
   MARQUEE — Much slower, smooth loop
   ============================================ */
.press-track {
  animation-duration: 160s !important;
  padding-left: 0 !important;
}

/* ============================================
   HERO — Photo background with warm cream overlay
   ============================================ */
.hero--photo .hero-bg {
  background: none;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(251, 246, 236, 0.95) 0%,
    rgba(245, 235, 217, 0.88) 40%,
    rgba(237, 223, 196, 0.55) 70%,
    rgba(237, 223, 196, 0.2) 100%
  );
  z-index: 1;
}
.hero--photo .hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================
   PAGE HERO WITH PHOTO BACKGROUND
   ============================================ */
.page-hero--img {
  min-height: 480px;
  display: flex;
  align-items: center;
}
.page-hero--img .page-hero-bg {
  background: none;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero--img .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 15, 15, 0.55) 0%,
    rgba(26, 15, 15, 0.7) 60%,
    rgba(26, 15, 15, 0.85) 100%);
  z-index: -1;
}
.page-hero--img .page-hero-content {
  position: relative;
  z-index: 1;
}
/* Light text over photo hero */
.page-title.light,
.page-sub.light,
.eyebrow.light {
  color: var(--cream);
}
.page-title.light em {
  color: var(--gold-soft);
}
.eyebrow.light::before {
  background: var(--gold);
}

@media (max-width: 768px) {
  .page-hero--img { min-height: 380px; }
}

/* ============================================
   GALLERY — Real photo cards
   ============================================ */
.gal-img.g-real {
  background: var(--charcoal);
}
.gal-img.g-real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}
.gal-item:hover .g-real img {
  transform: scale(1.08);
}
/* Override the parent hover scale so we don't double-scale */
.gal-item:hover .gal-img.g-real {
  transform: none;
}
.gal-img.g-wide-crop img {
  object-position: center 30%;
}

