/* ============================================
   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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.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(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  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;
}

/* ============================================
   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: 44px 40px;
  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);
}

/* ============================================
   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-grid, .state-hero-grid, .menu-layout { grid-template-columns: 1fr; gap: 60px; }
  .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: 1fr; 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: 32px 26px; }
  .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; }
}

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