/* ============================================================
   MIAMI FRESH FOODS — Luxury Redesign
   Palette: Deep Forest #0E2318 | Forest #1A3528 | Gold #C9A84C
            Warm Gold #E8C97A | White #FFFFFF | Cream #FAF7F0
            Off-White #F5F1E8 | Text #1A1A1A
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

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

:root {
  --forest-deep: #0E2318;
  --forest:      #1A3528;
  --forest-mid:  #243D30;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F2E4BB;
  --white:       #FFFFFF;
  --cream:       #FAF7F0;
  --off-white:   #F5F1E8;
  --text:        #1A1A1A;
  --text-mid:    #4A4843;
  --text-light:  #7A756E;
  --radius:      0px;
  --max:         1240px;
  --nav-h:       80px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0, 0.1, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 500; }

p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.3em;
  line-height: 1;
  display: inline-block;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--cream); border-color: var(--forest); }
.btn:hover::after { transform: translateY(0); }

.btn.light {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn.light::after { background: rgba(255,255,255,0.15); }
.btn.light:hover { color: var(--white); border-color: rgba(255,255,255,0.9); }

.btn.gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn.gold::after { background: var(--gold); }
.btn.gold:hover { color: var(--forest-deep); border-color: var(--gold); }

.btn.fill {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}
.btn.fill::after { background: var(--forest); }
.btn.fill:hover { color: var(--cream); border-color: var(--forest); }

/* ── Layout Utilities ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 2.5rem; max-width: var(--max); margin: 0 auto; }
.section-full { padding: 7rem 2.5rem; }
.center-title { text-align: center; max-width: 760px; margin: 0 auto 5rem; }
.center-title h2 { margin-bottom: 1.25rem; }
.center-title p { font-size: 1.05rem; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  /* prevent invisible elements from blocking touch events beneath them */
  pointer-events: none;
}
.reveal.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  pointer-events: none;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); pointer-events: auto; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  pointer-events: none;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); pointer-events: auto; }

/* Ensure buttons and interactive elements inside reveal wrappers
   are always tappable once the parent is visible */
.reveal.visible button,
.reveal.visible a,
.reveal.visible input,
.reveal.visible label,
.reveal-left.visible button,
.reveal-left.visible a,
.reveal-right.visible button,
.reveal-right.visible a {
  pointer-events: auto;
  touch-action: manipulation;
}

/* Extra touch target reliability for FAQ and form controls on iOS */
.faq-trigger,
.btn-checkout,
.btn,
.billing-switch,
.menu-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: transparent;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--forest-deep);
  box-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.brand {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}

.brand:hover { color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { transform: scaleX(1); }

.nav .btn {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  padding: 0.65rem 1.6rem;
  font-size: 0.62rem;
}
.nav .btn::after { background: var(--gold); }
.nav .btn:hover { color: var(--forest-deep); border-color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--forest-deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 999;
  padding: 2.5rem;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO — full-viewport with centered bottom CTA
   ============================================================ */
.hero {
  position: relative;
  /* dvh accounts for mobile browser chrome (address bar) so the
     hero never causes a layout jump when the bar shows/hides.
     Falls back to 100vh on browsers that don't support dvh. */
  height: 100vh;
  height: 100dvh;
  /* clamp prevents the hero from being too short on small phones */
  min-height: 560px;
  overflow: hidden;
  /* Ensure the hero never exceeds the screen — no overscroll */
  max-height: 100vh;
  max-height: 100dvh;
}

.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-frame video,
.hero-frame img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the most interesting part of the video centred on mobile */
  object-position: center center;
}

/* Strong bottom gradient so centered text is always legible */
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(10,24,16,0.92) 0%,
      rgba(10,24,16,0.55) 30%,
      rgba(10,24,16,0.15) 60%,
      transparent 100%);
}

/* ── Centered bottom CTA ── */
.hero-cta-center {
  position: absolute;
  /* Use env() so the CTA clears the iOS home-indicator bar */
  bottom: calc(7vh + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

/* Large script brand name */
.hero-script-name {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

/* Spaced uppercase tagline */
.hero-tagline-text {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
}

/* Thin gold divider */
.hero-gold-rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
  margin: 1.6rem 0;
}

/* CTA button row */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.45; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--forest-deep);
  padding: 10rem 2.5rem 6rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; font-weight: 300; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 580px; margin: 0 auto; font-weight: 300; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-deep);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--forest-deep);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.intro-text .eyebrow { display: block; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1.5rem; }
.intro-text .btn { margin-top: 0.75rem; }

.chef-portrait { position: relative; }

.chef-portrait-inner {
  position: relative;
  display: block;
}

.chef-portrait img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.chef-portrait-inner::before {
  content: '';
  position: absolute;
  top: 2rem; left: -2rem;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.chef-portrait-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 1.5rem 1.75rem;
  text-align: center;
  min-width: 120px;
}

.chef-portrait-badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.chef-portrait-badge .label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  background: var(--forest-deep);
  padding: 4.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.2);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold-light);
  line-height: 1;
  display: block;
  font-weight: 300;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.65rem;
}

/* ============================================================
   PHOTO STRIP — clean 3-column editorial showcase
   ============================================================ */
.photo-strip {
  background: var(--forest-deep);
  padding: 5rem 2.5rem;
}

.photo-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.photo-strip-item {
  display: flex;
  flex-direction: column;
}

.photo-strip-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.photo-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.photo-strip-item:hover .photo-strip-img img {
  transform: scale(1.04);
}

.photo-strip-caption {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 1.5rem 1.75rem 1.75rem;
}

.photo-strip-caption .eyebrow {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}

.photo-strip-caption p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   EXPERIENCE GRID
   ============================================================ */
.experience-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 5rem;
  background: rgba(201,168,76,0.15);
}

.experience-card {
  display: block;
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition);
}

.experience-card:hover { box-shadow: 0 20px 60px rgba(14,35,24,0.12); z-index: 1; }

.experience-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.experience-card:hover .experience-card-img img { transform: scale(1.06); }

.experience-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,35,24,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.experience-card:hover .experience-card-img::after { opacity: 1; }

.experience-card-body {
  padding: 2rem 1.75rem 2.25rem;
  border-top: 1px solid var(--gold-pale);
}

.experience-card-body .eyebrow { font-size: 0.6rem; margin-bottom: 0.5rem; }
.experience-card-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; font-weight: 400; }
.experience-card-body p { font-size: 0.85rem; line-height: 1.7; }

.experience-card-arrow {
  position: absolute;
  bottom: 2rem;
  right: 1.75rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.experience-card:hover .experience-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  position: relative;
  overflow: hidden;
}

.split-img img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  display: block;
}

.split-img-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--forest-deep);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  max-width: 240px;
}

.split-img-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  font-family: var(--font-display);
}

.split-img-overlay cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-body);
}

.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { margin-bottom: 1.25rem; }
.split-text p:last-of-type { margin-bottom: 2rem; }

/* ============================================================
   MENU SHOWCASE
   ============================================================ */
.menu-showcase {
  background: var(--forest-deep);
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.menu-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.menu-showcase .container { max-width: var(--max); margin: 0 auto; position: relative; }
.menu-showcase .center-title { color: var(--white); }
.menu-showcase .center-title p { color: rgba(255,255,255,0.6); }
.menu-showcase .eyebrow { color: var(--gold-light); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 5rem;
  background: rgba(201,168,76,0.12);
}

.menu-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--transition);
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-card:hover { background: rgba(255,255,255,0.07); }
.menu-card:hover::before { opacity: 1; }

.menu-card .eyebrow { color: var(--gold); font-size: 0.58rem; }
.menu-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.6rem; font-weight: 300; }
.menu-card > p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.88rem; }

.menu-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.5;
}

.menu-items { display: flex; flex-direction: column; gap: 0.85rem; }

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
}

.menu-item-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
  opacity: 0.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding: 7rem 2.5rem;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}

.cta-band-img {
  position: absolute;
  inset: 0;
}

.cta-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { color: var(--white); max-width: 680px; margin: 0 auto 1.25rem; }
.cta-band p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.5rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section {
  background: var(--off-white);
  padding: 7rem 2.5rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.step {
  padding: 3rem 2.5rem;
  position: relative;
  border-right: 1px solid rgba(201,168,76,0.2);
}

.step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.step h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--forest-deep); }
.step p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   WELLNESS GRID
   ============================================================ */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.15);
  margin-top: 5rem;
}

.wellness-card {
  padding: 2.75rem 2.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.wellness-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.wellness-card:hover { background: var(--cream); }
.wellness-card:hover::before { transform: scaleX(1); }

.wellness-card-icon { font-size: 1.5rem; margin-bottom: 1.25rem; display: block; }
.wellness-card h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--forest-deep); }
.wellness-card p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   CONTACT BAND + FORM
   ============================================================ */
.contact-band {
  background: var(--cream);
  padding: 7rem 2.5rem;
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-copy .eyebrow { display: block; }
.contact-copy h2 { margin-bottom: 1.5rem; }
.contact-copy > p { margin-bottom: 0.75rem; font-size: 1.05rem; }

.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--forest-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
}

.quote-block {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-body);
  position: relative;
}

/* ── Form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  border: 1px solid rgba(26,53,40,0.2);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  border-radius: 0;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; }

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.15);
}

.info-card {
  padding: 3rem 2.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover { background: var(--cream); }
.info-card:hover::after { opacity: 1; }

.info-card .eyebrow { font-size: 0.58rem; }
.info-card h3 { font-size: 1.5rem; font-weight: 400; margin: 0.6rem 0 1rem; }
.info-card p { font-size: 0.88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-deep);
  color: var(--white);
  padding: 5rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .brand { font-size: 2.4rem; display: block; margin-bottom: 1rem; transition: color var(--transition); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
  line-height: 1.8;
  font-weight: 300;
}

.footer-brand-tagline {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.footer-brand-tagline span {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}


.footer-social {
  margin-top: 1.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color var(--transition), transform var(--transition);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 600;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-nav ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  transition: color var(--transition);
}

.footer-nav ul a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.28); font-weight: 300; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.thankyou-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.thankyou-content { position: relative; z-index: 1; max-width: 580px; }

.thankyou-script {
  font-family: var(--font-script);
  font-size: 5.5rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
}

.thankyou-content h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 1.5rem; font-weight: 300; }
.thankyou-content p { color: rgba(255,255,255,0.62); font-size: 1.05rem; margin-bottom: 2.5rem; font-weight: 300; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }

  .intro { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-grid { grid-template-columns: repeat(2, 1fr); }

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

  .chef-portrait-badge { right: 0; }
  .split { gap: 4rem; }
  .split-img-overlay { left: -1rem; }

  .hero-script-name { font-size: clamp(3rem, 7vw, 5.5rem); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .section { padding: 5rem 1.5rem; }
  .section-full { padding: 5rem 1.5rem; }
  .container { padding: 0 1.5rem; }

  .nav.left, .nav.right { display: none; }
  .menu-toggle { display: flex; }

  .hero-cta-center {
    bottom: calc(5vh + env(safe-area-inset-bottom, 0px));
    padding: 0 1.5rem;
  }
  .hero-script-name { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-tagline-text { font-size: 0.58rem; letter-spacing: 0.18em; }
  .hero-gold-rule { margin: 1.25rem 0; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn { width: 240px; justify-content: center; }
  .hero-scroll { display: none; }

  .intro { grid-template-columns: 1fr; gap: 3.5rem; }
  .intro .chef-portrait { order: -1; }
  .chef-portrait { max-width: 380px; margin: 0 auto; }
  .chef-portrait-badge { right: -0.5rem; bottom: 1rem; }

  .experience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 3rem auto 0; }

  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse { direction: ltr; }
  .split-img-overlay { display: none; }

  .cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .step:last-child { border-bottom: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .wellness-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .photo-strip { padding: 4rem 1.5rem; }
  .photo-strip-inner { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero-cta-center {
    bottom: calc(4vh + env(safe-area-inset-bottom, 0px));
    padding: 0 1.25rem;
  }
  .hero-script-name { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-item + .stat-item::before { display: none; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .photo-strip-img { aspect-ratio: 4/3; }
  .experience-grid { max-width: 100%; }
  .contact-band { padding: 4rem 1.25rem; }
  .footer { padding: 4rem 1.25rem 2rem; }
}

/* ============================================================
   MOBILE POLISH PATCH — hero video full-frame display
   Scope: mobile only; desktop layout remains unchanged.
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    height: 100dvh;
    max-height: none;
    background: var(--forest-deep);
  }

  .hero-frame video,
  .hero-frame img.hero-bg {
    object-fit: contain;
    object-position: center center;
    background: var(--forest-deep);
  }

  .hero-frame::after {
    background:
      linear-gradient(to top,
        rgba(10,24,16,0.95) 0%,
        rgba(10,24,16,0.66) 22%,
        rgba(10,24,16,0.22) 54%,
        rgba(10,24,16,0.42) 100%);
  }

  .hero-cta-center {
    bottom: calc(3vh + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-tagline-text {
    display: block;
    max-width: 310px;
    margin: 0 auto;
    line-height: 1.65;
  }
}

/* ============================================================
   SURGICAL MOBILE PATCH — full hero video display
   Keeps desktop unchanged. On phones, the landscape video is
   shown as a complete 16:9 frame instead of being cropped.
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding-top: var(--nav-h);
    background: var(--forest-deep);
    display: flex;
    flex-direction: column;
  }

  .hero-frame {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: var(--forest-deep);
  }

  .hero-frame video,
  .hero-frame img.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: var(--forest-deep) !important;
    display: block !important;
  }

  .hero-frame::after {
    background: linear-gradient(to top,
      rgba(10,24,16,0.42) 0%,
      rgba(10,24,16,0.18) 45%,
      rgba(10,24,16,0.05) 100%) !important;
  }

  .hero-cta-center {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    padding: 1.4rem 1.25rem 2rem !important;
    background: linear-gradient(to bottom, var(--forest-deep), #08140d);
  }

  .hero-scroll { display: none !important; }
}

@media (max-width: 420px) {
  .hero-frame { aspect-ratio: 16 / 9 !important; }
  .hero-cta-center { padding-top: 1.1rem !important; }
}

/* ============================================================
   GLOBAL MOBILE POLISH — full-site responsive fixes
   All breakpoints in one consolidated block
   ============================================================ */

/* ── Page Hero — tighter padding on mobile ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 1.5rem 4rem;
  }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .page-hero p  { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 6rem 1.25rem 3.5rem; }
}

/* ── CTA Band — stack buttons on mobile ── */
@media (max-width: 640px) {
  .cta-band { padding: 5rem 1.25rem; }
  .cta-band h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cta-band > div[style] {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ── Process Section — mobile ── */
@media (max-width: 768px) {
  .process-section { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .process-section { padding: 4rem 1.25rem; }
  .step { padding: 2rem 1.5rem; }
  .step-num { font-size: 3.5rem; margin-bottom: 0.75rem; }
  .step h3 { font-size: 1.2rem; }
}

/* ── Buttons — always min 48px tap target on mobile ── */
@media (max-width: 768px) {
  .btn,
  .plan-btn,
  .btn-checkout {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ── Footer — stack on mobile ── */
@media (max-width: 480px) {
  .footer { padding: 4rem 1.25rem 2rem; }
  .footer-bottom { gap: 0.5rem; }
  .footer-bottom p { font-size: 0.75rem; }
}

/* ── Gallery page ── */
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 4px !important;
  }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr !important; }
}

/* ── Contact page form ── */
@media (max-width: 480px) {
  .contact-section, .contact-band { padding: 4rem 1.25rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* ── Catering page cards ── */
@media (max-width: 640px) {
  .cards { gap: 1.25rem; }
  .card { padding: 2rem 1.5rem; }
}

/* ── Split sections — image ordering ── */
@media (max-width: 768px) {
  .split.reverse .split-img { order: -1; }
}

/* ── Smooth scrolling anchor offset for sticky header ── */
[id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }


/* Client update: crudité product and single-plan refinements */
.crudite-product{background:var(--cream,#f7f3ed)}
.crudite-product-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:clamp(2rem,6vw,5rem);align-items:center}
.crudite-product-media{min-height:520px;overflow:hidden}
.crudite-product-media img{width:100%;height:100%;min-height:520px;object-fit:cover;display:block}
.crudite-product-copy h2{margin-bottom:1.25rem}
.crudite-product-details{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(42,35,25,.16);margin:2rem 0}
.crudite-product-details div{background:var(--cream,#f7f3ed);padding:1.25rem .9rem;display:flex;flex-direction:column;gap:.25rem}
.crudite-product-details strong{font-family:var(--serif);font-size:clamp(1.45rem,3vw,2.1rem);font-weight:500}
.crudite-product-details span,.product-order-note{font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;line-height:1.5}
.product-order-note{margin-top:1rem;opacity:.68;text-transform:none;letter-spacing:.02em}
.plans-stack{max-width:1050px;margin-inline:auto}
.plans-stack .plan-card{grid-template-columns:minmax(220px,.9fr) minmax(280px,1.2fr) minmax(180px,.65fr)}
@media (max-width:850px){
 .crudite-product-grid{grid-template-columns:1fr;gap:2rem}
 .crudite-product-media,.crudite-product-media img{min-height:0;aspect-ratio:1/1;object-fit:cover}
 .crudite-product-details{grid-template-columns:1fr}
 .plans-stack .plan-card{grid-template-columns:1fr}
}


/* === Wellness Quote Ribbon === */
.wellness-quote-ribbon {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f6f0;
  border-top: 1px solid rgba(201, 168, 76, 0.28);
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
  padding: 1rem 0;
  z-index: 1;
}
.wellness-quote-ribbon::before,
.wellness-quote-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 7vw, 110px);
  z-index: 2;
  pointer-events: none;
}
.wellness-quote-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, #f8f6f0 20%, rgba(248,246,240,0));
}
.wellness-quote-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, #f8f6f0 20%, rgba(248,246,240,0));
}
.wellness-quote-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: wellnessQuoteScroll 54s linear infinite;
}
.wellness-quote-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wellness-quote-item {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  white-space: nowrap;
  margin: 0 2rem;
  color: var(--forest-deep, #153b2f);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .01em;
}
.wellness-quote-item::before {
  content: "✦";
  color: var(--gold, #c9a84c);
  font-size: .72em;
  font-style: normal;
}
@keyframes wellnessQuoteScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (hover:hover) {
  .wellness-quote-ribbon:hover .wellness-quote-track { animation-play-state: paused; }
}
@media (max-width: 640px) {
  .wellness-quote-ribbon { padding: .82rem 0; }
  .wellness-quote-item { margin: 0 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wellness-quote-track { animation: none; transform: none; }
  .wellness-quote-ribbon { overflow-x: auto; scrollbar-width: none; }
  .wellness-quote-ribbon::-webkit-scrollbar { display: none; }
  .wellness-quote-group:nth-child(2) { display: none; }
}
