/* =========================================================
   Velluto — Premium Design System v2
   #6B0F1A deep wine · #FFF5E6 cream · #C9A36B antique gold
   ========================================================= */

:root {
  --burgundy:       #6B0F1A;
  --burgundy-dark:  #3D0910;
  --burgundy-mid:   #8E1525;
  --cream:          #FFF5E6;
  --cream-dark:     #F0DFC5;
  --gold:           #F0A500;
  --gold-light:     #F5BB1A;
  --text-dark:      #1C0809;
  --text-muted:     #6B3040;
  --display: 'Batica Sans', sans-serif;
  --geist:  'Geist', system-ui, -apple-system, sans-serif;
  --serif:  'Cormorant', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3 { font-family: var(--geist); }

/* =========================================================
   FILM GRAIN (fixed overlay, mix-blend: overlay)
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  opacity: 0.044;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .w { transform: none !important; opacity: 1 !important; }
  .accent-line { transform: none !important; }
  [data-reveal]:not(.accent-line) { opacity: 1 !important; transform: none !important; }
  .hero-word, .hero-sub-word { opacity: 1 !important; transform: none !important; }
  .hero-cta-wrap { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-22px) rotate(1.5deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-float   { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.85s var(--ease) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.38s; }
.delay-4 { animation-delay: 0.52s; }

/* =========================================================
   WORD ANIMATION (IntersectionObserver splits h1/h2)
   ========================================================= */
.w-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-bottom: -0.08em;
  padding-bottom: 0.08em;
}
.w {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.75s var(--ease), opacity 0.65s ease;
}
[data-words].in-view .w {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================================
   GENERAL SCROLL REVEAL (data-reveal on non-accent elements)
   ========================================================= */
[data-reveal]:not(.accent-line) {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.75s var(--ease), transform 0.7s var(--ease);
}
[data-reveal]:not(.accent-line).in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ACCENT LINES (draw left→right on scroll)
   ========================================================= */
.accent-line {
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}
.accent-line.in-view { transform: scaleX(1); }

.accent-line-center {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  transform: scaleX(0);
  transition: transform 0.9s var(--ease);
}
.accent-line-center.in-view { transform: scaleX(1); }

/* =========================================================
   HEADER
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 30px 60px;
  transition: background 0.6s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s ease;
}
#site-header.scrolled {
  background: rgba(61, 9, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 60px;
  box-shadow: 0 1px 0 rgba(201,163,107,0.18);
}
#site-header.always-solid {
  background: var(--burgundy-dark);
  padding: 18px 60px;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 44px; }

.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,245,230,0.85);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--cream); letter-spacing: 0.32em; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--cream); }

/* Mobile toggle */
#menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--cream);
  line-height: 0;
}
#menu-toggle svg { width: 26px; height: 26px; }

/* Mobile nav */
#mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--burgundy-dark);
  padding: 0 60px 28px;
  border-top: 1px solid rgba(201,163,107,0.1);
}
#mobile-nav.open { display: flex; }
#mobile-nav .nav-link {
  font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,245,230,0.05);
  display: block;
  letter-spacing: 0.22em;
}
#mobile-nav .nav-link:last-child { border-bottom: none; }

/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */
.label-gold {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--geist);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.section-title-cream {
  font-family: var(--geist);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

/* =========================================================
   BUTTONS — premium inset box-shadow slide
   ========================================================= */
.btn-cream {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,245,230,0.95);
  background: transparent;
  padding: 20px 62px;
  border: 1px solid rgba(255,245,230,0.35);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  box-shadow: inset 0 0 0 0 var(--cream);
  transition:
    box-shadow 0.6s var(--ease),
    color 0.55s var(--ease),
    border-color 0.4s ease;
}
.btn-cream:hover {
  box-shadow: inset 0 0 0 80px var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

.btn-burgundy {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: transparent;
  padding: 20px 62px;
  border: 1px solid rgba(107,15,26,0.6);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  box-shadow: inset 0 0 0 0 var(--burgundy);
  transition:
    box-shadow 0.6s var(--ease),
    color 0.55s var(--ease),
    border-color 0.4s ease;
}
.btn-burgundy:hover {
  box-shadow: inset 0 0 0 80px var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

/* =========================================================
   DRIP DIVIDERS
   ========================================================= */
.drip-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.drip-divider svg { display: block; width: 100%; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--burgundy);
  padding: 165px 60px 105px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 115%, rgba(61,9,16,0.7) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label-gold { color: var(--gold); }
.page-hero-deco-left,
.page-hero-deco-right {
  position: absolute;
  top: 88px;
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(201,163,107,0.3), transparent);
}
.page-hero-deco-left  { left: 9%; }
.page-hero-deco-right { right: 9%; }

/* =========================================================
   FLAVOR MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 4, 8, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.48s ease,
    background 0.48s ease,
    backdrop-filter 0.48s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  background: rgba(20, 4, 8, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-panel {
  background: var(--cream);
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.88) translateY(48px);
  filter: blur(4px);
  transition:
    opacity  0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter   0.42s ease;
}
.modal-overlay.is-open .modal-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 15, 26, 0.08);
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* Image side */
.modal-image-side {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.modal-img-wrap {
  position: absolute;
  inset: 0;
}
.modal-img-ph {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.42s ease;
}
.modal-img-ph.active {
  opacity: 1;
}
.modal-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 245, 230, 0.7);
  pointer-events: none;
}

/* Info side */
.modal-info-side {
  padding: 52px 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.modal-flavor-label {
  margin-bottom: 10px;
}
.modal-flavor-title {
  font-family: var(--geist);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.modal-flavor-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(61, 9, 16, 0.82);
  margin-bottom: 36px;
}

/* Cone / Bowl switcher */
.modal-switcher {
  display: flex;
  gap: 0;
  border: 1px solid rgba(107, 15, 26, 0.18);
}
.modal-switcher-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  color: rgba(61, 9, 16, 0.72);
}
.modal-switcher-btn + .modal-switcher-btn {
  border-left: 1px solid rgba(107, 15, 26, 0.18);
}
.modal-switcher-btn.active {
  background: var(--burgundy);
  color: var(--cream);
}
.switcher-name {
  font-family: var(--geist);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.switcher-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal-panel,
  .modal-img-ph {
    transition: none !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .modal-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-image-side { min-height: 240px; }
  .modal-info-side  { padding: 32px 24px 36px; }
}

/* =========================================================
   BRAND MARQUEE
   ========================================================= */
.brand-marquee {
  background: #FFF5E6;
  overflow: hidden;
  height: 88px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(107,15,26,0.1);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex-shrink: 0;
}
.mq-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
}

/* =========================================================
   CAREER — WHY JOIN US (striped)
   ========================================================= */
#why-section {
  background: repeating-linear-gradient(
    90deg,
    #6B0F1A 0px,
    #6B0F1A 60px,
    #FFF5E6 60px,
    #FFF5E6 120px
  );
}
#why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61, 9, 16, 0.78);
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: repeating-linear-gradient(
    90deg,
    #6B0F1A 0px,
    #6B0F1A 60px,
    #FFF5E6 60px,
    #FFF5E6 120px
  );
  padding: 68px 60px 34px;
  position: relative;
}
#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61, 9, 16, 0.78);
  z-index: 0;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,245,230,0.62);
  margin-top: 6px;
}
.footer-brand { text-align: center; }

.social-links { display: flex; align-items: center; gap: 10px; }
.social-link {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,163,107,0.35);
  color: rgba(255,245,230,0.72);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,107,0.06);
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,245,230,0.55);
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(201,163,107,0.08);
  width: 100%;
}

/* =========================================================
   INDEX — HERO (full-bleed background image)
   ========================================================= */
#hero {
  min-height: 100vh;
  background-color: var(--burgundy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}



.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 50% 90px max(56px, 7vw);
  position: relative;
  z-index: 2;
}

/* Hero title — Geist, uppercase */
.hero-title {
  font-family: var(--geist);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 0.90;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.07em;
}
.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.8s ease, transform 0.95s var(--ease);
  transition-delay: var(--wd, 0ms);
}
.hero-text.loaded .hero-word { opacity: 1; transform: translateY(0); }

/* Hero subtitle — mixed: uppercase + script "a story" */
.hero-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(201, 163, 107, 0.72);
  margin-bottom: 46px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 5px;
}
.hero-sub-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.65s var(--ease);
  transition-delay: var(--wd, 0ms);
}
.hero-sub-script {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1;
  vertical-align: -0.22em;
  margin-left: 4px;
}
.hero-text.loaded .hero-sub-word { opacity: 1; transform: translateY(0); }

/* CTA wrapper — centered, fade-in */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
  transition-delay: 0.88s;
}
.hero-text.loaded .hero-cta-wrap { opacity: 1; transform: translateY(0); }

/* Hero button — no border, glass fill */
.btn-hero {
  display: inline-block;
  font-family: var(--geist);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 245, 230, 0.10);
  padding: 20px 64px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 0 var(--cream);
  transition: box-shadow 0.55s var(--ease), color 0.5s var(--ease);
}
.btn-hero:hover {
  box-shadow: inset 0 0 0 80px var(--cream);
  color: var(--burgundy);
}

/* Bounce scroll arrow */
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  color: rgba(201, 163, 107, 0.52);
  text-decoration: none;
  animation: heroBounce 2.4s ease-in-out infinite;
  transition: color 0.3s ease;
}
.hero-arrow:hover { color: var(--gold); }
.hero-arrow svg { width: 28px; height: 28px; display: block; }

@keyframes heroBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.52; }
  50%       { transform: translateY(9px); opacity: 1; }
}

/* =========================================================
   INDEX — MENU SECTION
   ========================================================= */
#menu-section {
  background: repeating-linear-gradient(
    90deg,
    #6B0F1A 0px,
    #6B0F1A 60px,
    #FFF5E6 60px,
    #FFF5E6 120px
  );
  padding: 112px 60px 120px;
  position: relative;
}
#menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 230, 0.82);
  z-index: 0;
  pointer-events: none;
}
#menu-section > *:not(.drip-divider) {
  position: relative;
  z-index: 1;
}

/* Left-aligned editorial header */
.section-header-editorial {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
.section-header-editorial .left { }
.section-header-editorial .right {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0.88;
  padding-bottom: 8px;
  white-space: nowrap;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 14px;
  max-width: 1380px;
  margin: 0 auto;
}

/* Product card */
.product-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.product-card:hover { transform: translateY(-9px); }
.product-card:focus-visible {
  outline: 1.5px solid var(--burgundy);
  outline-offset: 4px;
}

.card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.product-card:hover .card-image img { transform: scale(1.05); }

/* Gold bar that draws across bottom of card image on hover */
.card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .card-image::after { transform: scaleX(1); }

/* Card number badge */
.card-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  z-index: 2;
  user-select: none;
}

/* Best Seller badge */
.card-bestseller {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  background: var(--gold);
  padding: 5px 10px;
  z-index: 3;
  user-select: none;
  white-space: nowrap;
}

/* Flavor color fallbacks (used by modal JS when no image is set) */
.flavor-galaxy  { background: linear-gradient(155deg, #1A0E08 0%, #3D1F0A 55%, #C4922A 100%); }
.flavor-velvet  { background: linear-gradient(155deg, #F5E8EE 0%, #D4789A 50%, #8B2040 100%); }
.flavor-yuzu    { background: linear-gradient(155deg, #D8EDCC 0%, #7CB85A 55%, #3A7020 100%); }
.flavor-violet  { background: linear-gradient(155deg, #EAE4F8 0%, #8B70C8 52%, #3D2080 100%); }
.flavor-sesame  { background: linear-gradient(155deg, #0E0C0A 0%, #2A2418 60%, #C4922A 100%); }

.card-info { padding: 0 2px; }
.card-gold-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 9px;
}
.card-title {
  font-family: var(--geist);
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 5px;
  line-height: 1.2;
  transition: color 0.35s ease;
}
.product-card:hover .card-title { color: var(--gold); }
.card-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-intro {
  padding: 100px 60px 88px;
  background: var(--cream);
}
.about-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 88px;
  align-items: center;
}
.about-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-muted);
  margin-top: 30px;
}
.about-body p + p { margin-top: 18px; }

.about-image-col { position: relative; }
.about-img-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 72px; height: 72px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}

/* Values strip */
.values-strip {
  background: var(--burgundy);
  padding: 76px 60px;
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  text-align: center;
}
.value-number {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(240,165,0,0.88);
  line-height: 1;
  margin-bottom: 10px;
}
.value-title {
  font-family: var(--geist);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}
.value-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,245,230,0.82);
  line-height: 1.72;
}

/* Timeline */
.timeline-section {
  padding: 100px 60px 115px;
  background: var(--cream);
}
.timeline-section-header { text-align: center; margin-bottom: 76px; }
.timeline { max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,163,107,0.3) 10%, rgba(201,163,107,0.3) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 52px;
}
.timeline-left  { text-align: right; padding-right: 8px; }
.timeline-right { padding-left: 8px; }
.timeline-center { display: flex; align-items: center; justify-content: center; }
.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,163,107,0.15);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: rgba(107,15,26,0.72);
  line-height: 1;
  white-space: nowrap;
}
.timeline-event {
  font-family: var(--geist);
  font-size: 19px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 7px;
  line-height: 1.3;
}
.timeline-detail {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   CONTACTS PAGE
   ========================================================= */
.contacts-section {
  background: repeating-linear-gradient(
    90deg,
    #6B0F1A 0px,
    #6B0F1A 60px,
    #FFF5E6 60px,
    #FFF5E6 120px
  );
  position: relative;
}
.contacts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 230, 0.82);
  z-index: 0;
  pointer-events: none;
}
.contacts-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.contacts-info { padding: 84px 68px 84px 0; }
.contact-items { margin-top: 52px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(107,15,26,0.07);
}
.contact-item:first-child { padding-top: 0; }
.contact-icon-wrap { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-value {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.65;
}
.contact-value a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.contact-value a:hover { color: var(--burgundy); }

.contacts-social { margin-top: 42px; }
.contacts-social .label-gold { margin-bottom: 18px; }
.contacts-social .social-link {
  border-color: rgba(107,15,26,0.3);
  color: rgba(44,16,21,0.72);
}
.contacts-social .social-link:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(107,15,26,0.04);
}

.map-column { background: #E8D4B0; min-height: 560px; }
.map-column iframe {
  display: block;
  width: 100%; height: 100%;
  min-height: 560px;
  border: 0;
}

/* =========================================================
   CAREER PAGE
   ========================================================= */
/* Why Velluto item reveal */
.why-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease);
}
.why-item.in-view { opacity: 1; transform: translateY(0); }

/* Career form section */
.career-section {
  background: var(--cream);
  padding: 84px 60px 115px;
  position: relative;
  overflow: hidden;
}
.career-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.career-intro-text {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.82;
  margin-top: 30px;
  margin-bottom: 60px;
}

/* Submit button — gold, dark text, bold */
.btn-career-submit {
  display: inline-block;
  font-family: var(--geist);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  background: var(--gold);
  padding: 24px 80px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.32s ease, transform 0.22s ease, box-shadow 0.32s ease;
  box-shadow: 0 4px 28px rgba(196,146,42,0.28);
}
.btn-career-submit:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(196,146,42,0.4);
}
.btn-career-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Form field error */
.form-input.field-error,
.form-textarea.field-error,
.form-select.field-error {
  border-bottom-color: #C44D5E !important;
  animation: formShake 0.38s ease;
}
.field-error-msg {
  font-family: var(--sans);
  font-size: 12px;
  color: #C44D5E;
  margin-top: 5px;
  display: none;
}
.field-error-msg.visible { display: block; }
@keyframes formShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}
.form-section-title {
  font-family: var(--geist);
  font-size: 28px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,163,107,0.18);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}
.form-group { margin-bottom: 30px; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.9;
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(107,15,26,0.18);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.35s ease;
  line-height: 1.5;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(28,8,9,0.42); font-weight: 300; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--burgundy); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B0F1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 28px;
}
.form-select option { color: var(--text-dark); background: var(--cream); }
.form-hint {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(28,8,9,0.58);
  margin-top: 6px;
}
.form-divider {
  border: none;
  border-top: 1px solid rgba(201,163,107,0.16);
  margin: 46px 0;
}
.form-submit-row { margin-top: 46px; text-align: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  #site-header        { padding: 22px 28px; }
  #site-header.scrolled { padding: 16px 28px; }
  #site-header.always-solid { padding: 16px 28px; }
  #mobile-nav         { padding: 0 28px 24px; }
  .desktop-nav        { display: none; }
  #menu-toggle        { display: flex; }

  .hero-inner         { padding: 130px 30% 80px 36px; }
  .hero-title         { font-size: clamp(36px, 6vw, 58px); }

  .product-grid       { grid-template-columns: repeat(3, 1fr); }
  #menu-section       { padding: 80px 28px 88px; }

  .about-intro-inner  { grid-template-columns: 1fr; gap: 52px; }
  .about-intro        { padding: 80px 28px; }
  .about-img-accent   { display: none; }

  .values-inner       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-strip       { padding: 64px 28px; }

  .timeline::before   { display: none; }
  .timeline-item      { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-left      { display: none; }
  .timeline-year      { font-size: 28px; line-height: 1.1; }
  .timeline-center    { justify-content: flex-start; }
  .timeline-section   { padding: 80px 28px 96px; }

  .contacts-grid      { grid-template-columns: 1fr; }
  .contacts-info      { padding: 68px 28px; }
  .map-column         { min-height: 380px; }
  .map-column iframe  { min-height: 380px; }

  .page-hero          { padding: 155px 28px 88px; }
  .career-section     { padding: 68px 28px 88px; }
  .form-grid-2        { grid-template-columns: 1fr; }

  .section-header-editorial {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-header-editorial .right { display: none; }

  /* Career hero — tablet */
  .career-char        { width: clamp(500px, 62vw, 780px) !important; left: -8% !important; }
  .career-hero-inner  { padding-left: clamp(180px, 30vw, 360px) !important; }
  .career-hero        { padding-bottom: 120px; }

  /* Why section — tablet */
  #why-section        { padding: 72px 28px !important; }
  #why-grid           { grid-template-columns: repeat(2, 1fr) !important; gap: 36px !important; }

  /* About pullquote */
  .about-pullquote    { padding: 72px 28px; }

  /* Marquee — tablet */
  .brand-marquee      { height: 72px; }
  .marquee-set        { gap: 54px; padding-right: 54px; }
  .mq-logo            { height: 30px; }
}

@media (max-width: 640px) {
  #site-header        { padding: 18px 20px; }
  #site-header.scrolled,
  #site-header.always-solid { padding: 14px 20px; }
  #mobile-nav         { padding: 0 20px 20px; }
  .nav-logo           { font-size: 17px; letter-spacing: 0.26em; }

  .hero-inner         { padding: 120px 20px 80px 20px; }
  .hero-title         { font-size: clamp(34px, 11vw, 52px); }

  .product-grid       { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  #menu-section       { padding: 72px 16px 80px; }

  .btn-cream, .btn-burgundy { padding: 18px 40px; font-size: 12px; }

  .values-inner       { grid-template-columns: 1fr; }

  #site-footer        { padding: 54px 20px 26px; }
  .social-links       { gap: 8px; }
  .social-link        { width: 38px; height: 38px; }

  .page-hero          { padding: 135px 20px 68px; }
  .career-section     { padding: 56px 20px 80px; }
  .contacts-info      { padding: 56px 20px; }

  /* Career hero — mobile: персонажи снизу, текст не пересекается */
  .career-hero        { padding-bottom: 200px !important; }
  .career-char        { width: 105vw !important; left: -2% !important; transform: translateY(18%) !important; }
  .career-hero-inner  { padding-left: 0 !important; text-align: center; }

  /* Why section — mobile */
  #why-section        { padding: 56px 20px !important; }
  #why-grid           { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Marquee — mobile */
  .brand-marquee      { height: 60px; }
  .marquee-set        { gap: 36px; padding-right: 36px; }
  .mq-logo            { height: 22px; }

  /* Menu section mobile */
  #menu-section       { padding: 72px 16px 80px; }

  /* Career submit button — mobile: вдвое меньше */
  .btn-career-submit  { font-size: 13px; padding: 13px 38px; letter-spacing: 0.14em; }
}

/* =========================================================
   ABOUT – REAL PHOTO
   ========================================================= */
.about-img-real {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================================================
   ABOUT – PULL QUOTE
   ========================================================= */
.about-pullquote {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  padding: 88px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-pullquote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: var(--gold); opacity: 0.42;
}
.about-pullquote-inner { max-width: 760px; margin: 0 auto; }
.about-pullquote-mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.22;
  display: block;
  margin-bottom: 12px;
  pointer-events: none;
  user-select: none;
}
.about-pullquote-text {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.52;
  letter-spacing: 0.015em;
  border: none;
  margin: 0;
  padding: 0;
}
.about-pullquote-attr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 32px;
  opacity: 0.72;
}

/* =========================================================
   THANK-YOU MODAL (career page)
   ========================================================= */
.thankyou-overlay {
  position: fixed; inset: 0;
  background: rgba(20,4,8,0);
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.48s ease, background 0.48s ease, backdrop-filter 0.48s ease;
}
.thankyou-overlay.is-open {
  opacity: 1; pointer-events: all;
  background: rgba(20,4,8,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.thankyou-panel {
  background: var(--cream);
  width: 100%; max-width: 500px;
  padding: 64px 56px;
  position: relative;
  text-align: center;
  opacity: 0; transform: scale(0.88) translateY(48px); filter: blur(4px);
  transition: opacity 0.52s cubic-bezier(0.22,1,0.36,1),
              transform 0.52s cubic-bezier(0.22,1,0.36,1),
              filter 0.42s ease;
}
.thankyou-overlay.is-open .thankyou-panel {
  opacity: 1; transform: scale(1) translateY(0); filter: blur(0px);
}
.thankyou-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.22s ease;
}
.thankyou-close:hover { color: var(--burgundy); }
.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(196,146,42,0.28);
}
.thankyou-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1.05;
  margin-bottom: 6px;
}
.thankyou-subtitle {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.thankyou-line {
  width: 48px; height: 1px;
  background: var(--gold); opacity: 0.45;
  margin: 0 auto 28px;
}
.thankyou-body {
  font-family: var(--sans);
  font-size: 16px; font-weight: 300;
  line-height: 1.76;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.thankyou-note {
  font-family: var(--serif);
  font-size: 17px; font-style: italic;
  color: rgba(107,15,26,0.55);
  margin-bottom: 36px;
  line-height: 1.5;
}
.thankyou-btn {
  display: inline-block;
  font-family: var(--geist);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy-dark);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.28s ease, transform 0.2s ease, box-shadow 0.28s ease;
  box-shadow: 0 4px 18px rgba(196,146,42,0.22);
}
.thankyou-btn:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,146,42,0.32);
}

@media (max-width: 640px) {
  .thankyou-panel   { padding: 48px 28px; }
  .about-pullquote  { padding: 64px 20px; }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: #240810;
  padding: 96px 60px 108px;
  position: relative;
}
.faq-inner { max-width: 900px; margin: 0 auto; }

.faq-header { text-align: center; margin-bottom: 68px; }

.faq-list { list-style: none; padding: 0; margin: 0; }

.faq-item { border-bottom: 1px solid rgba(196,146,42,0.18); }
.faq-item:first-child { border-top: 1px solid rgba(196,146,42,0.18); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.28;
  letter-spacing: 0.01em;
  transition: color 0.24s ease;
}
.faq-trigger:hover .faq-question,
.faq-item.is-open .faq-question { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196,146,42,0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1),
              background 0.24s ease,
              border-color 0.24s ease,
              color 0.24s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-dark);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.46s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.is-open .faq-body { max-height: 500px; }

.faq-answer {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,245,230,0.68);
  padding-bottom: 36px;
  padding-right: 68px;
}

@media (max-width: 1100px) {
  .faq-section { padding: 80px 28px 96px; }
}
@media (max-width: 640px) {
  .faq-section { padding: 64px 20px 80px; }
  .faq-question { font-size: clamp(19px, 5vw, 24px); }
  .faq-answer   { padding-right: 0; font-size: 16px; }
  .faq-icon     { width: 38px; height: 38px; }
}

/* =========================================================
   BATICA SANS — HEADING FONT OVERRIDE
   Applies to all h1/h2/h3 and menu card titles sitewide.
   This block must stay last so it wins the cascade.
   ========================================================= */
h1, h2, h3,
.hero-title,
.section-title,
.section-title-cream,
.card-title,
.modal-flavor-title,
.thankyou-title,
.faq-question,
.timeline-event,
.value-title,
.form-section-title {
  font-family: var(--display);
}
