/* ============================================================
   LA PALOMITERIA — Vintage Confectionery Theatre
   Aesthetic: 1920s cinema lobby meets European confiserie
   ============================================================ */

/* --- Tokens --- */
:root {
  --espresso: #1C110A;
  --cocoa: #2C1A0E;
  --walnut: #3E2723;
  --truffle: #5D4037;
  --cinnamon: #795548;
  --latte: #A1887F;
  --cream: #FFF8E7;
  --cream-warm: #F5E6C8;
  --parchment: #EDE0CC;
  --ivory: #FFFDF7;
  --gold: #C8982C;
  --gold-bright: #E8B93C;
  --gold-pale: #F5DFA0;
  --amber: #D4870E;
  --crimson: #8B1A10;
  --crimson-bright: #C0392B;
  --forest: #2D5016;

  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-accent: 'Cinzel Decorative', 'Georgia', serif;
  --ff-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 3px rgba(28, 17, 10, 0.08);
  --shadow-md: 0 4px 16px rgba(28, 17, 10, 0.10);
  --shadow-lg: 0 12px 40px rgba(28, 17, 10, 0.14);
  --shadow-xl: 0 24px 60px rgba(28, 17, 10, 0.18);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--walnut);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--ff-display); color: var(--walnut); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--espresso);
  color: var(--latte);
  font-size: 0.8rem;
  padding: 7px 0;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(200, 152, 44, 0.15);
}

.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 10px; }
.top-bar-left svg { opacity: 0.6; }
.top-divider { width: 1px; height: 12px; background: var(--latte); opacity: 0.25; }

.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
  color: var(--latte);
  transition: color 0.3s, transform 0.3s var(--ease-spring);
}
.top-bar-right a:hover { color: var(--gold-bright); transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.4s, padding 0.4s var(--ease-out);
  padding: 4px 0;
}

.header--scrolled {
  box-shadow: 0 2px 24px rgba(28, 17, 10, 0.10);
  padding: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.header-logo img {
  height: 56px;
  width: auto;
  transition: height 0.3s var(--ease-out);
}
.header--scrolled .header-logo img { height: 48px; }

.nav-menu { display: flex; list-style: none; gap: 2px; }
.nav-menu a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--truffle);
  border-radius: 8px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-menu a:hover { color: var(--walnut); }
.nav-menu a.active { color: var(--walnut); font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--espresso);
  box-shadow: 0 4px 16px rgba(200, 152, 44, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 152, 44, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--walnut);
  border: 1.5px solid var(--latte);
}
.btn-ghost:hover {
  background: var(--walnut);
  color: var(--cream);
  border-color: var(--walnut);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--espresso);
  color: var(--gold-pale);
  box-shadow: 0 4px 16px rgba(28, 17, 10, 0.3);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(28, 17, 10, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: relative;
  z-index: 600;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--walnut);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(170deg, var(--ivory) 0%, var(--cream) 40%, var(--cream-warm) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 25% 25%, var(--walnut) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--walnut) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-spotlight {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(200, 152, 44, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1.1; }

.hero-ornament {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.hero-badge {
  display: inline-block;
  font-family: var(--ff-body);
  background: var(--espresso);
  color: var(--gold-pale);
  padding: 7px 20px;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 152, 44, 0.2);
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  color: var(--cinnamon);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { flex: 0.9; display: flex; justify-content: center; }

.hero-logo-frame {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200, 152, 44, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}

.hero-logo-frame img {
  max-height: 340px;
  filter: drop-shadow(0 20px 50px rgba(28, 17, 10, 0.2));
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--latte);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   ORNAMENTAL DIVIDER
   ============================================================ */
.ornament-divider {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  background: var(--cream);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 24px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-label::before { right: 100%; }
.section-label::after { left: 100%; }

.section-label--light { color: var(--gold-bright); }
.section-label--light::before,
.section-label--light::after { background: var(--gold-bright); }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  color: var(--cinnamon);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BEST SELLERS
   ============================================================ */
.best-sellers {
  padding: 90px 0;
  background: var(--ivory);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--ivory);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(62, 39, 35, 0.06);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 152, 44, 0.15);
}
.product-card:hover::before { opacity: 1; }

.product-image {
  position: relative;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

/* Per-flavor gradient backgrounds */
.popcorn-visual {
  font-size: 4.5rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-spring);
  z-index: 1;
  position: relative;
}
.product-card:hover .popcorn-visual { transform: scale(1.12) rotate(-5deg); }

.caramelo { background: none; }
.product-card:has(.caramelo) .product-image { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.product-card:has(.chocolate) .product-image { background: linear-gradient(135deg, #EFEBE9, #D7CCC8); }
.product-card:has(.queso) .product-image { background: linear-gradient(135deg, #FFF8E1, #FFECB3); }
.product-card:has(.mantequilla) .product-image { background: linear-gradient(135deg, #FFFDE7, #FFF9C4); }
.product-card:has(.chile) .product-image { background: linear-gradient(135deg, #FBE9E7, #FFCCBC); }
.product-card:has(.maple) .product-image { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.product-card:has(.sriracha) .product-image { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.product-card:has(.chocoblanco) .product-image { background: linear-gradient(135deg, #FAFAFA, #F5F5F5); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 60px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.badge-hot { background: var(--crimson-bright); color: #fff; }
.badge-new { background: var(--forest); color: #fff; }
.badge-limited { background: var(--gold); color: var(--espresso); }
.badge-fav { background: var(--amber); color: #fff; }

.product-info { padding: 20px; position: relative; z-index: 1; }

.stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.product-info h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.flavor {
  font-size: 0.82rem;
  color: var(--latte);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.product-bottom { display: flex; justify-content: space-between; align-items: center; }

.product-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--walnut);
}
.product-price small { font-size: 0.72rem; color: var(--latte); font-weight: 400; font-family: var(--ff-body); }

.btn-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--walnut);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-spring);
}
.btn-cart:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: scale(1.15) rotate(90deg);
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients {
  padding: 90px 0;
  background: var(--cream);
  position: relative;
}

.ingredients-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ingredient-card {
  text-align: center;
  padding: 36px 20px 32px;
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid rgba(62, 39, 35, 0.04);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.ingredient-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 3px 3px 0 0;
  transition: width 0.4s var(--ease-out);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ingredient-card:hover::after { width: 40px; }

.ingredient-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(200, 152, 44, 0.15);
  transition: transform 0.4s var(--ease-spring);
}
.ingredient-card:hover .ingredient-icon-wrap { transform: scale(1.08) rotate(-5deg); }

.ingredient-icon { font-size: 2rem; line-height: 1; }

.ingredient-card h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.85rem;
  color: var(--cinnamon);
  line-height: 1.55;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.about-texture {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image:
    radial-gradient(circle at 20% 80%, var(--walnut) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--walnut) 1px, transparent 1px);
  background-size: 48px 48px;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.about-visual { flex: 0.9; display: flex; justify-content: center; position: relative; }

.about-frame {
  position: relative;
  z-index: 1;
}

.about-frame img {
  max-height: 340px;
  filter: drop-shadow(0 16px 40px rgba(28, 17, 10, 0.18));
}

.about-frame-border {
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  opacity: 0.2;
  transform: rotate(-2deg);
}

.about-content { flex: 1.1; }

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

.about-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
  border-radius: 1px;
}

.about-content p {
  color: var(--cinnamon);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(62, 39, 35, 0.08);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--latte);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 30% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 70% 50%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.testimonials .section-header h2 { color: var(--cream); }
.testimonials .section-header p { color: var(--latte); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(200, 152, 44, 0.08);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(200, 152, 44, 0.15);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote {
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  right: 24px;
}

.testimonial-stars {
  color: var(--gold-bright);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--parchment);
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 1.05rem;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--espresso);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-name { font-weight: 700; color: var(--cream); font-size: 0.95rem; }
.testimonial-role { font-size: 0.78rem; color: var(--latte); margin-top: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 50%, var(--gold-bright) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-ornament {
  color: var(--espresso);
  margin-bottom: 20px;
  opacity: 0.15;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--espresso);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--cocoa);
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  color: var(--latte);
  padding: 0 0 0;
  position: relative;
}

.footer-top-border {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.footer .container { padding-top: 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cinnamon);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--latte);
  transition: all 0.35s var(--ease-spring);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--ff-body);
  color: var(--cream-warm);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.5;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--cinnamon);
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}
.footer ul a:hover {
  color: var(--gold-pale);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cinnamon);
  font-size: 0.9rem;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cinnamon);
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-track { grid-template-columns: repeat(3, 1fr); }
  .hero .container { gap: 40px; }
  .about .container { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 253, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 550;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 16px 32px;
    letter-spacing: 2px;
  }

  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .hero { padding: 60px 0 50px; }
  .hero .container { flex-direction: column; text-align: center; gap: 40px; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-logo-frame { width: 280px; height: 280px; }
  .hero-logo-frame img { max-height: 240px; }
  .hero-scroll-hint { display: none; }
  .hero-ornament { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ingredients-track { grid-template-columns: repeat(2, 1fr); }

  .about .container { flex-direction: column; text-align: center; gap: 40px; }
  .about-stats { justify-content: center; }
  .about-divider { margin-left: auto; margin-right: auto; }
  .about-frame-border { display: none; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }

  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .top-bar-left { justify-content: center; }
  .top-bar-right { justify-content: center; }

  .section-header h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
  .ingredients-track { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .footer-contact li { justify-content: center; }
  .footer-brand { text-align: center; }
  .footer-social { justify-content: center; }
  .testimonial-card { padding: 28px 20px; }
}
