/* ============================================
   KOTO HIBACHI · v5
   Cream background + vibrant orange-red blocks
   Food magazine vibe with high-end refinement
   Target: 30+ affluent families
   ============================================ */

:root {
  /* === PALETTE === */
  --cream:        #FBF5EB;   /* 主背景 - 暖米白 */
  --cream-deep:   #F2E9D8;   /* 深米色 - 区分区块 */
  --paper:        #FFFFFF;
  --ink:          #15110E;   /* 主文本黑 */
  --charcoal:    #2A211B;
  --slate:        #6B5D54;
  --line:         rgba(21, 17, 14, 0.10);
  --line-strong:  rgba(21, 17, 14, 0.20);

  /* === HERO ORANGE-RED 主色块 === */
  --flame:        #E94B1F;   /* 火焰橙红 - 主CTA */
  --flame-deep:   #C2330D;   /* 深火焰红 */
  --ember:        #F4854A;   /* 余烬橙 */
  --gold:         #D4A24C;   /* 金黄 - 点缀 */
  --copper:       #B8632F;   /* 古铜 */
  --paprika:      #D04A1A;   /* 红椒色 */

  /* === SHADOWS === */
  --shadow-sm: 0 2px 6px rgba(21, 17, 14, 0.06), 0 1px 2px rgba(21, 17, 14, 0.04);
  --shadow-md: 0 8px 20px rgba(21, 17, 14, 0.08), 0 2px 6px rgba(21, 17, 14, 0.04);
  --shadow-lg: 0 24px 48px rgba(21, 17, 14, 0.12), 0 4px 12px rgba(21, 17, 14, 0.06);
  --shadow-flame: 0 12px 32px rgba(233, 75, 31, 0.25);

  /* === TYPOGRAPHY === */
  /* DM Serif Display - 现代粗衬线，有冲击力但高级 */
  /* Inter - 友好正文 */
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1280px;
  --container-narrow: 980px;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* === UTILITIES === */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--flame);
}

/* ============================================
   ANNOUNCE BAR
   ============================================ */
.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announce strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.announce .sep {
  color: var(--gold);
  margin: 0 14px;
  opacity: 0.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(251, 245, 235, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 18px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.logo-flame {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1;
  margin: 0 2px;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 4px rgba(233, 75, 31, 0.45));
}
.logo .meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
  margin-left: 10px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  align-items: center;
}
.mobile-cta { display: none; }
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  color: var(--charcoal);
  padding: 6px 0;
  position: relative;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--flame);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--flame); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 14px; align-items: center; }
.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.nav-phone span { color: var(--slate); margin-right: 6px; font-size: 11px; }
.nav-phone:hover { color: var(--flame); }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.25s ease;
  font-weight: 400;
}
.btn:hover::after { transform: translateX(4px); }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-flame {
  background: var(--flame);
  border-color: var(--flame);
  color: var(--cream);
}
.btn-flame:hover {
  background: var(--flame-deep);
  border-color: var(--flame-deep);
  box-shadow: var(--shadow-flame);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-lg {
  padding: 18px 38px;
  font-size: 13px;
  letter-spacing: 0.15em;
}
.btn-block { width: 100%; }
.btn-no-arrow::after { display: none; }

/* ============================================
   HERO - 大胆冲击,有食欲
   ============================================ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: var(--cream);
  overflow: hidden;
}

/* 装饰色块 - 大胆但克制 */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 100%;
  background: var(--flame);
  transform: skewX(-12deg);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 200px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  z-index: 0;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--flame);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title .flame-word {
  color: var(--flame);
  font-style: italic;
}
.hero-title .underline {
  position: relative;
  display: inline-block;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.45;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 36px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta .meta-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.hero-meta .meta-item .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-meta .stars {
  color: var(--flame);
  font-size: 16px;
  letter-spacing: 2px;
}

/* HERO 主图 / 视频 */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-img-main,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Volume / mute toggle (desktop) */
.hero-mute-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(21, 17, 14, 0.75);
  border: 1px solid rgba(251, 245, 235, 0.25);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.hero-mute-toggle:hover {
  background: var(--flame);
  border-color: var(--flame);
  transform: translateY(-2px);
}
.hero-mute-toggle .mute-icon {
  font-size: 16px;
  line-height: 1;
}
/* Default (muted): show off icon + "Tap for sound" */
.hero-mute-toggle .mute-icon-on { display: none; }
.hero-mute-toggle .mute-icon-off { display: inline; }
.hero-mute-toggle .mute-label::before { content: "Tap for sound"; }
/* Unmuted state: swap icon + label */
.hero-mute-toggle[aria-pressed="true"] .mute-icon-on { display: inline; }
.hero-mute-toggle[aria-pressed="true"] .mute-icon-off { display: none; }
.hero-mute-toggle[aria-pressed="true"] .mute-label::before { content: "Mute"; }
.hero-sticker {
  position: absolute;
  z-index: 2;
}
.hero-sticker-1 {
  top: 20px;
  left: -32px;
  background: var(--flame);
  color: var(--cream);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.hero-sticker-1 .big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-sticker-1 .lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-sticker-2 {
  bottom: 40px;
  right: -24px;
  background: var(--cream);
  color: var(--ink);
  padding: 16px 22px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
}
.hero-sticker-2 .stars { color: var(--flame); display: block; font-size: 16px; letter-spacing: 3px; margin-bottom: 4px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
  text-align: center;
}
.trust-item {
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: rgba(251, 245, 235, 0.15);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust-num .stars {
  color: var(--flame);
  font-size: 32px;
  letter-spacing: 4px;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* ============================================
   SECTION
   ============================================ */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin: 20px 0 20px;
  letter-spacing: -0.02em;
}
.section-title .flame-word {
  color: var(--flame);
  font-style: italic;
}
.section-title .underline {
  position: relative;
  display: inline-block;
}
.section-title .underline::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.4;
}
.section-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
}
.section-header.left .section-desc { margin: 0; }

/* ============================================
   FEATURE GALLERY - 大图食物冲击
   ============================================ */
.feature-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.feat {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feat:hover img { transform: scale(1.05); }
.feat-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.feat-tag.flame { background: var(--flame); color: var(--cream); }
.feat-tag.gold { background: var(--gold); color: var(--ink); }

.feat-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.feat-title em { font-style: italic; color: var(--gold); }
.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 17, 14, 0.75) 100%);
  z-index: 1;
}

/* 非对称布局 */
.feat-1 { grid-column: span 7; grid-row: span 4; }
.feat-2 { grid-column: span 5; grid-row: span 2; }
.feat-3 { grid-column: span 5; grid-row: span 2; }
.feat-4 { grid-column: span 4; grid-row: span 3; }
.feat-5 { grid-column: span 4; grid-row: span 3; }
.feat-6 { grid-column: span 4; grid-row: span 3; }

/* ============================================
   APPROACH - 4步流程
   ============================================ */
.approach-section { background: var(--cream-deep); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.approach-step {
  background: var(--cream);
  padding: 36px 28px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s ease;
}
.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--flame);
}
.approach-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.approach-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

/* ============================================
   OCCASIONS - 三大场景
   ============================================ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.occasion-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.occasion-card:hover { transform: translateY(-6px); }
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.occasion-card:hover img { transform: scale(1.08); }
.occasion-card .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 17, 14, 0.0) 30%, rgba(21, 17, 14, 0.92) 100%);
  z-index: 1;
}
.occasion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--cream);
}
.occasion-num {
  display: inline-block;
  background: var(--flame);
  color: var(--cream);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.occasion-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.occasion-card p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
}

/* ============================================
   MENU - 编辑杂志菜单
   ============================================ */
.menu-section { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.menu-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--flame);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}
.menu-section .container { position: relative; z-index: 1; }
.menu-section .section-title { color: var(--cream); }
.menu-section .section-desc { color: rgba(251, 245, 235, 0.7); }
.menu-section .eyebrow { color: var(--flame); }
.menu-section .eyebrow::before { background: var(--flame); }

.menu-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.menu-categories { display: grid; gap: 40px; }
.menu-cat h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(251, 245, 235, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-cat h4 .meta {
  color: rgba(251, 245, 235, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: italic;
  text-transform: none;
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
}
.menu-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 17px;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
  gap: 8px;
}
.menu-items li .dot-line {
  flex: 1;
  border-bottom: 1px dotted rgba(251, 245, 235, 0.25);
  margin: 0 8px;
  transform: translateY(-4px);
  min-width: 16px;
}
.menu-items li .price {
  color: var(--flame);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.price-card {
  background: var(--paper);
  padding: 44px 36px;
  position: relative;
  border: 2px solid var(--ink);
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
}
.price-card.featured h3 { color: var(--cream); }
.price-card.featured .price-amount { color: var(--flame); }
.price-card.featured .price-suffix,
.price-card.featured .price-tagline { color: rgba(251, 245, 235, 0.7); }
.price-card.featured ul li { color: var(--cream); }
.price-card.featured ul li::before { color: var(--gold); }
.price-card.featured ul li { border-bottom-color: rgba(251, 245, 235, 0.1); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flame);
  color: var(--cream);
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.price-tagline {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 28px;
  font-style: italic;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount .currency {
  font-size: 28px;
  color: var(--slate);
}
.price-suffix {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 32px;
  font-weight: 500;
}
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
}
.price-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.price-card ul li::before {
  content: '✓';
  color: var(--flame);
  flex-shrink: 0;
  font-weight: 700;
}

.price-fineprint {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
}

/* Dual-tier pricing layout (adult / child side-by-side) */
.price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-tiers-single {
  grid-template-columns: 1fr;
  justify-items: center;
}
.price-tier {
  text-align: center;
  position: relative;
}
.price-tier + .price-tier::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.price-amount-lg {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}
.price-amount-lg .currency {
  font-size: 22px;
  color: var(--slate);
  font-family: var(--font-display);
}
.price-tier-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.3;
}
.price-card.featured .price-amount-lg { color: var(--flame); }
.price-card.featured .price-amount-lg .currency { color: rgba(251, 245, 235, 0.55); }
.price-card.featured .price-tier-label { color: rgba(251, 245, 235, 0.62); }
.price-card.featured .price-tiers { border-bottom-color: rgba(251, 245, 235, 0.12); }
.price-card.featured .price-tier + .price-tier::before { background: rgba(251, 245, 235, 0.12); }

.price-card h3 {
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

/* Homepage Menu section — package compare cards */
.package-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}
.package-compare-card {
  background: rgba(251, 245, 235, 0.05);
  border: 1px solid rgba(251, 245, 235, 0.18);
  padding: 18px 20px 20px;
  border-radius: 2px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.package-compare-card:hover {
  border-color: var(--flame);
  transform: translateY(-2px);
}
.package-compare-card-featured {
  border-color: var(--flame);
  background: rgba(233, 75, 31, 0.08);
}
.package-num {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.package-compare-card-featured .package-num { color: var(--ember); }
.package-compare-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.package-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 13px;
  color: rgba(251, 245, 235, 0.7);
  margin-bottom: 10px;
  align-items: baseline;
}
.package-prices strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-right: 2px;
}
.package-prices .dot-sep {
  color: var(--flame);
  font-weight: 700;
}
.package-compare-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251, 245, 235, 0.72);
}
.package-compare-card p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ============================================
   GOOGLE REVIEWS — verified social proof
   ============================================ */
.reviews-section { background: var(--cream); position: relative; }

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 40px;
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 32px 40px;
  margin-bottom: 28px;
  position: relative;
}
.reviews-hero-left {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 40px;
}
.reviews-stars-big {
  color: var(--flame);
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 6px;
}
.reviews-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.reviews-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.reviews-hero-right {
  display: grid;
  gap: 18px;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-google-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC04 66%, #EA4335 100%);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.reviews-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.reviews-badge-text span {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.reviews-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-actions .btn { padding: 12px 22px; font-size: 12px; }

/* Widget slot + placeholder */
.reviews-widget {
  margin-bottom: 40px;
}
.reviews-widget-placeholder {
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  padding: 32px 28px;
  text-align: center;
  color: var(--slate);
}
.placeholder-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--flame);
  color: var(--cream);
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.reviews-widget-placeholder h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.reviews-widget-placeholder p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 8px;
}
.reviews-widget-placeholder code {
  font-family: var(--font-mono), 'Courier New', monospace;
  font-size: 12px;
  background: var(--cream-deep);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--charcoal);
}
.placeholder-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.7;
  margin-top: 10px;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 24px 20px;
  transition: all 0.25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--flame);
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--flame);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  letter-spacing: -0.01em;
}
.review-card-head > div { flex: 1; min-width: 0; }
.review-card-head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.review-meta {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.review-platform {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC04 66%, #EA4335 100%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}
.review-card .testimonial-stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.review-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.reviews-footer {
  text-align: center;
  padding-top: 8px;
}
.reviews-footer-link {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
  border-bottom: 2px solid var(--flame);
  padding-bottom: 3px;
}
.reviews-footer-link span {
  color: var(--flame);
  font-size: 16px;
  transition: transform 0.25s ease;
}
.reviews-footer-link:hover { color: var(--flame); }
.reviews-footer-link:hover span { transform: translate(3px, -3px); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--flame);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--flame);
  line-height: 1;
  font-style: italic;
  opacity: 0.3;
}
.testimonial-stars {
  color: var(--flame);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.testimonial-author {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author small {
  font-size: 12px;
  color: var(--slate);
  font-style: italic;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-section { background: var(--cream-deep); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.loc-card {
  display: block;
  background: var(--cream);
  padding: 24px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s ease;
}
.loc-card:hover {
  background: var(--flame);
  color: var(--cream);
  border-color: var(--flame);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.loc-card:hover .loc-state { color: var(--cream); }
.loc-card:hover .loc-cities { color: rgba(251, 245, 235, 0.85); }
.loc-card:hover .loc-arrow { color: var(--cream); transform: translate(4px, -4px); }
.loc-card:hover .loc-line { background: rgba(251, 245, 235, 0.3); }

.loc-state {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.loc-line {
  width: 24px;
  height: 2px;
  background: var(--flame);
  margin: 10px 0;
  transition: background 0.3s ease;
}
.loc-cities {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
}
.loc-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--flame);
  transition: all 0.3s ease;
}

/* ============================================
   BOOKING
   ============================================ */
.book-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(233, 75, 31, 0.25), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 162, 76, 0.15), transparent 50%);
  pointer-events: none;
}
.book-section .container { position: relative; z-index: 1; }
.book-section .section-title { color: var(--cream); }
.book-section .section-desc { color: rgba(251, 245, 235, 0.7); }
.book-section .eyebrow { color: var(--gold); }
.book-section .eyebrow::before { background: var(--gold); }

.book-frame {
  background: var(--cream);
  max-width: 920px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.book-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.book-section .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}
.book-section .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
.faq-item:hover { border-color: var(--flame); }
.faq-item.open { border-color: var(--flame); border-left-width: 3px; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--ink);
}
.faq-item.open .faq-icon {
  background: var(--flame);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 28px 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(251, 245, 235, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo .meta { color: rgba(251, 245, 235, 0.5); }
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--flame); }
.footer-bottom {
  border-top: 1px solid rgba(251, 245, 235, 0.1);
  padding-top: 28px;
  font-size: 12px;
  color: rgba(251, 245, 235, 0.4);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-credit {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--flame); }
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   STATE PAGE
   ============================================ */
.state-hero {
  position: relative;
  padding: 70px 0 90px;
  background: var(--cream);
  overflow: hidden;
}
.state-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 100%;
  background: var(--flame);
  transform: skewX(-12deg);
  z-index: 0;
}
.state-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--slate);
}
.breadcrumb a { color: var(--charcoal); }
.breadcrumb a:hover { color: var(--flame); }
.breadcrumb .sep { color: var(--line-strong); margin: 0 12px; }

.state-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.state-title .flame-word { color: var(--flame); font-style: italic; }
.state-title .underline {
  position: relative;
  display: inline-block;
}
.state-title .underline::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.45;
}
.state-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 540px;
}
.state-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.state-cities {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cities-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
  display: block;
}
.cities-list {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
}
.cities-list span:not(:last-child)::after {
  content: ' · ';
  color: var(--flame);
  margin: 0 6px;
}
.state-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.state-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}

/* ============================================
   NAV MEGA-MENU — Locations dropdown
   ============================================ */
.has-mega { position: relative; }
.mega-trigger {
  cursor: pointer;
}
.mega-arrow {
  display: inline-block;
  font-size: 9px;
  margin-left: 5px;
  transform: translateY(-1px);
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.has-mega:hover .mega-arrow,
.has-mega:focus-within .mega-arrow,
.has-mega.open .mega-arrow { transform: translateY(-1px) rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin-top: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 24px 32px 22px;
  width: 920px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
  z-index: 200;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 16px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-mega:hover .mega-trigger,
.has-mega:focus-within .mega-trigger { color: var(--flame); }
.has-mega:hover .mega-trigger::after,
.has-mega:focus-within .mega-trigger::after { width: 100%; }

.mega-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 36px;
}
.mega-col h6.mega-region {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mega-col ul {
  list-style: none;
  display: grid;
  gap: 6px;
}
.mega-col ul li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  display: block;
  padding: 2px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mega-col ul li a:hover {
  color: var(--flame);
  transform: translateX(3px);
}
.mega-col ul li a::after { display: none; }
.mega-col ul li a.active {
  color: var(--flame);
  font-weight: 700;
}

/* Metros sub-section inside mega menu */
.mega-metros {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mega-metros-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 16px;
}
.mega-metros-list li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mega-metros-list li a::before {
  content: '★';
  color: var(--flame);
  font-size: 9px;
  opacity: 0.6;
}
.mega-metros-list li a:hover {
  color: var(--flame);
  transform: translateX(3px);
}
.mega-metros-list li a::after { display: none; }

/* ============================================
   LOCATIONS — all-regions text grid
   ============================================ */
.locations-all {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.locations-all-header {
  text-align: center;
  margin-bottom: 40px;
}
.locations-all-header h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.locations-all-sub {
  font-size: 14px;
  color: var(--slate);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Metro chip grid */
.metros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metro-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.metro-chip::before {
  content: '★';
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--flame);
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.metro-chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.metro-chip:hover::before {
  color: var(--gold);
  transform: rotate(72deg);
  opacity: 1;
}
.metro-chip-label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.metro-chip:hover .metro-chip-label { color: var(--cream); }
.metro-chip-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.metro-chip:hover .metro-chip-meta { color: var(--ember); }

/* Metro page hero — covers callout */
.metro-covers {
  margin-top: 18px;
  font-size: 13px;
  color: var(--slate);
}
.metro-covers strong {
  color: var(--flame);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.region-col {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px 24px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.region-col:hover {
  border-color: var(--flame);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.region-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.region-col ul {
  list-style: none;
  display: grid;
  gap: 6px;
}
.region-col ul li a {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.region-col ul li a::after {
  content: '↗';
  font-size: 12px;
  color: var(--flame);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.25s ease;
}
.region-col ul li a:hover {
  color: var(--flame);
  transform: translateX(3px);
}
.region-col ul li a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   GALLERY — masonry of real event photos
   ============================================ */
.gallery-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: var(--flame);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.gallery-section .container { position: relative; z-index: 1; }
.gallery-section .section-title { color: var(--cream); }
.gallery-section .section-desc { color: rgba(251, 245, 235, 0.72); }
.gallery-section .eyebrow { color: var(--ember); }
.gallery-section .eyebrow::before { background: var(--ember); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 10px;
}
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(251, 245, 235, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21, 17, 14, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 0.35; }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 24px;
  text-align: center;
}
.gallery-cta-note {
  font-size: 14px;
  color: rgba(251, 245, 235, 0.78);
  letter-spacing: 0.01em;
  max-width: 380px;
}
.gallery-cta-note strong {
  color: var(--ember);
  font-weight: 700;
}

/* ============================================
   HERO PROMO STRIP — discount pills in hero
   ============================================ */
.hero-promo-strip {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
}
.hero-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(233, 75, 31, 0.08);
  border: 1px solid rgba(233, 75, 31, 0.28);
  font-size: 13px;
  color: var(--charcoal);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-promo-pill:hover {
  background: rgba(233, 75, 31, 0.15);
  border-color: var(--flame);
  transform: translateX(3px);
}
.hero-promo-pill::after { display: none; }
.hero-promo-emoji {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}
.hero-promo-text {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.hero-promo-text strong {
  color: var(--flame);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-promo-code {
  font-family: var(--font-mono), 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--cream-deep);
  padding: 4px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================
   URGENCY PILL — hero CTA reinforcement
   ============================================ */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 16px;
  background: rgba(233, 75, 31, 0.08);
  border: 1px solid rgba(233, 75, 31, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.urgency-pill strong {
  color: var(--flame);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.urgency-pill .sep {
  color: rgba(233, 75, 31, 0.4);
}
.urgency-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 0 rgba(233, 75, 31, 0.6);
  animation: urgency-pulse 1.8s ease infinite;
}
@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 75, 31, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(233, 75, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 75, 31, 0); }
}

/* ============================================
   CONVERSION RIBBON — above booking
   ============================================ */
.conv-ribbon {
  background: var(--flame);
  color: var(--cream);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.conv-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--flame-deep);
}
.conv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
}
.conv-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.conv-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(251, 245, 235, 0.25);
}
.conv-item strong {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
}
.conv-item span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(251, 245, 235, 0.85);
}
.conv-item-urgent strong { color: var(--gold); }

/* ============================================
   OCCASION PILLS — "perfect for" strip
   ============================================ */
.occasions-pills-section {
  background: var(--cream-deep);
}
.occasions-pills {
  margin-top: 24px;
}
.occasions-pills.occasions-pills-centered {
  text-align: center;
  margin: 0 auto;
  max-width: 1000px;
}
.occasions-pills-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
  text-align: center;
}
.occasion-pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.occasion-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.occasion-pill::before {
  content: '★';
  color: var(--flame);
  font-size: 9px;
  opacity: 0.7;
}
.occasion-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.occasion-pill:hover::before { color: var(--gold); opacity: 1; }

/* ============================================
   VIDEO STRIP — live cooking band
   ============================================ */
.video-strip {
  padding: 0 0 40px;
  background: var(--cream);
}
.video-wrap {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(21, 17, 14, 0.78) 0%, rgba(21, 17, 14, 0.45) 50%, rgba(21, 17, 14, 0.15) 100%);
  z-index: 1;
}
.video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 64px;
  color: var(--cream);
  max-width: 640px;
}
.video-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  margin: 18px 0 16px;
  letter-spacing: -0.02em;
}
.video-title .flame-word { color: var(--ember); font-style: italic; }
.video-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(251, 245, 235, 0.85);
  margin-bottom: 28px;
  max-width: 460px;
}
.eyebrow-light { color: var(--gold); }
.eyebrow-light::before { background: var(--gold); }

/* ============================================
   MENU EXTRAS — "every package includes" + fineprint
   ============================================ */
.menu-includes {
  margin-top: 36px;
  padding: 24px 26px;
  border: 1px dashed rgba(251, 245, 235, 0.2);
  background: rgba(251, 245, 235, 0.03);
}
.menu-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.menu-includes ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.menu-includes ul li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251, 245, 235, 0.88);
  padding-left: 20px;
  position: relative;
}
.menu-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flame);
  font-weight: 700;
}
.menu-fineprint {
  margin-top: 14px;
  font-size: 12px;
  font-style: italic;
  color: rgba(251, 245, 235, 0.55);
  line-height: 1.5;
}

/* ============================================
   PROMOTIONS — two-up save cards
   ============================================ */
.promo-section { background: var(--cream-deep); }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.promo-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 28px 26px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--flame);
  border-radius: 50%;
  opacity: 0.08;
  transition: transform 0.5s ease;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-card:hover::before { transform: scale(1.4); }
.promo-card-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.promo-card-dark::before { background: var(--gold); opacity: 0.18; }
.promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--cream);
  margin-bottom: 24px;
}
.promo-card-dark .promo-tag {
  background: var(--gold);
  color: var(--ink);
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.promo-card-dark .promo-title { color: var(--cream); }
.promo-title .flame-word { color: var(--flame); font-style: italic; }
.promo-card-dark .promo-title .flame-word { color: var(--ember); }
.promo-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 28px;
  max-width: 360px;
}
.promo-card-dark .promo-desc { color: rgba(251, 245, 235, 0.75); }
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px dashed var(--line-strong);
  background: var(--cream-deep);
  position: relative;
  z-index: 1;
}
.promo-card-dark .promo-code {
  background: rgba(251, 245, 235, 0.06);
  border-color: rgba(251, 245, 235, 0.2);
}
.promo-code-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.promo-card-dark .promo-code-label { color: rgba(251, 245, 235, 0.55); }
.promo-code-val {
  font-family: var(--font-mono), 'Courier New', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--flame);
}

/* ============================================
   LOCATIONS — photo cards
   ============================================ */
.locations-grid-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.loc-card-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.loc-card-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.loc-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.loc-card-photo:hover img { transform: scale(1.06); }
.loc-card-photo .loc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 17, 14, 0.1) 40%, rgba(21, 17, 14, 0.9) 100%);
  z-index: 1;
}
.loc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 28px;
  z-index: 2;
  color: var(--cream);
}
.loc-info .loc-state {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.loc-info .loc-cities {
  font-size: 12px;
  color: rgba(251, 245, 235, 0.85);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.loc-info .loc-arrow {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 22px;
  color: var(--cream);
  background: var(--flame);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.loc-card-photo:hover .loc-info .loc-arrow { transform: translate(3px, -3px); }
.locations-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
}

/* ============================================
   BEFORE YOUR EVENT — prep + policies + payment
   ============================================ */
.before-event-section { background: var(--cream-deep); }

.prepare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 56px;
}
.prepare-col {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 30px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prepare-col:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prepare-col-we { border-top: 4px solid var(--flame); }
.prepare-col-you { border-top: 4px solid var(--gold); }
.prepare-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.prepare-col-we .prepare-label { color: var(--flame); }
.prepare-col-you .prepare-label { color: var(--copper); }
.prepare-col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}
.prepare-col ul li {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.35;
  padding-left: 26px;
  position: relative;
}
.prepare-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flame);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
}
.prepare-col-you ul li::before { color: var(--copper); }

.policies-block { max-width: 980px; margin: 0 auto; }
.policies-block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.policy-block {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.policy-block:hover { border-color: var(--flame); transform: translateY(-2px); }
.policy-block h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.policy-block p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
}

.prepare-notes {
  background: var(--ink);
  color: rgba(251, 245, 235, 0.88);
  padding: 24px 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.prepare-notes p { margin: 0 0 6px; }
.prepare-notes p:last-child { margin-bottom: 0; }
.prepare-notes .pet-note {
  color: var(--gold);
  font-weight: 600;
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(251, 245, 235, 0.12);
}

/* ============================================
   PRICING GRID — 2-card variant (no sushi)
   ============================================ */
.pricing-grid.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
  margin: 0 auto;
}

/* ============================================
   POLICIES — fine print blocks
   ============================================ */
.policies-section { background: var(--cream); }
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.policy {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.policy:hover {
  border-color: var(--flame);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.policy-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--flame);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.policy h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.policy p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}

/* ============================================
   MENU POSTER BLOCK — integrated thumbnail in Menu section
   ============================================ */
.menu-poster-block {
  margin-top: 36px;
  padding: 22px 22px 18px;
  border: 1px dashed rgba(251, 245, 235, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.menu-poster-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-poster-block .poster-card-link {
  max-width: 200px;
  width: 100%;
  margin: 0;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.menu-poster-block .poster-card-link img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}
.menu-poster-block .poster-card-link:hover img { transform: scale(1.04); }
.menu-poster-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame);
  transition: color 0.2s ease, transform 0.2s ease;
}
.menu-poster-cta:hover { color: var(--ember); transform: translateX(3px); }
.menu-poster-cta::after { display: none; }

/* ============================================
   POSTER PRICE-CARD + LIGHTBOX
   ============================================ */
.price-card-poster {
  display: flex;
  flex-direction: column;
}
.price-card-poster .poster-card-link {
  display: block;
  position: relative;
  margin: 18px auto 22px;
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  cursor: zoom-in;
  flex: 1 1 auto;
  background: var(--cream-deep);
}
.price-card-poster .poster-card-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.price-card-poster .poster-card-link:hover img { transform: scale(1.05); }
.poster-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(21, 17, 14, 0.62);
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.poster-card-link:hover .poster-card-overlay,
.poster-card-link:focus-visible .poster-card-overlay { opacity: 1; }
.poster-card-zoom-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
}
.poster-card-zoom-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Lightbox — pure CSS via :target */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  padding: 28px 20px;
}
.lightbox:target {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
  position: absolute;
  top: -52px;
  right: -2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  background: var(--flame);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-download:hover {
  background: var(--flame-deep);
  transform: translateY(-2px);
}
.lightbox-close-text {
  color: rgba(251, 245, 235, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.2s ease;
}
.lightbox-close-text:hover { color: var(--cream); }
body:has(.lightbox:target) { overflow: hidden; }

/* ============================================
   THANK-YOU PAGE — booking confirmation
   ============================================ */
.thank-you-hero {
  background: var(--cream);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
}
.thank-you-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.thank-you-check {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-hero .eyebrow {
  justify-content: center;
}
.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 22px;
}
.thank-you-title .flame-word {
  color: var(--flame);
  font-style: italic;
}
.thank-you-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 580px;
  margin: 0 auto;
}

.thank-you-steps-section {
  background: var(--cream-deep);
  padding: 80px 0;
}
.thank-you-steps {
  list-style: none;
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}
.thank-you-step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.thank-you-step:hover {
  border-color: var(--flame);
  transform: translateY(-2px);
}
.thank-you-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--flame);
  letter-spacing: -0.03em;
  font-weight: 400;
}
.thank-you-step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.thank-you-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}
.thank-you-step-content p + p { margin-top: 12px; }
.thank-you-step-content strong { color: var(--ink); font-weight: 700; }
.thank-you-step-content a { color: var(--flame); border-bottom: 1px dashed var(--flame); }
.thank-you-step-content a:hover { color: var(--flame-deep); }

.thank-you-callout {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--cream-deep);
  border-left: 3px solid var(--flame);
}
.thank-you-callout-label {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 8px !important;
}
.thank-you-callout-body {
  font-family: var(--font-display);
  font-size: 16px !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
}
.thank-you-callout-body strong { color: var(--ink); }

.thank-you-cta-section {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.thank-you-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(233, 75, 31, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(212, 162, 76, 0.14), transparent 55%);
  pointer-events: none;
}
.thank-you-cta-section .container-narrow { position: relative; z-index: 1; }
.thank-you-cta-section .section-title { color: var(--cream); }
.thank-you-cta-section .section-desc { color: rgba(251, 245, 235, 0.7); }
.thank-you-cta-section .eyebrow { color: var(--gold); }
.thank-you-cta-section .eyebrow::before { background: var(--gold); }
.thank-you-cta-section .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}
.thank-you-cta-section .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}
.thank-you-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .thank-you-hero { padding: 56px 0 36px; }
  .thank-you-title { font-size: 38px; }
  .thank-you-steps-section { padding: 56px 0; }
  .thank-you-step { grid-template-columns: 1fr; gap: 8px; padding: 24px 22px; }
  .thank-you-step-num { font-size: 36px; }
  .thank-you-cta-section { padding: 48px 0; }
  .thank-you-cta .btn { width: 100%; }
}

/* ============================================
   LOCAL HOOK + ZIP LIST (city pages)
   ============================================ */
.local-hook {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream-deep);
  border-left: 3px solid var(--flame);
  padding: 14px 18px;
  margin: 20px 0 28px;
  max-width: 560px;
  font-style: italic;
}
.zip-list {
  font-family: var(--font-mono), 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .local-hook {
    background: rgba(251, 245, 235, 0.10);
    color: var(--cream);
    border-left-color: var(--ember);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .zip-list {
    color: rgba(251, 245, 235, 0.75);
    border-top-color: rgba(251, 245, 235, 0.20);
  }
}

/* ============================================
   STICKY MOBILE CTA BAR — fixed bottom action bar
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(212, 162, 76, 0.3);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.22);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta-bar a {
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}
.mobile-cta-bar a:hover { opacity: 0.85; }
.mobile-cta-bar a::after { display: none; }
.mobile-cta-call,
.mobile-cta-text {
  border-right: 1px solid rgba(251, 245, 235, 0.12);
}
.mobile-cta-book {
  background: var(--flame);
  color: var(--cream) !important;
}
.mobile-cta-bar a span {
  font-size: 16px;
  letter-spacing: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* === Hero video becomes a full-bleed background on mobile === */
  .hero,
  .state-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    padding: 0;
  }
  .hero-visual,
  .state-hero-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 0;
    aspect-ratio: unset;
    margin: 0;
    background: var(--ink);
  }
  .hero-video,
  .state-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: none;
  }
  .hero-visual::after,
  .state-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(21, 17, 14, 0.55) 0%,
      rgba(21, 17, 14, 0.72) 65%,
      rgba(21, 17, 14, 0.88) 100%);
    pointer-events: none;
  }
  .hero-mute-toggle,
  .hero-sticker { display: none; }

  /* Lift the text grid above the background video */
  .hero-grid,
  .state-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 56px 0 48px;
  }
  .hero-left,
  .state-hero-grid > div:first-child {
    position: relative;
    z-index: 2;
    color: var(--cream);
  }
  .hero-title,
  .state-title { color: var(--cream); }
  .hero-title .underline::after,
  .state-title .underline::after {
    background: var(--ember);
    opacity: 0.6;
  }
  .hero-sub,
  .state-sub { color: rgba(251, 245, 235, 0.92); }
  .hero-tag {
    background: rgba(251, 245, 235, 0.15);
    color: var(--cream);
    backdrop-filter: blur(6px);
  }
  .breadcrumb,
  .breadcrumb a {
    color: rgba(251, 245, 235, 0.85);
  }
  .breadcrumb .sep { color: rgba(251, 245, 235, 0.35); }
  .hero-meta {
    border-top-color: rgba(251, 245, 235, 0.25);
  }
  .hero-meta .meta-item strong,
  .hero-meta .meta-item .label,
  .state-cities .cities-label,
  .cities-list { color: var(--cream); }
  .hero-meta .meta-item .label { color: rgba(251, 245, 235, 0.7); }
  .urgency-pill {
    background: rgba(233, 75, 31, 0.22);
    border-color: rgba(233, 75, 31, 0.55);
    color: var(--cream);
    backdrop-filter: blur(6px);
  }
  .hero-promo-strip { max-width: none; }
  .hero-promo-pill {
    background: rgba(233, 75, 31, 0.18);
    border-color: rgba(233, 75, 31, 0.5);
    color: var(--cream);
    backdrop-filter: blur(6px);
  }
  .hero-promo-text strong { color: var(--ember); }
  .hero-promo-code {
    background: rgba(251, 245, 235, 0.16);
    color: var(--cream);
  }
  .state-cities { border-top-color: rgba(251, 245, 235, 0.2); }
  .btn-outline {
    border-color: var(--cream);
    color: var(--cream);
  }
  .btn-outline:hover {
    background: var(--cream);
    color: var(--ink);
  }

  /* End of hero-video mobile section */

  .hero-grid, .state-hero-grid, .menu-layout { gap: 60px; }
  .menu-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero::before, .state-hero::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-item:nth-child(2)::after { display: none; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: 1fr; gap: 24px; max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-gallery { grid-auto-rows: 160px; gap: 12px; }
  .feat-1 { grid-column: span 12; grid-row: span 3; }
  .feat-2, .feat-3 { grid-column: span 6; grid-row: span 2; }
  .feat-4, .feat-5, .feat-6 { grid-column: span 4; grid-row: span 2; }
  .hero-sticker-1 { left: -16px; }
  .hero-sticker-2 { right: -8px; }
  .video-wrap { aspect-ratio: 4/5; }
  .video-content { padding: 36px 32px; max-width: none; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 540px; margin: 0 auto; }
  .locations-grid-photo { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .metros-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .conv-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .conv-item:nth-child(2)::after { display: none; }
  .reviews-hero { grid-template-columns: 1fr; padding: 28px; gap: 28px; text-align: center; }
  .reviews-hero-left { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 22px; }
  .reviews-actions { justify-content: center; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .prepare-grid { grid-template-columns: 1fr; gap: 16px; max-width: 500px; }
  .policies-block-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-grid.pricing-grid-2 { grid-template-columns: 1fr; max-width: 460px; }
  .package-compare { grid-template-columns: 1fr; gap: 12px; }
  .price-amount-lg { font-size: 44px; }
  .price-amount-lg .currency { font-size: 18px; }

  /* Sticky mobile CTA bar — show + pad body */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 60px; }
  body.nav-open { padding-bottom: 0; }
  body.nav-open .mobile-cta-bar { display: none; }

  /* Mobile nav drawer */
  .nav-toggle { display: block; order: 3; }
  .nav-wrap { gap: 16px; }
  .nav-actions { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4px 0 18px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 150;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 0 28px;
    display: block;
  }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .nav-links > li > a::after { display: none; }
  .mobile-cta {
    padding: 16px 28px 4px !important;
    border-bottom: 0 !important;
  }
  .mobile-cta a {
    display: block !important;
    text-align: center;
    padding: 16px 22px !important;
    width: 100%;
    background: var(--flame);
    color: var(--cream) !important;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--flame);
  }
  .has-mega .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    width: auto;
    max-width: none;
    padding: 0 0 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    margin: 0;
    display: none;
  }
  .has-mega.open .mega-menu { display: block; }
  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu { transform: none; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .mega-metros-list { grid-template-columns: repeat(2, 1fr); gap: 6px 16px; }
  .has-mega .mega-section-label { margin-top: 6px; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-phone span { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 48px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 36px; }
  .state-title { font-size: 44px; }
  .menu-items { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-ctas .btn, .state-ctas .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-item::after { display: none !important; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .feat-1, .feat-2, .feat-3, .feat-4, .feat-5, .feat-6 {
    grid-column: span 12; grid-row: span 2;
  }
  .price-amount { font-size: 60px; }
  .hero-sticker-1, .hero-sticker-2 { transform: scale(0.85); }
  .hero-sticker-1 { left: -8px; top: 8px; }
  .hero-sticker-2 { right: 0; bottom: 16px; }
  .video-wrap { aspect-ratio: 3/4; }
  .video-content { padding: 28px 22px; }
  .video-title { font-size: 36px; }
  .locations-grid-photo { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .policies-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .promo-card { padding: 20px 16px; }
  .menu-poster-block .poster-card-link { display: none; }
  .menu-poster-block { margin-top: 16px; }
  .promo-code { display: flex; flex-wrap: wrap; gap: 4px 8px; padding: 8px 10px; }
  .promo-code-val { font-size: 12px; letter-spacing: 0; word-break: break-all; }
  .promo-code-label { font-size: 10px; }
  .promo-card .promo-tag { font-size: 11px; }
  .menu-layout { gap: 40px; }
  .nav-links { top: 70px; }
  .mega-grid { grid-template-columns: 1fr; gap: 14px; }
  .mega-metros-list { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .metros-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 8px; }
  .gallery-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 24px; }
  .reviews-num { font-size: 56px; }
  .conv-grid { grid-template-columns: 1fr; gap: 14px; }
  .conv-item:not(:last-child)::after {
    right: 0; left: 0; top: auto; bottom: -7px;
    width: 40px; height: 1px;
    margin: 0 auto;
  }
  .occasion-pill { font-size: 13px; padding: 8px 14px; }
  .urgency-pill { font-size: 11px; padding: 8px 12px; }

  /* --- Mobile HERO cleanup (metro / state / city / county pages) --- */
  /* Hide the outline "CALL" button in hero — sticky bottom bar already has Call */
  .state-hero .state-ctas .btn-outline,
  .hero .hero-ctas .btn-outline { display: none; }

  /* Compact promo pills → 2 cols side by side, hide inline code chip */
  .state-hero .hero-promo-strip,
  .hero .hero-promo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }
  .state-hero .hero-promo-pill,
  .hero .hero-promo-pill {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
    gap: 4px;
    min-height: 0;
  }
  .state-hero .hero-promo-emoji,
  .hero .hero-promo-emoji { font-size: 18px; }
  .state-hero .hero-promo-text,
  .hero .hero-promo-text { font-size: 11px; line-height: 1.35; }
  .state-hero .hero-promo-text strong,
  .hero .hero-promo-text strong { font-size: 12px; display: block; }
  /* Hide the code chip on mobile — offers page has full detail */
  .state-hero .hero-promo-code,
  .hero .hero-promo-code { display: none; }

  /* Urgency pill smaller & tighter margin */
  .state-hero .urgency-pill,
  .hero .urgency-pill {
    padding: 7px 12px;
    font-size: 11px;
    margin-top: 12px;
  }

  /* Serving-cities: no big border-top, smaller text, tighter */
  .state-hero .state-cities {
    border-top: none;
    padding-top: 8px;
    margin-top: 20px;
  }
  .state-hero .state-cities .cities-label {
    font-size: 10px;
    margin-bottom: 6px;
    opacity: 0.75;
  }
  .state-hero .state-cities .cities-list {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }
  .state-hero .state-cities .cities-list span:not(:last-child)::after {
    color: rgba(233, 75, 31, 0.75);
    margin: 0 6px;
  }
}

/* ============================================
   MENU V2 — hibachioncall-style package cards + emoji category grid
   Used on metro pages currently; will roll out to state/city/county later.
   ============================================ */
.menu-section-v2 { background: var(--paper); }
.menu-section-v2 .container > .section-header { margin-bottom: 48px; }

/* Two big package cards */
.pkg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pkg-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.pkg-card:hover {
  border-color: var(--flame);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pkg-card-featured {
  background: linear-gradient(180deg, var(--ink) 0%, #1a1611 100%);
  color: var(--cream);
  border-color: var(--ink);
}
.pkg-card-featured:hover { border-color: var(--flame); }

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flame);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(233, 75, 31, 0.3);
}

.pkg-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 6px;
}
.pkg-card-featured .pkg-eyebrow { color: rgba(251, 245, 235, 0.55); }

.pkg-name {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pkg-card-featured .pkg-name { color: var(--cream); }

.pkg-price-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.pkg-card-featured .pkg-price-block {
  border-color: rgba(251, 245, 235, 0.15);
}
.pkg-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pkg-price-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: var(--flame);
  letter-spacing: -0.03em;
}
.pkg-price-unit {
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
}
.pkg-card-featured .pkg-price-unit { color: rgba(251, 245, 235, 0.85); }
.pkg-price-child {
  font-size: 16px;
  color: var(--slate);
  font-weight: 500;
}
.pkg-card-featured .pkg-price-child { color: rgba(251, 245, 235, 0.65); }

.pkg-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}
.pkg-card-featured .pkg-desc { color: rgba(251, 245, 235, 0.85); }
.pkg-desc strong { color: var(--ink); font-weight: 700; }
.pkg-card-featured .pkg-desc strong { color: var(--gold); }

/* "Every package includes" callout — full-width strip */
.pkg-includes-callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--flame);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.pkg-includes-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pkg-includes-header h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.pkg-includes-icon {
  font-size: 28px;
  line-height: 1;
}
.pkg-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
}
.pkg-includes-list li {
  font-size: 16px;
  color: var(--charcoal);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.pkg-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flame);
  font-weight: 700;
}

/* Menu breakdown grid — emoji-anchored category cards */
.menu-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.menu-card:hover {
  border-color: var(--flame);
  transform: translateY(-2px);
}
.menu-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.menu-card-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}
.menu-card-head h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 3px;
  line-height: 1.1;
}
.menu-card-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
}
.menu-card .menu-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block; /* override the base .menu-items 2-column grid — cards are narrow */
  grid-template-columns: none;
  gap: 0;
}
.menu-card .menu-items li {
  display: flex;
  align-items: baseline;
  padding: 9px 0;
  gap: 12px;
  font-size: 16px;
  color: var(--charcoal);
  border-bottom: 1px dotted var(--line);
}
.menu-card .menu-items li:last-child { border-bottom: none; }
.menu-card .menu-item-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.45;
}
.menu-card .menu-items .dot-line {
  display: none; /* dot-line not used in card layout (space-tight); border-bottom on li acts as separator */
}
.menu-card .menu-items .price {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--flame);
  font-size: 16px;
  white-space: nowrap;
  align-self: baseline;
}
.menu-card .menu-fineprint {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  font-style: italic;
}

/* Menu footer: poster + fineprint side-by-side */
.menu-footer-row {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.menu-footer-row .menu-poster-block {
  margin: 0;
}
.menu-footer-row .price-fineprint {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .pkg-row { grid-template-columns: 1fr; gap: 32px; }
  .pkg-card { padding: 32px 24px; }
  .pkg-name { font-size: 40px; }
  .pkg-price-num { font-size: 68px; }
  .pkg-price-unit { font-size: 20px; }
  .pkg-price-child { font-size: 17px; }
  .pkg-desc { font-size: 17px; line-height: 1.65; }

  .pkg-includes-callout { padding: 22px 22px; }
  .pkg-includes-header h4 { font-size: 22px; }
  .pkg-includes-icon { font-size: 26px; }
  .pkg-includes-list { grid-template-columns: 1fr; gap: 10px; }
  .pkg-includes-list li { font-size: 17px; line-height: 1.55; }

  .menu-breakdown { grid-template-columns: 1fr; gap: 16px; }
  .menu-card { padding: 22px 22px; }
  .menu-card-icon { font-size: 32px; }
  .menu-card-head h4 { font-size: 22px; }
  .menu-card-meta { font-size: 12px; }
  .menu-card .menu-items li { font-size: 17px; padding: 11px 0; }
  .menu-card .menu-items .price { font-size: 17px; }
  .menu-card .menu-fineprint { font-size: 14px; }

  .menu-footer-row { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .menu-footer-row .menu-poster-block { margin: 0 auto; max-width: 260px; }
  .menu-footer-row .price-fineprint { font-size: 15px; line-height: 1.75; text-align: left; }
}

/* ============================================
   INLINE SVG ICONS — Lucide-style, inherit size from parent font-size
   Base: width/height = 1em, so SVG matches surrounding text height.
   Original emoji font-size rules on each context still apply.
   ============================================ */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}
/* Two-tone flame: outer = flame color, inner = gold. Stroke disabled. */
.ico-flame { stroke: none; }
.ico-flame .flame-outer { fill: var(--flame, #E94B1F); }
.ico-flame .flame-inner { fill: var(--gold, #FBC53D); }

/* Star icon uses filled polygon, disable stroke fill mismatch */
/* handled inline via fill="currentColor" on the SVG */

/* --- Contextual color/tweaks (size handled by parent font-size via 1em) --- */

/* Nav logo flame — inherits ~20px from .logo-flame's 0.72em */
.logo-flame .ico { vertical-align: -0.12em; margin: 0 1px; }

/* Menu category icons — parent .menu-card-icon has font-size: 30px (32px mobile) */
.menu-card-icon .ico,
.pkg-includes-icon .ico { color: var(--flame); vertical-align: -0.18em; }

/* Promo tag icons — parent .promo-tag has font-size: 11px, but we want icon slightly bigger */
.promo-tag-ico { display: inline-flex; align-items: center; margin-right: 5px; }
.promo-tag-ico .ico { width: 13px; height: 13px; }

/* Hero promo pill icons — parent .hero-promo-emoji has font-size: 17px, uses 1em */
.hero-promo-emoji { display: inline-flex; align-items: center; }
.hero-promo-emoji .ico { vertical-align: -0.18em; }

/* Mute toggle — parent .mute-icon has font-size: 16px, uses 1em */
.mute-icon .ico { color: var(--cream); vertical-align: -0.18em; }

/* Policy block header icons — parent h4 is 20px */
.policy-ico { display: inline-flex; margin-right: 8px; color: var(--flame); vertical-align: -0.2em; }
.policy-ico .ico { width: 20px; height: 20px; }

/* Inline paragraph icons (prepare notes, pet warning) — parent p is ~14px */
.inline-ico { display: inline-flex; margin-right: 6px; color: var(--flame); vertical-align: -0.28em; }
.inline-ico .ico { width: 16px; height: 16px; }
.pet-note .inline-ico { color: var(--ember, #E94B1F); }

/* Mobile CTA bar icons — parent .mobile-cta-bar a is 12px, but we want icons bigger */
.mobile-cta-bar .ico { width: 18px; height: 18px; margin-right: 5px; vertical-align: -0.32em; }

/* Poster expand icon — parent .poster-card-zoom-icon */
.poster-card-zoom-icon .ico { width: 24px; height: 24px; color: var(--cream); vertical-align: middle; }

/* ============================================
   SORO BLOG SECTION — container styling for the trysoro embed
   The widget itself brings its own styles; we just give it room + spacing
   ============================================ */
.soro-blog-section { background: var(--cream); }
.soro-blog-section .section-header { margin-bottom: 40px; }
#soro-blog {
  min-height: 200px;
  padding: 0;
}
#soro-blog:empty::before {
  content: 'Loading latest posts…';
  display: block;
  text-align: center;
  padding: 40px;
  color: var(--slate);
  font-size: 14px;
  font-style: italic;
}

/* ============================================
   IMAGE LIGHTBOX — click any .gallery-item to open
   Injected + toggled by JS in each page's script block
   ============================================ */
.image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(21, 17, 14, 0.94);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.image-lightbox.open {
  display: flex;
  animation: fadeIn 0.18s ease-out both;
}
.image-lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 245, 235, 0.15);
  color: var(--cream);
  border: 1px solid rgba(251, 245, 235, 0.35);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.image-lightbox-close:hover {
  background: rgba(251, 245, 235, 0.28);
  border-color: rgba(251, 245, 235, 0.55);
  transform: scale(1.06);
}
.image-lightbox-hint {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 245, 235, 0.55);
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@media (max-width: 768px) {
  .image-lightbox { padding: 12px; }
  .image-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .image-lightbox-hint { bottom: 12px; font-size: 10px; }
}

/* ============================================
   COUNTY PAGES — coverage chips + local hook + pricing glance
   ============================================ */
.pricing-glance-section { background: var(--paper); }
.pricing-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-glance-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pricing-glance-item:hover {
  border-color: var(--flame);
  transform: translateY(-2px);
}
.pricing-glance-item-flame {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.pricing-glance-item-flame .pricing-glance-num { color: var(--flame); }
.pricing-glance-item-flame .pricing-glance-note { color: rgba(251, 245, 235, 0.7); }
.pricing-glance-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-glance-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pricing-glance-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate);
}
@media (max-width: 1024px) {
  .pricing-glance-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pricing-glance-item { padding: 18px 12px; }
  .pricing-glance-num { font-size: 32px; }
  .pricing-glance-label { font-size: 10px; letter-spacing: 0.14em; }
  .pricing-glance-note { font-size: 12px; }
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto 32px;
}
.coverage-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.coverage-chip:hover {
  border-color: var(--flame);
  background: var(--cream-deep);
}
.coverage-meta {
  text-align: center;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.coverage-meta p { margin: 0 0 8px; }
.coverage-meta strong { color: var(--charcoal); font-weight: 700; }

.county-hook-block {
  background: var(--cream-deep);
  border-left: 4px solid var(--flame);
  padding: 32px 40px;
  border-radius: 2px;
}
.county-hook-block .eyebrow {
  color: var(--flame);
  margin-bottom: 16px;
  display: block;
}
.county-hook-text {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
@media (max-width: 1024px) {
  .coverage-grid { gap: 8px; }
  .coverage-chip { font-size: 13px; padding: 6px 12px; }
  .county-hook-block { padding: 22px 24px; }
  .county-hook-text { font-size: 17px; line-height: 1.6; }
}

/* ============================================
   PAGE HERO — text-only hero for top-level pages
   (menu, gallery, reviews, book, faq, how-it-works, etc.)
   Unlike .state-hero, this hero has no background image/video,
   so text must stay dark on mobile.
   ============================================ */
.page-hero {
  position: relative;
  padding: 70px 0 90px;
  background: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 100%;
  background: var(--flame);
  transform: skewX(-12deg);
  z-index: 0;
  opacity: 0.10;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb { color: var(--slate); margin-bottom: 24px; }
.page-hero .breadcrumb a { color: var(--charcoal); }
.page-hero .eyebrow { color: var(--flame); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.page-title .flame-word { color: var(--flame); font-style: italic; }
.page-title .underline {
  position: relative;
  display: inline-block;
}
.page-title .underline::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.45;
}

.page-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 32px;
  max-width: 640px;
}

.page-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .page-hero { padding: 40px 0 56px; }
  .page-hero::before { opacity: 0.08; width: 340px; right: -140px; }
  .page-title { font-size: clamp(34px, 8.5vw, 52px); margin: 12px 0 20px; }
  .page-sub { font-size: 16px; margin-bottom: 24px; }
  .page-ctas .btn { width: 100%; }
  .page-hero .breadcrumb { margin-bottom: 18px; font-size: 10px; }
}

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