/* =====================================================
   THE HIBACHI GUYZ — Elevated dark fire/ember system
   ===================================================== */

:root {
  /* Ink scale — warm-toned blacks */
  --ink-void:   #050402;
  --ink-deep:   #0a0703;
  --ink:        #0d0a06;
  --char:       #18130c;
  --ember:      #221a10;
  --ember-hi:   #2d2214;

  /* Copper accent (refined from raw amber) */
  --copper-deep:  #8a5a1f;
  --copper:       #c8893c;
  --copper-bright:#e6b56a;
  --copper-glow:  #f5d294;

  /* Smoldering red — sparing use */
  --red-ember: #a8341e;

  /* Bone / cream */
  --bone:       #ece1c3;
  --bone-dim:   #d2c39a;   /* was #9a8a68 — lifted for readability */
  --bone-faint: #ad9d77;   /* was #5d533f — lifted for readability */
  --bone-line:  rgba(236,225,195,0.10);

  /* Type */
  --f-display: 'Cinzel', 'Trajan Pro', serif;
  --f-body:    'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --f-mono:    'JetBrains Mono', 'Menlo', monospace;

  /* Layout */
  --nav-h: 80px;
  --rail:  clamp(1.5rem, 5vw, 5rem);
  --max-w: 1280px;
  --t-fast: 0.28s;
  --t-med:  0.55s;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink-deep);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
}

.label {
  font-family: var(--f-display);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.h-section {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--bone);
}

.h-sub {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  color: var(--bone);
}

.body-lg {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--bone-dim);
  font-weight: 300;
}

.body { font-size: 1rem; line-height: 1.75; color: var(--bone-dim); font-weight: 400; }

.mono-mini {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.italic { font-style: italic; }

/* ============================================
   ORNAMENTS
   ============================================ */
.flame-mark {
  width: 14px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  color: var(--copper);
  filter: drop-shadow(0 0 6px rgba(200,137,60,0.4));
}

.rule {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 280px;
  margin: 0 auto 2rem;
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper) 50%, transparent);
}
.rule-left { margin: 0 0 2rem; }
.rule-left::before { display: none; }

.serial {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--bone-faint);
  margin-right: 0.6rem;
}

/* ============================================
   NAV
   ============================================ */
nav.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--rail);
  background: rgba(10, 7, 3, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--bone-line);
}
nav.site-nav > .nav-brand { justify-self: start; }
nav.site-nav > .nav-links { justify-self: center; }
nav.site-nav > .btn,
nav.site-nav > .hamburger { justify-self: end; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-top {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.12em;
}
.nav-brand-bottom {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  color: var(--bone-faint);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2.6rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-fast);
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--bone);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform 0.22s var(--ease), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  color: var(--ink-deep);
  background: var(--copper);
  box-shadow: 0 0 0 1px rgba(200,137,60,0.4), 0 8px 30px rgba(200,137,60,0.18);
}
.btn-primary:hover {
  background: var(--copper-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(230,181,106,0.5), 0 14px 40px rgba(230,181,106,0.28);
}
.btn-ghost {
  color: var(--bone);
  background: transparent;
  border-color: rgba(236,225,195,0.18);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper-bright);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 0.7rem 1.4rem;
  font-size: 0.62rem;
}

/* ============================================
   PAGES
   ============================================ */
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.page.active { display: block; }
.page.fade-in { animation: pageIn var(--t-med) var(--ease) both; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--rail);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(168, 52, 30, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 137, 60, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 120% 90% at 50% 120%, rgba(10, 7, 3, 0.9) 0%, transparent 80%);
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(5,4,2,0.55) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(236,225,195,0.03) 1px, transparent 1px);
  background-size: 100px 100%;
  z-index: 0;
}
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -10px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--copper-glow);
  box-shadow: 0 0 6px 1px rgba(245,210,148,0.6);
  animation: riseEmber linear infinite;
}
@keyframes riseEmber {
  0%   { bottom: -10px; opacity: 0; transform: translateX(0) scale(0.6); }
  10%  { opacity: 1; }
  70%  { opacity: 0.7; }
  100% { bottom: 100vh; opacity: 0; transform: translateX(var(--drift)) scale(0.2); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-top-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s var(--ease) forwards;
}
.hero-top-meta::before,
.hero-top-meta::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper-deep));
}
.hero-top-meta::after {
  background: linear-gradient(to left, transparent, var(--copper-deep));
}
.hero-title {
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s var(--ease) forwards;
}
.hero-title .accent {
  color: var(--copper);
  font-style: italic;
  font-weight: 400;
  font-family: var(--f-body);
  font-size: 0.7em;
  display: block;
  letter-spacing: -0.005em;
  margin-top: 0.1em;
}
.hero-tagline {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--bone-dim);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s var(--ease) forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.8s var(--ease) forwards;
}
.hero-corners {
  position: absolute;
  inset: 2rem var(--rail);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.5s 1s forwards;
}
.hero-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--copper-deep);
}
.hero-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s 1.1s var(--ease) forwards;
}
.scroll-cue span {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================
   MARQUEE — premium hospitality stamps
   ============================================ */
.stamp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem var(--rail);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
  flex-wrap: wrap;
}
.stamp {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.stamp::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--copper);
  transform: rotate(45deg);
}

/* ============================================
   FEATURES (numbered cards)
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
}
.feature {
  position: relative;
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--bone-line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--t-fast);
}
.feature:last-child { border-right: none; }
.feature:hover { background: rgba(200,137,60,0.04); }
.feature::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature:hover::after { transform: scaleX(1); }

.feature-num {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--copper);
}
.feature-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1.3;
}
.feature-text {
  font-size: 0.96rem;
  color: var(--bone-dim);
  line-height: 1.7;
}

/* ============================================
   SECTION SHELL
   ============================================ */
.section {
  padding: 7rem var(--rail);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-tight { padding: 4rem var(--rail); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--char);
}
.about-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-frame .ph {
  position: absolute;
  inset: 0;
}
.about-frame .corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--copper);
  z-index: 2;
}
.about-frame .corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.about-frame .corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.about-frame .corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.about-frame .corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }
.about-offset {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  aspect-ratio: 1/1.2;
  border: 1px solid var(--copper-deep);
  z-index: -1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--bone-line);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
}
.stat {
  background: var(--ink-deep);
  padding: 1.8rem 1.5rem;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.stat-num sub {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--copper-bright);
  letter-spacing: 0.1em;
  bottom: 0;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ============================================
   PLACEHOLDERS (pinstripe + mono label)
   ============================================ */
.ph {
  background-color: var(--char);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0,
      transparent 14px,
      rgba(236,225,195,0.025) 14px,
      rgba(236,225,195,0.025) 15px),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(168,52,30,0.1), transparent);
  border: 1px solid var(--bone-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--bone-line);
  background: rgba(10,7,3,0.5);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--ink);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
  padding: 7rem var(--rail);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-head {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--bone-line);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
}
.testimonial {
  background: var(--ink);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--t-fast);
}
.testimonial:hover { background: var(--char); }
.testimonial-mark {
  font-family: var(--f-display);
  font-size: 4rem;
  color: var(--copper);
  line-height: 0.8;
  opacity: 0.35;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonial-name {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  font-weight: 500;
}
.testimonial-event {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--copper);
  text-transform: uppercase;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery {
  padding: 6rem var(--rail);
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--char);
  border: 1px solid var(--bone-line);
  height: 260px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.92) contrast(1.02);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}
.gallery-item.hero {
  grid-column: 1 / -1;
  height: 460px;
}
.gallery-item .gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: linear-gradient(to top, rgba(5,4,2,0.85), transparent);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item .gallery-caption .num {
  color: var(--copper);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-band {
  position: relative;
  padding: 8rem var(--rail);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,137,60,0.10), transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(168,52,30,0.08), transparent 70%);
}
.cta-band-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 6rem var(--rail) 5rem;
  text-align: center;
  border-bottom: 1px solid var(--bone-line);
  background:
    radial-gradient(ellipse 70% 90% at 50% 100%, rgba(168,52,30,0.12), transparent 70%),
    linear-gradient(to bottom, var(--char), var(--ink-deep));
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

/* ============================================
   POLICY CARDS
   ============================================ */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.policy-card {
  background: var(--char);
  border: 1px solid var(--bone-line);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.policy-card:hover {
  border-color: rgba(200,137,60,0.3);
  transform: translateY(-3px);
  background: var(--ember);
}
.policy-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--copper);
  transition: height 0.45s var(--ease);
}
.policy-card:hover::before { height: 100%; }
.policy-card.full { grid-column: 1 / -1; }

.policy-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bone-line);
}
.policy-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  font-weight: 500;
}
.policy-num {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.policy-lead {
  font-size: 1rem;
  color: var(--bone-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.policy-lead strong { color: var(--copper-bright); font-weight: 500; }

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}
.policy-list li {
  font-size: 0.97rem;
  color: var(--bone-dim);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--copper);
}
.policy-list li strong { color: var(--copper-bright); font-weight: 500; }

/* Two-column policy interior */
.policy-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.2rem;
}
.policy-split h5 {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.8rem;
}
.policy-split .danger h5 { color: var(--red-ember); }

/* Provide / Not provide */
.provide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.provide-card {
  background: var(--char);
  border: 1px solid var(--bone-line);
  padding: 2rem;
}
.provide-card.not { border-color: rgba(168,52,30,0.2); }
.provide-card h4 {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bone-line);
}
.provide-card.not h4 { color: var(--red-ember); }

/* Timeline */
.timeline {
  border: 1px solid var(--bone-line);
  overflow: hidden;
}
.timeline-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--bone-line);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-marker {
  background: var(--ember);
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  border-right: 1px solid var(--bone-line);
}
.timeline-marker.t1 { background: linear-gradient(135deg, var(--copper), var(--copper-deep)); }
.timeline-marker.t2 { background: var(--ember-hi); }
.timeline-marker.t3 { background: var(--ember); }
.timeline-when-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-deep);
}
.timeline-marker.t2 .timeline-when-num,
.timeline-marker.t3 .timeline-when-num { color: var(--copper-bright); }
.timeline-when-unit {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0.7;
}
.timeline-marker.t2 .timeline-when-unit,
.timeline-marker.t3 .timeline-when-unit { color: var(--bone-faint); opacity: 1; }
.timeline-body {
  padding: 1.5rem 1.8rem;
  background: var(--char);
}

/* Notice */
.notice {
  background: linear-gradient(135deg, rgba(168,52,30,0.08), rgba(200,137,60,0.05));
  border: 1px solid rgba(168,52,30,0.25);
  padding: 1.6rem 2rem;
  margin: 2rem auto 0;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.notice strong { color: var(--copper-bright); font-weight: 500; }
.notice .flame-mark { flex-shrink: 0; margin-top: 0.3rem; }

/* ============================================
   MENU
   ============================================ */
.menu-meta {
  background: var(--ink);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
  padding: 3rem var(--rail);
}
.menu-meta-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--bone-line);
}
.meta-chip {
  background: var(--ink);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.meta-label {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.meta-value {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--copper-bright);
}
.meta-note {
  font-size: 0.86rem;
  color: var(--bone-dim);
  font-style: italic;
  line-height: 1.4;
}

.included-block {
  padding: 5rem var(--rail);
  max-width: var(--max-w);
  margin: 0 auto;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 2rem;
  margin-top: 2rem;
}
.included-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.98rem;
  color: var(--bone);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--bone-line);
}
.included-item .num {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--copper);
  letter-spacing: 0.15em;
}

/* Proteins */
.proteins {
  padding: 4rem var(--rail) 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.protein-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--bone-line);
  border-top: 1px solid var(--bone-line);
  border-bottom: 1px solid var(--bone-line);
  margin-top: 2rem;
}
.protein-cell {
  background: var(--ink-deep);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background var(--t-fast);
}
.protein-cell:hover { background: var(--char); }
.protein-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bone);
}
.protein-desc {
  font-size: 0.9rem;
  color: var(--bone-dim);
  font-style: italic;
  line-height: 1.5;
}
.protein-cell.veg .protein-name { color: #a8d0a0; }

/* Price tables */
.price-section {
  padding: 0 var(--rail) 7rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.price-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--bone-line);
}
.price-tab {
  flex: 1;
  padding: 1.4rem 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  background: transparent;
  border: 1px solid var(--bone-line);
  border-bottom: none;
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.price-tab:not(:first-child) { border-left: none; }
.price-tab:hover { color: var(--bone); background: rgba(200,137,60,0.04); }
.price-tab.active {
  color: var(--copper);
  background: var(--char);
}
.price-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--copper);
}
.price-tab span {
  display: block;
  font-family: var(--f-display);
  font-size: 0.65rem;
  color: var(--bone-faint);
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}
.price-tab.active span { color: var(--copper-bright); }

.price-panel { display: none; padding: 0; background: var(--char); border: 1px solid var(--bone-line); border-top: none; }
.price-panel.active { display: block; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.price-table thead tr { border-bottom: 1px solid var(--bone-line); background: var(--ink); }
.price-table thead th {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 400;
}
.price-table thead th:not(:first-child) { text-align: right; }
.price-table tbody tr {
  border-bottom: 1px solid var(--bone-line);
  transition: background var(--t-fast);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(200,137,60,0.04); }
.price-table tbody tr.lobster { background: rgba(168,52,30,0.07); }
.price-table tbody tr.lobster:hover { background: rgba(168,52,30,0.13); }
.price-table td {
  padding: 1.1rem 1.5rem;
  color: var(--bone);
  font-size: 1rem;
  vertical-align: middle;
}
.price-table td .meta {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--bone-faint);
  text-transform: uppercase;
}
.price-table .price {
  text-align: right;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--copper-bright);
  font-weight: 500;
}
.price-table .kids { text-align: right; font-family: var(--f-mono); font-size: 0.9rem; color: var(--bone-dim); }
.price-table .none { text-align: right; font-size: 0.7rem; color: var(--bone-faint); font-style: italic; letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================
   QUOTE CALCULATOR
   ============================================ */
.quote-wrap {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0;
  background: var(--ink);
  border: 1px solid var(--bone-line);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 720px;
}
.quote-builder { padding: 2.5rem 2.5rem 3rem; border-right: 1px solid var(--bone-line); }
.quote-summary {
  padding: 1.8rem 2rem 2rem;
  background: var(--char);
  position: sticky;
  top: var(--nav-h);
  align-self: start;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

@media (max-width: 880px) {
  .quote-wrap { grid-template-columns: 1fr; }
  .quote-builder { border-right: none; border-bottom: 1px solid var(--bone-line); padding: 2rem 1.5rem; }
  .quote-summary { position: static; max-height: none; padding: 2rem 1.5rem; }
}
.quote-step {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bone-line);
}
.quote-step:last-child { border-bottom: none; padding-bottom: 0; }
.quote-step-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.quote-step-num {
  width: 30px;
  height: 30px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.quote-step-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.quote-step-hint {
  font-size: 0.88rem;
  color: var(--bone-faint);
  font-style: italic;
  margin-left: auto;
}
.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus { border-color: var(--copper); }
.quote-select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8893c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.quote-textarea { resize: vertical; min-height: 80px; font-family: var(--f-body); }

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quote-field { display: flex; flex-direction: column; gap: 0.5rem; }
.quote-field-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* Guest counter */
.counter {
  display: flex;
  align-items: center;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
}
.counter button {
  width: 48px;
  height: 48px;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--copper);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}
.counter button:hover { background: rgba(200,137,60,0.1); }
.counter button:disabled { color: var(--bone-faint); cursor: not-allowed; }
.counter input {
  flex: 1;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  width: 60px;
  appearance: textfield;
  -moz-appearance: textfield;
}
.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Day-of-week pills */
.day-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.day-pill {
  padding: 0.6rem 1rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  cursor: pointer;
  transition: all var(--t-fast);
  text-transform: uppercase;
}
.day-pill:hover { color: var(--bone); border-color: rgba(200,137,60,0.3); }
.day-pill.active {
  background: var(--copper);
  color: var(--ink-deep);
  border-color: var(--copper);
}

/* Meal builder */
.meal-row {
  display: grid;
  grid-template-columns: 50px 1.6fr 1fr 110px 32px;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--bone-line);
}
.meal-row:last-of-type { border-bottom: none; }
.meal-idx {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--bone-faint);
  letter-spacing: 0.1em;
}
.meal-row .quote-select { padding: 0.65rem 2.5rem 0.65rem 0.9rem; font-size: 0.92rem; }
.meal-row .price-display {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--copper-bright);
  text-align: right;
  font-weight: 500;
}
.meal-row .qty-input {
  width: 100%;
  text-align: center;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 1rem;
  padding: 0.55rem 0.4rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.meal-row .qty-input:focus { border-color: var(--copper); }
.meal-row .remove-btn {
  background: transparent;
  border: 1px solid var(--bone-line);
  width: 32px;
  height: 32px;
  color: var(--bone-faint);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--t-fast);
}
.meal-row .remove-btn:hover { color: var(--red-ember); border-color: rgba(168,52,30,0.4); }

.meal-add {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: transparent;
  border: 1px dashed rgba(200,137,60,0.4);
  color: var(--copper);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  transition: all var(--t-fast);
}
.meal-add:hover {
  border-color: var(--copper);
  background: rgba(200,137,60,0.08);
}

.meal-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.meal-toolbar .toolbar-info {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.meal-toolbar .toolbar-info.over { color: var(--red-ember); }
.meal-toolbar .toolbar-info.under { color: var(--copper); }

/* Addons */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.addon-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.addon-toggle:hover { border-color: rgba(200,137,60,0.3); }
.addon-toggle.active {
  border-color: var(--copper);
  background: rgba(200,137,60,0.06);
}
.addon-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.addon-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--bone);
  font-weight: 500;
}
.addon-desc {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.addon-price {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--copper);
  font-weight: 500;
}
.addon-toggle.active .addon-price { color: var(--copper-bright); }

.catalog-launcher-promo {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.4rem;
  background: linear-gradient(135deg, rgba(200, 137, 60, 0.16) 0%, rgba(200, 137, 60, 0.06) 100%);
  border: 1px solid rgba(200, 137, 60, 0.5);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--bone);
  line-height: 1.4;
  box-shadow: 0 0 0 1px rgba(200, 137, 60, 0.12), 0 4px 16px rgba(200, 137, 60, 0.12);
  position: relative;
  overflow: hidden;
}
.catalog-launcher-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 220, 170, 0.18) 50%, transparent 65%);
  animation: promoShimmer 3.8s linear infinite;
  pointer-events: none;
}
@keyframes promoShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.catalog-launcher-promo strong {
  color: var(--copper-bright);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.005em;
}
.catalog-launcher-promo-tag {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a0f06;
  font-weight: 700;
  padding: 0.32rem 0.65rem;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-bright) 100%);
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.catalog-launcher-promo-text {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .catalog-launcher-promo::before { animation: none; }
}

/* Summary saving line — green tint */
.summary-line.summary-saving .lbl,
.summary-line.summary-saving .val {
  color: #6fd398;
}
.summary-line.summary-saving .sub { color: rgba(111, 211, 152, 0.7); }

/* Summary nudge — empty-cart prompt for big quotes */
.summary-nudge {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(200,137,60,0.08), rgba(200,137,60,0.03));
  border: 1px dashed rgba(200,137,60,0.4);
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.5;
}
.summary-nudge-spark {
  font-size: 1rem;
  flex-shrink: 0;
}
.summary-nudge-link {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--copper-bright);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.summary-nudge-link:hover { color: var(--copper); }

/* Summary */
.summary-head {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bone-line);
}
.summary-head .label { margin-bottom: 0.5rem; display: block; }
.summary-head h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bone);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  font-size: 0.93rem;
}
.summary-line .lbl { color: var(--bone-dim); }
.summary-line .lbl .sub { display: block; font-family: var(--f-mono); font-size: 0.6rem; color: var(--bone-faint); letter-spacing: 0.15em; }
.summary-line .val {
  font-family: var(--f-display);
  color: var(--bone);
  font-weight: 500;
}
.summary-divider {
  border: none;
  border-top: 1px dashed var(--bone-line);
  margin: 0.7rem 0;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0 0.6rem;
  border-top: 1px solid var(--copper-deep);
  margin-top: 0.7rem;
}
.summary-total .lbl {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
}
.summary-total .val {
  font-family: var(--f-display);
  font-size: 1.95rem;
  font-weight: 500;
  color: var(--copper-bright);
}
.summary-deposit {
  margin-top: 0.4rem;
  padding: 0.7rem 1rem;
  background: rgba(200,137,60,0.06);
  border: 1px solid rgba(200,137,60,0.2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-deposit .lbl {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.summary-deposit .val {
  font-family: var(--f-display);
  color: var(--copper-bright);
  font-weight: 500;
  font-size: 1.1rem;
}
.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.summary-actions .btn { width: 100%; }

.summary-warning {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(168,52,30,0.08);
  border: 1px solid rgba(168,52,30,0.25);
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.45;
}
.summary-warning strong { color: var(--red-ember); }

/* ============================================
   QUOTE MODAL
   ============================================ */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 2, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  animation: modalFade 0.3s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.quote-modal {
  background: var(--char);
  border: 1px solid rgba(200, 137, 60, 0.3);
  padding: 2.5rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 137, 60, 0.1);
  animation: modalIn 0.4s var(--ease);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bone-line);
}
.quote-modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bone-line);
  color: var(--bone-dim);
  font-size: 1.4rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.quote-modal-close:hover {
  color: var(--copper);
  border-color: var(--copper);
}
.quote-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.quote-modal-actions .btn {
  padding: 0.85rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .quote-modal { padding: 1.8rem 1.4rem; }
  .quote-modal-actions { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--rail);
}
.contact-card {
  background: var(--char);
  border: 1px solid var(--bone-line);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  background: var(--ember);
}
.contact-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--bone-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  transition: all var(--t-fast);
}
.contact-card:hover .icon-wrap { border-color: var(--copper); background: rgba(200,137,60,0.06); }
.contact-card .icon-wrap svg { width: 28px; height: 28px; }
.contact-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.contact-card p { color: var(--bone-dim); font-size: 0.95rem; margin-bottom: 1.5rem; }
.contact-card .btn { width: 100%; }

.contact-checklist {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--char);
  border: 1px solid var(--bone-line);
}
.contact-checklist h4 {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--bone-line);
  padding: 5rem var(--rail) 2.5rem;
  margin-top: 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bone-line);
}
.footer-brand-text { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.2rem; }
.footer-brand-text .nav-brand-top { font-size: 1.2rem; }
.footer-brand p {
  color: var(--bone-dim);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col li a {
  font-size: 0.95rem;
  color: var(--bone-dim);
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-col li a:hover { color: var(--copper-bright); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom > :nth-child(1) { justify-self: start; text-align: left; }
.footer-bottom > :nth-child(2) { justify-self: center; text-align: center; }
.footer-bottom > :nth-child(3) { justify-self: end; text-align: right; }
@media (max-width: 600px) {
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > :nth-child(1),
  .footer-bottom > :nth-child(2),
  .footer-bottom > :nth-child(3) { justify-self: center; text-align: center; }
}
.footer-bottom p, .footer-bottom span {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--bone-faint);
  text-transform: uppercase;
}
.footer-bottom .flame-mark { color: var(--copper); }

/* ============================================
   MOBILE
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bone);
  transition: all var(--t-fast);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: rgba(10,7,3,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bone-line);
  padding: 2rem var(--rail);
  z-index: 999;
  flex-direction: column;
  gap: 1.4rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.3rem 0;
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--copper); }

@media (max-width: 1024px) {
  .quote-wrap { grid-template-columns: 1fr; }
  .quote-builder { border-right: none; border-bottom: 1px solid var(--bone-line); }
  .quote-summary { position: static; }
  .about-grid { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  nav.site-nav > .btn { display: none; }
  nav.site-nav { grid-template-columns: 1fr auto; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-text { text-align: center; }
  .about-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-card.full { grid-column: 1; }
  .policy-split { grid-template-columns: 1fr; }
  .provide-grid { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; }
  .timeline-marker { border-right: none; border-bottom: 1px solid var(--bone-line); flex-direction: row; align-items: center; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 200px; }
  .gallery-item.hero { grid-column: 1 / -1; height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stamp-row { gap: 1rem; }
  .stamp { flex: 0 0 calc(50% - 1rem); font-size: 0.58rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(odd) { border-right: 1px solid var(--bone-line); }
  .feature:nth-child(even) { border-right: none; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--bone-line); }
  .meal-row { grid-template-columns: 36px 1fr 100px 80px 32px; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; --rail: 1.25rem; }
  .hero { padding: 2rem var(--rail); }
  .hero-corners { inset: 1rem var(--rail); }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .section { padding: 4rem var(--rail); }
  .cta-band { padding: 5rem var(--rail); }
  .testimonials { padding: 4rem var(--rail); }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none !important; border-bottom: 1px solid var(--bone-line); }
  .feature:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { margin: 0 auto; }
  .stamp-row { flex-direction: column; gap: 0.8rem; padding: 1.5rem var(--rail); }
  .stamp { flex: 0 0 auto; }
  .policy-card { padding: 1.8rem 1.5rem; }
  .quote-builder, .quote-summary { padding: 1.8rem 1.4rem; }
  .quote-row { grid-template-columns: 1fr; }
  .meal-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem 0; }
  .meal-row .price-display, .meal-row .meal-idx { text-align: left; }
  .meal-row .remove-btn { justify-self: end; }
  .addons-grid { grid-template-columns: 1fr; }
  .price-tabs { flex-direction: column; }
  .price-tab { border-left: 1px solid var(--bone-line) !important; border-bottom: 1px solid var(--bone-line); }
  .price-tab:not(:first-child) { border-top: none; }
  .price-table thead th, .price-table td { padding: 0.8rem 0.9rem; font-size: 0.88rem; }
  .price-table .price { font-size: 0.95rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat { border-bottom: 1px solid var(--bone-line); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .gallery-item.hero { height: 280px; }
}

/* ============================================
   STEP 3 — ADD-ONS REFINED
   ============================================ */
.addon-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
  margin-bottom: 1rem;
}
.addon-opt:hover { border-color: rgba(200,137,60,0.3); }
.addon-opt.active { border-color: var(--copper); background: rgba(200,137,60,0.06); }
.addon-opt-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--bone-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.addon-opt.active .addon-opt-check {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ink-deep);
}

/* Premium catalog launcher — hero treatment */
.catalog-launcher {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.2rem 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(168, 85, 247, 0.12), transparent 60%),
    radial-gradient(ellipse 80% 100% at 0% 100%, rgba(84, 116, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #0e0a05 0%, #15100a 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: left;
  font-family: inherit;
  color: inherit;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.catalog-launcher::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #5474FF 0%, #A855F7 50%, #5474FF 100%);
  background-size: 200% 100%;
  animation: ccGradSlide 6s linear infinite;
}
@keyframes ccGradSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.catalog-launcher-shimmer {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 50%;
  height: 200%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  pointer-events: none;
  animation: ccShimmer 5s ease-in-out infinite;
}
@keyframes ccShimmer {
  0%, 100% { transform: translateX(0); opacity: 0; }
  20% { opacity: 1; }
  60% { transform: translateX(260%); opacity: 0; }
}
.catalog-launcher:hover {
  border-color: rgba(168, 85, 247, 0.55);
  transform: translateY(-2px);
  box-shadow:
    0 24px 60px rgba(168, 85, 247, 0.18),
    0 0 0 1px rgba(168, 85, 247, 0.15);
}
.catalog-launcher-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.catalog-launcher-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 100px;
  background-color: rgba(168, 85, 247, 0.06);
  width: fit-content;
}
.cl-tag-eyebrow,
.cl-tag-by,
.cl-tag-brand { white-space: nowrap; }
.cl-tag-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A38BFF;
  font-weight: 500;
}
.cl-tag-by {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(195, 174, 255, 0.7);
  font-weight: 500;
}
.cl-tag-dot {
  color: rgba(195, 174, 255, 0.55);
  font-size: 0.7rem;
  margin: 0 -0.15rem;
}
.cl-tag-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
}
.cl-tag-pin {
  filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.35));
  margin-right: 0.05rem;
}
.cl-tag-brand .pp-blue { color: #6B85FF; }
.cl-tag-brand .pp-purple { color: #B373F8; }
.catalog-launcher-tag svg { flex-shrink: 0; }
.catalog-launcher-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: var(--bone);
  line-height: 1.15;
  margin-bottom: 0.8rem;
  letter-spacing: -0.005em;
}
.catalog-launcher-meta {
  font-family: var(--f-body);
  font-size: 0.96rem;
  color: var(--bone-dim);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 1.3rem;
}
.catalog-launcher-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cl-chip {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(236, 225, 195, 0.12);
  border-radius: 4px;
  background: rgba(236, 225, 195, 0.025);
  transition: all 0.2s var(--ease);
}
.catalog-launcher:hover .cl-chip {
  color: var(--bone);
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.05);
}

.catalog-launcher-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.catalog-launcher-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.7rem;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  color: white;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  box-shadow:
    0 12px 32px rgba(84, 116, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.catalog-launcher:hover .catalog-launcher-cta {
  transform: translateX(3px);
  box-shadow:
    0 18px 44px rgba(168, 85, 247, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.catalog-launcher-count {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* "Also available" divider */
.addon-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 1rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.addon-divider::before,
.addon-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bone-line);
}

/* Smaller trash row */
.addon-opt-sm {
  padding: 0.85rem 1.2rem;
  margin-bottom: 0;
}
.addon-opt-sm .addon-name { font-size: 0.92rem; }
.addon-opt-sm .addon-desc {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  margin-top: 0.15rem;
}
.addon-opt-sm .addon-price { font-size: 0.92rem; }

@media (max-width: 720px) {
  .catalog-launcher {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.4rem;
  }
  .catalog-launcher-cta-wrap {
    align-items: stretch;
  }
  .catalog-launcher-cta {
    justify-content: center;
  }
  .catalog-launcher-count {
    text-align: center;
  }
}

/* Selected-from-catalog summary on main page */
.catalog-selected {
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--ink-deep);
  border: 1px dashed rgba(168, 85, 247, 0.25);
}
.catalog-selected-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.7rem;
}
.catalog-selected-edit {
  background: transparent;
  border: none;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C084FC;
  cursor: pointer;
  padding: 0;
}
.catalog-selected ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.catalog-selected li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--bone);
  font-family: var(--f-body);
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--bone-line);
}
.catalog-selected li:last-child { border-bottom: none; padding-bottom: 0; }
.catalog-selected .item-detail {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.catalog-selected .item-total {
  font-family: var(--f-mono);
  font-size: 0.92rem;
  color: var(--copper-bright);
  font-weight: 500;
  text-align: right;
  min-width: 60px;
}

/* ============================================
   PINPOINT PARTIES CATALOG (browser-window modal)
   Self-contained light theme — fully scoped under .pinpoint-window
   ============================================ */
.pinpoint-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 2, 0.82);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  animation: ppFadeIn 0.2s ease;
}
@keyframes ppFadeIn { from { opacity: 0; } to { opacity: 1; } }

.pinpoint-window {
  background: #f6f8fb;
  width: min(1120px, 100%);
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  animation: ppPop 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes ppPop {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Browser chrome */
.pinpoint-chrome {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  gap: 1rem;
  background: linear-gradient(180deg, #ebeef3 0%, #dee2ea 100%);
  border-bottom: 1px solid #cdd2dc;
  flex-shrink: 0;
}
.pinpoint-traffic {
  display: flex;
  gap: 0.4rem;
}
.pp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.pp-r { background: #ff5f57; cursor: pointer; }
.pp-r:hover { background: #ff4540; }
.pp-y { background: #febc2e; }
.pp-g { background: #28c840; }

.pinpoint-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: white;
  border: 1px solid #d4d9e1;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-family: 'SF Pro Text', 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  color: #475569;
  max-width: 460px;
  margin: 0 auto;
}
.pinpoint-url svg { color: #64748b; flex-shrink: 0; }

.pp-close {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}
.pp-close:hover { background: rgba(0, 0, 0, 0.08); color: #0f172a; }

/* Page body */
.pinpoint-body {
  flex: 1;
  overflow-y: auto;
  background: white;
}

.pp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid #eaedf3;
  background: white;
  position: sticky;
  top: 0;
  z-index: 2;
}
.pp-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pp-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.pp-blue { color: #5474FF; }
.pp-purple { color: #A855F7; }

.pp-nav {
  display: flex;
  gap: 1.8rem;
}
.pp-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #475569;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.15s ease;
}
.pp-nav a.active { color: #0f172a; }
.pp-nav a:hover { color: #5474FF; }

.pp-hero {
  padding: 2.2rem 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f4f6fb 0%, white 100%);
}
.pp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.pp-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pp-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.55;
}

.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
}
.pp-card {
  background: white;
  border: 1px solid #e6e9ef;
  display: flex;
  flex-direction: column;
}
.pp-card-body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pp-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  flex: 1;
}
.pp-price-row {
  margin-top: auto;
}
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.pp-card:hover {
  border-color: #c4cbf0;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}
.pp-card.pp-active {
  border-color: #5474FF;
  box-shadow: 0 0 0 3px rgba(84, 116, 255, 0.14);
}

.pp-photo {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ebf0ff 0%, #f5ebff 100%);
  border-bottom: 1px solid #eaedf3;
  position: relative;
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(15,23,42,0.025) 12px, rgba(15,23,42,0.025) 13px),
    linear-gradient(135deg, #ebf0ff 0%, #f5ebff 100%);
}
.pp-photo-chairs   { background-image: repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(15,23,42,0.025) 12px, rgba(15,23,42,0.025) 13px), linear-gradient(135deg, #dfe7ff, #c1cef9); }
.pp-photo-florals  {
  background-image: url('images/addon-florals.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-florals .pp-photo-label { display: none; }
.pp-photo-fan      {
  background-image: url('images/addon-fan.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-fan .pp-photo-label { display: none; }
.pp-photo-memory {
  background-image: url('images/addon-memory.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-memory .pp-photo-label { display: none; }
.pp-photo-cake {
  background-image: url('images/addon-cake.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-cake .pp-photo-label { display: none; }
.pp-photo-tent {
  background-image: url('images/addon-tent.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-tent .pp-photo-label { display: none; }
.pp-photo-tentpole {
  background-image: url('images/addon-tent-pole.jpg');
  background-size: cover;
  background-position: center;
}
.pp-photo-tentpole .pp-photo-label { display: none; }
.pp-photo-linen    { background-image: repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(15,23,42,0.025) 12px, rgba(15,23,42,0.025) 13px), linear-gradient(135deg, #f3e8ff, #e9d5ff); }
.pp-photo-settings { background-image: repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(15,23,42,0.025) 12px, rgba(15,23,42,0.025) 13px), linear-gradient(135deg, #fef3c7, #fde68a); }
.pp-photo-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.45);
  font-style: italic;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}
.pp-photo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Category filter chips */
.pp-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0 var(--pp-rail, 2.5rem) 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
.pp-cat {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  color: #334155;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.pp-cat:hover {
  background: #f8fafc;
  border-color: rgba(84, 116, 255, 0.35);
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
}
.pp-cat-active {
  background: linear-gradient(135deg, #5474FF 0%, #A855F7 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(84, 116, 255, 0.28), 0 1px 3px rgba(168, 85, 247, 0.18);
}
.pp-cat-active:hover {
  background: linear-gradient(135deg, #5474FF 0%, #A855F7 100%);
  color: #ffffff;
}
.pp-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 0.4rem;
  border-radius: 100px;
  background: rgba(15, 23, 42, 0.06);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
}
.pp-cat-active .pp-cat-count {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.pp-cat-soon {
  background: #fafbfd;
  color: #94a3b8;
  border-style: dashed;
}
.pp-cat-soon:hover {
  color: #64748b;
  border-color: rgba(168, 85, 247, 0.35);
}
.pp-cat-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 0.45rem;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(84, 116, 255, 0.12), rgba(168, 85, 247, 0.12));
  color: #5474FF;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Empty state for coming-soon categories */
.pp-empty {
  max-width: 520px;
  margin: 1.5rem auto 3rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}
.pp-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(84, 116, 255, 0.10), rgba(168, 85, 247, 0.10));
  color: #5474FF;
}
.pp-empty h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.5rem;
}
.pp-empty p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1.4rem;
}
.pp-empty-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #5474FF 0%, #A855F7 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(84, 116, 255, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.pp-empty-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(84, 116, 255, 0.34);
}

/* Color picker arrows on photo */
.pp-color-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.pp-color-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.pp-color-nav:active { transform: translateY(-50%) scale(0.96); }
.pp-color-prev { left: 10px; }
.pp-color-next { right: 10px; }

/* Solid-color fallback when no image */
.pp-photo-no-image .pp-photo-label {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

/* Swatch row */
.pp-swatches {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-bottom: 1px solid #eaedf3;
  background: #fafbfd;
}
.pp-swatch {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  outline: 1px solid rgba(15, 23, 42, 0.12);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, outline-color 0.15s;
}
.pp-swatch:hover { transform: scale(1.1); }
.pp-swatch-active {
  outline: 2px solid #5474FF;
  outline-offset: 1px;
  transform: scale(1.08);
}
.pp-swatch-name {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.01em;
}

/* Compact color chip in selected-list */
.catalog-selected .item-color {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 500;
}
.catalog-selected .item-color-swatch {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-block;
}

.pp-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.35rem;
  letter-spacing: -0.005em;
}
.pp-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: #64748b;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.pp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pp-price { display: flex; flex-direction: column; gap: 0.1rem; }
.pp-price-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pp-price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.pp-add {
  padding: 0.65rem 1.4rem;
  border: none;
  border-radius: 100px;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pp-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(84, 116, 255, 0.3);
}
.pp-add.pp-added {
  background: white;
  color: #5474FF;
  border: 1px solid #c4cbf0;
}
.pp-add.pp-added:hover { background: #f5f7ff; }

.pp-counter {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #c4cbf0;
  border-radius: 100px;
  overflow: hidden;
}
.pp-counter button {
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  color: #5474FF;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s ease;
}
.pp-counter button:hover:not(:disabled) { background: #f0f3ff; }
.pp-counter button:disabled { color: #cbd5e1; cursor: not-allowed; }
.pp-counter span {
  min-width: 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.pp-computed {
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px dashed #eaedf3;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: #64748b;
}
.pp-computed strong { color: #5474FF; font-weight: 700; }

.pp-footer {
  padding: 1.2rem 2rem;
  background: white;
  border-top: 1px solid #eaedf3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  bottom: 0;
}
.pp-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pp-footer-brand svg { flex-shrink: 0; }
.pp-footer-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #94a3b8;
}
.pp-footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pp-footer-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.05rem;
  padding-right: 0.8rem;
  border-right: 1px solid #eaedf3;
}
.pp-footer-total-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pp-footer-total-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.pp-done {
  padding: 0.75rem 1.6rem;
  background: linear-gradient(90deg, #5474FF, #A855F7);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pp-done:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

@media (max-width: 720px) {
  .pinpoint-backdrop { padding: 0; }
  .pinpoint-window { max-height: 100vh; height: 100vh; border-radius: 0; width: 100%; }
  .pp-header { padding: 1rem 1.2rem; }
  .pp-nav { display: none; }
  .pp-hero { padding: 1.4rem 1.2rem 1rem; }
  .pp-hero h1 { font-size: 1.4rem; }
  .pp-grid { padding: 1rem 1.2rem; grid-template-columns: 1fr; }
  .pp-footer { padding: 1rem 1.2rem; }
  .pinpoint-url { max-width: none; font-size: 0.72rem; }
  .catalog-selected li { grid-template-columns: 1fr auto; }
  .catalog-selected .item-detail { grid-column: 1 / -1; margin-top: -0.2rem; }
}

/* =================================================
   v2 TIERED PRICING — Step 02 cards + 02b customize
   ================================================= */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 0.5rem 0 0;
}
.tier-grid-compact { gap: 0.6rem; }
@media (max-width: 720px) { .tier-grid { grid-template-columns: 1fr; } }

/* ===== COMPACT card (default state on quote page) ===== */
.tier-card-c {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 1rem 0.9rem 0.85rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
  font: inherit;
  color: var(--bone);
  overflow: hidden;
}
.tier-card-c:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}
.tier-card-c.tier-active {
  border-color: var(--copper);
  background: linear-gradient(180deg, rgba(200,137,60,0.08) 0%, var(--ink-deep) 70%);
  box-shadow: 0 0 0 1px var(--copper), 0 8px 22px rgba(200,137,60,0.14);
}
.tier-card-c.tier-luxe.tier-active {
  border-color: #A855F7;
  background: linear-gradient(180deg, rgba(168,85,247,0.08) 0%, var(--ink-deep) 70%);
  box-shadow: 0 0 0 1px #A855F7, 0 8px 22px rgba(168,85,247,0.18);
}

.tier-c-name {
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--bone);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  min-height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-c-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  margin: 0.2rem 0 0.55rem;
}
.tier-c-from {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.tier-c-price {
  display: flex;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1;
}
.tier-c-dollar {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--copper);
  font-weight: 400;
  margin-top: 0.4rem;
}
.tier-c-num {
  font-family: var(--f-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-active .tier-c-num { color: var(--copper-bright); }
.tier-luxe.tier-active .tier-c-num { color: #B373F8; }
.tier-c-unit {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.tier-c-min {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.55rem;
}

.tier-c-cta {
  margin-top: auto;
  padding: 0.5rem 0;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-top: 1px solid var(--bone-line);
  font-weight: 600;
  transition: color var(--t-fast);
}
.tier-card-c:hover .tier-c-cta { color: var(--copper); }
.tier-card-c.tier-active .tier-c-cta { color: var(--copper-bright); }
.tier-card-c.tier-luxe.tier-active .tier-c-cta { color: #B373F8; }

/* Ribbons (reused from below) — adjust for compact card */
.tier-card-c .tier-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
}

/* ===== TIER DETAIL PANEL (expanded info under cards) ===== */
.tier-detail {
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--ink-deep);
  border: 1px solid var(--copper);
  position: relative;
}
.tier-detail-luxe { border-color: #A855F7; }

.tier-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bone-line);
  margin-bottom: 1rem;
}
.tier-detail-eyebrow {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.tier-detail-luxe .tier-detail-eyebrow { color: #B373F8; }
.tier-detail-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bone);
  margin: 0 0 0.35rem;
  letter-spacing: -0.005em;
}
.tier-detail-tagline {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone-dim);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.tier-detail-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.tier-detail-from {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.15rem;
}
.tier-detail-num {
  font-family: var(--f-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--copper-bright);
  line-height: 1;
  letter-spacing: -0.01em;
}
.tier-detail-luxe .tier-detail-num { color: #B373F8; }
.tier-detail-unit {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 0.15rem;
}
.tier-detail-min {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 0.35rem;
}

.tier-detail-includes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
}
@media (max-width: 680px) { .tier-detail-includes { grid-template-columns: 1fr; } }
.tier-detail-includes li {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone);
  line-height: 1.4;
  padding-left: 1.1rem;
  position: relative;
}
.tier-detail-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 600;
}
.tier-detail-luxe .tier-detail-includes li::before { color: #B373F8; }

.tier-detail-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--bone-line);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tier-detail-best {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.tier-detail-best-label {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.tier-detail-best-text {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.4;
}
.tier-detail-pinpoint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.22);
  background: linear-gradient(135deg, rgba(84,116,255,0.06), rgba(168,85,247,0.06));
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
  white-space: nowrap;
}
.tier-detail-pinpoint strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  background: linear-gradient(90deg, #6B85FF, #B373F8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.2rem;
}
.tier-detail-pinpoint svg { filter: drop-shadow(0 1px 2px rgba(168,85,247,0.4)); }

.tier-detail-customize {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(200,137,60,0.04);
  border: 1px dashed var(--copper);
  cursor: pointer;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  color: var(--bone);
  position: relative;
  box-shadow: 0 0 0 1px rgba(200,137,60,0.18), 0 0 18px rgba(200,137,60,0.18);
  animation: customizeGlow 2.4s ease-in-out infinite;
}
@keyframes customizeGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(200,137,60,0.18), 0 0 14px rgba(200,137,60,0.16); }
  50%      { box-shadow: 0 0 0 1px rgba(200,137,60,0.38), 0 0 26px rgba(200,137,60,0.32); }
}
.tier-detail-customize:hover {
  background: rgba(200,137,60,0.1);
  transform: translateY(-1px);
}
.tier-detail-customize.open {
  background: rgba(200,137,60,0.08);
  animation: none;
  box-shadow: 0 0 0 1px rgba(200,137,60,0.32), 0 0 18px rgba(200,137,60,0.22);
}
.tier-detail-luxe .tier-detail-customize {
  border-color: #A855F7;
  background: rgba(168,85,247,0.05);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.18), 0 0 18px rgba(168,85,247,0.2);
  animation: customizeGlowLuxe 2.4s ease-in-out infinite;
}
@keyframes customizeGlowLuxe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(168,85,247,0.18), 0 0 14px rgba(168,85,247,0.18); }
  50%      { box-shadow: 0 0 0 1px rgba(168,85,247,0.4), 0 0 28px rgba(168,85,247,0.36); }
}
.tier-detail-luxe .tier-detail-customize:hover { background: rgba(168,85,247,0.1); }
.tier-detail-luxe .tier-detail-customize.open {
  animation: none;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.36), 0 0 20px rgba(168,85,247,0.26);
}
@media (prefers-reduced-motion: reduce) {
  .tier-detail-customize,
  .tier-detail-luxe .tier-detail-customize { animation: none; }
}
.tier-detail-customize-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 600;
}
.tier-detail-luxe .tier-detail-customize-label { color: #B373F8; }
.tier-detail-customize-sub {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--bone-faint);
}

/* Empty-state when no tier picked */
.tier-empty {
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(200,137,60,0.04);
  border: 1px dashed var(--bone-line);
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone-dim);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}
.tier-empty span {
  display: inline-block;
  margin-right: 0.4rem;
  font-style: normal;
  color: var(--copper);
  font-weight: 600;
}

/* Old verbose tier-card kept for the pricing page (#menu) */

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.4rem 1.3rem 1.2rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  font: inherit;
  color: var(--bone);
  overflow: hidden;
}
.tier-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.tier-active {
  border-color: var(--copper) !important;
  background: linear-gradient(180deg, rgba(200,137,60,0.06) 0%, var(--ink-deep) 60%);
  box-shadow: 0 0 0 1px var(--copper), 0 10px 30px rgba(200,137,60,0.12);
}
.tier-popular {
  border-color: rgba(200,137,60,0.5);
}
.tier-luxe {
  border-color: rgba(168,85,247,0.35);
}
.tier-luxe.tier-active {
  border-color: #A855F7 !important;
  box-shadow: 0 0 0 1px #A855F7, 0 10px 30px rgba(168,85,247,0.18);
}

.tier-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-bright) 100%);
  color: var(--ink-deep);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tier-ribbon-luxe {
  background: linear-gradient(90deg, #6B85FF, #B373F8);
  color: white;
}

.tier-num {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.3rem;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.4rem;
}
.tier-price-dollar {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--copper);
  font-weight: 400;
}
.tier-price-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--bone);
  font-weight: 500;
  line-height: 1;
}
.tier-price-unit {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--bone-dim);
  margin-left: 0.3rem;
}
.tier-price-solo {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.tier-min {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.7rem;
}
.tier-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--bone);
  margin: 0 0 0.4rem;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.tier-tagline {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--bone-dim);
  line-height: 1.45;
  margin: 0 0 0.9rem;
  font-style: italic;
}
.tier-includes {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.tier-includes li {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--bone);
  line-height: 1.4;
  padding-left: 1.05rem;
  position: relative;
}
.tier-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.85rem;
}
.tier-luxe .tier-includes li::before { color: #B373F8; }

.tier-best {
  padding: 0.55rem 0.7rem;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--copper);
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.tier-luxe .tier-best { border-left-color: #B373F8; }
.tier-best-label {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.tier-best-text {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-dim);
  line-height: 1.35;
}

.tier-pinpoint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.55rem;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.22);
  background: linear-gradient(135deg, rgba(84,116,255,0.06), rgba(168,85,247,0.06));
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
  width: fit-content;
  white-space: nowrap;
}
.tier-pinpoint strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  background: linear-gradient(90deg, #6B85FF, #B373F8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.15rem;
}
.tier-pinpoint svg {
  filter: drop-shadow(0 1px 2px rgba(168,85,247,0.4));
}

.tier-cta {
  display: block;
  margin-top: auto;
  padding: 0.75rem 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  border-top: 1px solid var(--bone-line);
  font-weight: 600;
}
.tier-active .tier-cta {
  color: var(--copper-bright);
}
.tier-luxe.tier-active .tier-cta { color: #B373F8; }

/* Customize toggle button */
.customize-toggle {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.1rem;
  background: var(--ink-deep);
  border: 1px dashed var(--bone-line);
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.customize-toggle:hover {
  border-color: var(--copper);
  background: rgba(200,137,60,0.04);
}
.customize-toggle-sub {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone-faint);
  font-style: italic;
}

.customize-panel {
  margin-top: 1rem;
  padding: 1.4rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--bone-line);
  border-top: 2px solid var(--copper);
}

.customize-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.customize-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.2rem;
}
.customize-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bone);
  margin: 0;
}
.customize-reset {
  appearance: none;
  background: transparent;
  border: 1px solid var(--bone-line);
  padding: 0.5rem 0.85rem;
  color: var(--bone-dim);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.customize-reset:hover { color: var(--copper); border-color: var(--copper); }

.customize-hint {
  display: flex;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(200,137,60,0.08), rgba(200,137,60,0.03));
  border-left: 3px solid var(--copper);
  margin-bottom: 1.2rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--bone);
  line-height: 1.5;
}
.customize-hint-icon { font-size: 1.1rem; flex-shrink: 0; }
.customize-hint strong { color: var(--copper); }
.customize-hint-cta {
  display: inline-block;
  margin-top: 0.5rem;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--copper-bright);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
}

.customize-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.5rem;
  margin: 1rem 0 0.6rem;
  border-bottom: 1px solid var(--bone-line);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.customize-group-head span { color: var(--bone-faint); font-size: 0.55rem; }

.customize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 720px) { .customize-grid { grid-template-columns: 1fr; } }

.customize-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.customize-item:hover { border-color: var(--copper); }
.customize-item.active {
  border-color: var(--copper);
  background: rgba(200,137,60,0.04);
}
.customize-item.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.customize-item.disabled:hover { border-color: var(--bone-line); }
.customize-item.forced .customize-check {
  background: var(--copper);
  border-color: var(--copper);
}
.customize-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.customize-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--bone-line);
  background: var(--ink);
  flex-shrink: 0;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.customize-item.active .customize-check {
  background: var(--copper);
  border-color: var(--copper);
}
.customize-item.active .customize-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--ink-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.customize-item-body { flex: 1; min-width: 0; }
.customize-item-name {
  display: block;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone);
  line-height: 1.3;
}
.customize-item-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 0.2rem;
}
.customize-item-price {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--copper);
  font-weight: 500;
}

.customize-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  margin-top: 0.8rem;
  background: var(--ink);
  border: 1px solid var(--copper);
  flex-wrap: wrap;
  gap: 0.6rem;
}
.customize-foot > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.customize-foot-lbl {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.customize-foot-val {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--copper-bright);
  font-weight: 500;
}
.customize-foot-meta {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-dim);
  font-style: italic;
}
.customize-foot-meta strong { color: var(--bone); font-style: normal; }

/* =================================================
   Meal row v2 (size + protein dropdowns)
   ================================================= */
/* =================================================
   GUEST CARD — name-first plate picker (v3)
   ================================================= */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.8rem;
  background: rgba(200,137,60,0.04);
  border-left: 3px solid var(--copper);
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone-dim);
}
.guest-summary-bar strong { color: var(--bone); font-weight: 600; }
.guest-summary-total { margin-left: auto; color: var(--bone); }

.guest-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.guest-card {
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.guest-card:hover { border-color: rgba(200,137,60,0.5); }

/* ===== COLLAPSED state ===== */
.guest-card-collapsed {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  outline: none;
}
.guest-card-collapsed:focus-visible { border-color: var(--copper); }
.guest-card-num {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--bone-faint);
  font-weight: 600;
}
.guest-card-text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.guest-card-name {
  font-family: var(--f-display);
  font-size: 1.08rem;
  color: var(--bone);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guest-card-name-empty {
  color: var(--bone-faint);
  font-style: italic;
  font-weight: 400;
}
.guest-card-meta {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-dim);
  line-height: 1.3;
}
.guest-card-price {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--copper);
  font-weight: 500;
}

.guest-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== EXPANDED state ===== */
.guest-card-expanded {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px rgba(200,137,60,0.3), 0 8px 26px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, rgba(200,137,60,0.04) 0%, var(--ink-deep) 60%);
}

.guest-card-header {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem 0.85rem;
  border-bottom: 1px solid var(--bone-line);
}
.guest-card-name-input {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px dashed transparent;
  padding: 0.3rem 0;
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  width: 100%;
  outline: none;
  letter-spacing: -0.005em;
  transition: border-color var(--t-fast);
}
.guest-card-name-input::placeholder { color: var(--bone-faint); font-style: italic; }
.guest-card-name-input:focus { border-bottom-color: var(--copper); }

.guest-card-body {
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.guest-card-field-label {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* === Size pills === */
.size-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
}
@media (max-width: 600px) {
  .size-pills { grid-template-columns: repeat(3, 1fr); }
}
.size-pill {
  appearance: none;
  background: var(--ink);
  border: 1px solid var(--bone-line);
  padding: 0.55rem 0.5rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: var(--bone-dim);
  transition: all var(--t-fast);
}
.size-pill:hover {
  border-color: var(--copper);
  color: var(--bone);
  transform: translateY(-1px);
}
.size-pill.active {
  border-color: var(--copper);
  background: rgba(200,137,60,0.1);
  color: var(--copper-bright);
  box-shadow: 0 0 0 1px var(--copper);
}
.size-pill-label {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
.size-pill-sub {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
  line-height: 1.2;
  text-align: center;
}
.size-pill.active .size-pill-sub { color: var(--copper); opacity: 0.8; }

.guest-card-proteins {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.guest-card-proteins .quote-select {
  flex: 1;
  min-width: 0;
  font-size: 0.86rem;
}

.guest-card-share-info {
  padding: 0.75rem 0.9rem;
  background: rgba(200,137,60,0.05);
  border-left: 2px solid var(--copper);
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.4;
}
.guest-card-share-info strong { color: var(--bone); font-weight: 600; }

.guest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--bone-line);
  background: rgba(0,0,0,0.15);
}
.guest-card-price-large {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--copper-bright);
  font-weight: 500;
  line-height: 1;
}
.guest-card-price-unit {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-left: 0.35rem;
  font-weight: 400;
}
.guest-done-btn { min-width: 100px; }

/* === Add buttons === */
.guest-add-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.guest-add-primary {
  flex: 1 1 200px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.guest-add-bulk {
  flex: 0 0 auto;
  font-size: 0.65rem;
  opacity: 0.85;
}
.guest-add-bulk:hover { opacity: 1; }
.step-indicator {
  grid-column: 1 / -1;
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  background: rgba(15, 10, 7, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bone-line);
  flex-wrap: wrap;
}
.step-pill {
  appearance: none;
  background: transparent;
  border: 1px solid var(--bone-line);
  padding: 0.4rem 0.9rem 0.4rem 0.45rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--bone-dim);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.step-pill:hover { color: var(--bone); border-color: var(--copper); }
.step-pill.step-done {
  color: var(--copper-bright);
  border-color: var(--copper);
  background: rgba(200,137,60,0.06);
}
.step-pill-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-pill.step-done .step-pill-num {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--ink-deep);
}
.step-pill-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.step-pill-sep {
  width: 14px;
  height: 1px;
  background: var(--bone-line);
}
@media (max-width: 600px) {
  .step-indicator { padding: 0.65rem 0.9rem; gap: 0.2rem; }
  .step-pill { padding: 0.35rem 0.65rem 0.35rem 0.35rem; gap: 0.35rem; }
  .step-pill-label { font-size: 0.55rem; letter-spacing: 0.14em; }
  .step-pill-sep { width: 8px; }
}

/* =================================================
   EVENT TYPE CHIPS — Step 01
   ================================================= */
.event-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem 0;
}
.event-type-chip {
  appearance: none;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  color: var(--bone-dim);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.005em;
  transition: all var(--t-fast);
}
.event-type-chip:hover {
  border-color: var(--copper);
  color: var(--bone);
  transform: translateY(-1px);
}
.event-type-chip.active {
  border-color: var(--copper);
  background: rgba(200,137,60,0.1);
  color: var(--copper-bright);
  font-weight: 500;
  box-shadow: 0 0 0 1px var(--copper);
}

/* =================================================
   QUICK-ADD PRESETS — Step 03
   ================================================= */
.plate-add-row {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.plate-presets {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.015);
  border: 1px dashed var(--bone-line);
  min-width: 0;
}
.plate-presets-label {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-right: 0.3rem;
  white-space: nowrap;
  font-weight: 600;
}
.plate-preset-chip {
  appearance: none;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  color: var(--bone);
  padding: 0.45rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.82rem;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.plate-preset-chip:hover {
  border-color: var(--copper);
  background: rgba(200,137,60,0.06);
  color: var(--copper-bright);
  transform: translateY(-1px);
}
.meal-add-custom {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .plate-add-row { flex-direction: column; }
  .plate-presets { padding: 0.6rem 0.7rem; }
  .meal-add-custom { width: 100%; }
}

/* =================================================
   MEAL ROW — actions wrapper (dup + remove)
   ================================================= */
.meal-row-v2 {
  display: grid;
  grid-template-columns: 30px 110px 1fr 1.1fr 60px 80px 60px;
  gap: 0.5rem;
  align-items: center;
}
.meal-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  justify-self: end;
}
.dup-btn {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  color: var(--bone-faint);
  padding: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.dup-btn:hover {
  color: var(--copper);
  background: rgba(200,137,60,0.06);
  border-color: var(--copper);
}
@media (max-width: 720px) {
  .meal-row-v2 {
    grid-template-columns: 30px 1fr 1fr;
    grid-template-areas:
      "idx size size"
      "idx prot prot"
      "idx who who"
      "idx qty price"
      "idx actions actions";
  }
  .meal-row-v2 .meal-actions { grid-area: actions; justify-self: end; }
  .meal-row-v2 .remove-btn { position: static; }
}
.meal-row-v2 .meal-proteins {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.meal-row-v2 .meal-proteins .meal-protein {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.4rem;
  font-size: 0.76rem;
}
.meal-row-v2 .meal-who {
  padding: 0.55rem 0.6rem;
  font-size: 0.82rem;
  min-width: 0;
}
.meal-share-note {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-faint);
  font-style: italic;
  padding: 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meal-row-share .meal-size,
.meal-row-share .meal-who {
  background: var(--ink-deep);
}

.share-note {
  margin-top: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(168, 85, 247, 0.05);
  border-left: 2px solid #A855F7;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-dim);
  line-height: 1.5;
}
.share-note strong { color: var(--bone); font-weight: 600; }
@media (max-width: 720px) {
  .meal-row-v2 {
    grid-template-columns: 30px 1fr 1fr;
    grid-template-areas:
      "idx size size"
      "idx prot prot"
      "idx who who"
      "idx qty price"
      "idx rm rm";
  }
  .meal-row-v2 .meal-idx { grid-area: idx; }
  .meal-row-v2 .meal-size { grid-area: size; }
  .meal-row-v2 .meal-proteins { grid-area: prot; }
  .meal-row-v2 .meal-who { grid-area: who; }
  .meal-row-v2 .qty-input { grid-area: qty; }
  .meal-row-v2 .price-display { grid-area: price; }
  .meal-row-v2 .remove-btn { grid-area: rm; justify-self: end; }
}

.meal-empty {
  padding: 2.5rem 1.5rem;
  border: 1px dashed var(--bone-line);
  text-align: center;
  margin-bottom: 0.5rem;
  background: rgba(200,137,60,0.02);
}
.meal-empty-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.meal-empty p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

/* =================================================
   Step-04 add-on blocks
   ================================================= */
.addon-block {
  padding: 1.1rem 1.1rem 1.2rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
  margin-bottom: 0.8rem;
}
.addon-block-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--bone-line);
}
.addon-block-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bone);
}
.addon-block-sub {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--bone-dim);
  line-height: 1.4;
}

.addon-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 720px) { .addon-radio-grid { grid-template-columns: 1fr; } }

.addon-radio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 0.9rem;
  background: var(--ink);
  border: 1px solid var(--bone-line);
  cursor: pointer;
  transition: border-color var(--t-fast);
  position: relative;
}
.addon-radio:hover { border-color: var(--copper); }
.addon-radio.active {
  border-color: var(--copper);
  background: rgba(200,137,60,0.05);
}
.addon-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.addon-radio-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.addon-radio-title {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone);
  font-weight: 500;
}
.addon-radio-sub {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.addon-radio-price {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--copper);
  font-weight: 500;
}
.addon-radio.active .addon-radio-price { color: var(--copper-bright); }

/* =================================================
   Review modal — WHAT WE BRING / YOU PROVIDE
   ================================================= */
.review-clarity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0.4rem 0 1.2rem;
}
@media (max-width: 600px) { .review-clarity { grid-template-columns: 1fr; } }

.review-clarity-col {
  padding: 1rem 1.1rem 1.1rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
}
.review-clarity-bring { border-left: 3px solid var(--copper); }
.review-clarity-provide { border-left: 3px solid #ff9b6a; background: rgba(255,155,106,0.03); }

.review-clarity-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 600;
  margin-bottom: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--bone-line);
}
.review-clarity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
}
.review-clarity-bring .review-clarity-icon { background: var(--copper); color: var(--ink-deep); }
.review-clarity-provide .review-clarity-icon { background: #ff9b6a; color: var(--ink-deep); }

.review-clarity-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.review-clarity-col li {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone);
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}
.review-clarity-bring li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
}
.review-clarity-provide li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff9b6a;
  font-weight: 700;
}
.review-clarity-empty {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--bone-dim);
  font-style: italic;
  margin: 0;
}

.shares-row {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem 1.1rem;
  background: rgba(255,255,255,0.015);
  border: 1px dashed var(--bone-line);
}
.shares-row-head {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.shares-row-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bone);
}
.shares-row-sub {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--bone-dim);
  font-style: italic;
}
.shares-row-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .shares-row-counters { grid-template-columns: 1fr; }
}

/* =================================================
   Pricing page — new tier-aware tables
   ================================================= */
.pricing-table-block {
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem 1.6rem;
  background: var(--ink-deep);
  border: 1px solid var(--bone-line);
}
.pricing-block-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bone);
  margin: 0 0 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--bone-line);
}
.pricing-block-title span {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 400;
}
.pricing-block-note {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--bone-dim);
  font-style: italic;
  margin: 0.8rem 0 0;
  line-height: 1.5;
}
.pricing-block-note strong {
  font-style: normal;
}
.pricing-block-note .pp-blue { color: #6B85FF; font-weight: 700; }
.pricing-block-note .pp-purple { color: #B373F8; font-weight: 700; }

.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .pricing-grid-2 { grid-template-columns: 1fr; } }

.price-table-v2 {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.price-table-v2 th,
.price-table-v2 td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--bone-line);
  text-align: left;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone);
}
.price-table-v2 th {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
}
.price-table-v2 th.num,
.price-table-v2 td.price,
.price-table-v2 td.kids,
.price-table-v2 td.none {
  text-align: right;
  white-space: nowrap;
}
.price-table-v2 .price {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--copper);
  font-weight: 500;
}
.price-table-v2 .kids {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--bone-dim);
  letter-spacing: 0.05em;
}
.price-table-v2 .lobster .price {
  color: var(--red-ember, #ff7050);
}
.price-table-v2 tbody tr:last-child td { border-bottom: none; }
.price-table-v2 td em {
  color: var(--bone-faint);
  font-style: italic;
}

/* Matrix table — tier breakdown */
.price-table-matrix th {
  white-space: normal;
  line-height: 1.25;
}
.price-table-matrix .th-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 400;
  margin-top: 0.15rem;
}
.price-table-matrix td:first-child {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone);
  white-space: nowrap;
}
.price-table-matrix tbody tr:hover td {
  background: rgba(200,137,60,0.03);
}

/* ===== Pinpoint Parties cross-promo placements ===== */
/* Brighter brand colors for dark backgrounds */
.footer-partner .pp-blue,
.pp-modal-credit .pp-blue,
.meta-chip-pp .pp-blue { color: #6B85FF !important; }
.footer-partner .pp-purple,
.pp-modal-credit .pp-purple,
.meta-chip-pp .pp-purple { color: #B373F8 !important; }

/* Footer partner credit row */
.footer-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.4rem 0 1rem;
  border-top: 1px solid rgba(245, 238, 224, 0.06);
  margin-top: 1.5rem;
}
.footer-partner-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.42);
  font-weight: 500;
}
.footer-partner-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--t-fast, 0.18s ease), filter var(--t-fast, 0.18s ease);
}
.footer-partner-mark:hover {
  transform: translateY(-1px);
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(168, 85, 247, 0.35));
}
.footer-partner-mark svg {
  filter: drop-shadow(0 1px 3px rgba(168, 85, 247, 0.45));
}
.footer-partner-tld {
  color: rgba(245, 238, 224, 0.4);
  font-weight: 500;
}
@media (max-width: 600px) {
  .footer-partner { flex-direction: column; gap: 0.5rem; padding: 1.2rem 0 0.8rem; }
}

/* Modal credit (only when premium add-ons selected) */
.pp-modal-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(135deg, rgba(84, 116, 255, 0.06), rgba(168, 85, 247, 0.06));
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: rgba(245, 238, 224, 0.78);
  line-height: 1.4;
}
.pp-modal-credit strong {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pp-modal-credit svg {
  filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.4));
  flex-shrink: 0;
}

/* Meta chip — Pinpoint Parties (matches existing meta-chip styles) */
.meta-chip-pp .meta-value {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
}
.meta-chip-pp .meta-chip-pin {
  filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.4));
  margin-right: 0.05rem;
}

/* Policy card — corner badge */
.policy-card { position: relative; }
.policy-pp-badge {
  position: absolute;
  top: 1rem;
  right: 3.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem 0.3rem 0.45rem;
  border-radius: 100px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: linear-gradient(135deg, rgba(84, 116, 255, 0.06), rgba(168, 85, 247, 0.06));
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.65);
  font-weight: 500;
}
.policy-pp-badge strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  background: linear-gradient(90deg, #6B85FF, #B373F8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.policy-pp-badge svg {
  filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.4));
}
@media (max-width: 600px) {
  .policy-pp-badge {
    position: static;
    margin: -0.4rem 0 0.6rem;
    width: fit-content;
  }
}

/* =========================================================
   MOBILE / TABLET FIT — prevent horizontal swipe + cut-offs
   Appended 2026-05-21. ALL desktop layout is untouched; every
   rule below is either inside a (max-width) media query or
   is a safe substitution (clip vs hidden) that desktop honors
   identically.
   ========================================================= */

/* ---- iOS Safari fix: replace overflow-x:hidden (which breaks
        position:fixed on the nav, causing the "gap at top" on
        iPhone) with overflow-x:clip. Visual result is identical
        on desktop, but fixed positioning starts working again
        on iOS. Applies everywhere because the bug exists
        everywhere; behavior is unchanged on desktop. */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ---- iOS safe-area fill: extend the nav background UP through
        the status-bar / Dynamic Island region so the very top of
        the screen is the same dark color as the header bar (no
        gap, no see-through page content). Pairs with
        viewport-fit=cover in the meta tag. env() resolves to 0
        everywhere except iOS notch/island devices, so desktop
        is untouched. */
nav.site-nav {
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}
/* And push page content down by the same amount so it still
   clears the nav. */
.page { padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); }
/* Mobile menu (drawer) drops below the extended nav too */
.mobile-menu { top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); }
/* Sticky elements anchored to the nav (step indicator, summary) */
.step-indicator,
.quote-summary { top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); }

/* On phones/tablets, make the nav SOLID OPAQUE so no scrolling
   page content can show through the glass effect — that
   transparency was the source of the "gap" the user kept
   reporting (content blurred through the nav looked like a gap).
   Desktop keeps its glassmorphism look. */
@media (max-width: 1024px) {
  nav.site-nav {
    background: #0a0703 !important;        /* fully opaque ink-deep */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ---- BULLETPROOF dark filler at the very top of the screen ----
   The .ios-safe-fill <div> sits before the nav in the DOM with
   position:fixed at top:0, full width, dark background. Its height
   is the safe-area inset (the Dynamic Island region). On desktop
   env() = 0 so the fill is 0px tall and invisible — desktop
   completely unaffected. On iPhone with notch/Dynamic Island,
   env() returns ~47-59px and the fill paints the area solid dark
   so page content can't show through. This is independent of the
   nav's own padding — even if env() somehow fails on the nav, the
   fill still works because it's a real DOM element. */
.ios-safe-fill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #0a0703;
  z-index: 1001;        /* above nav (1000) so it always wins */
  pointer-events: none; /* never intercepts taps */
}

/* Tablet & phone — the actual viewport-fit work happens here */
@media (max-width: 1024px) {

  /* Defensive: nothing exceeds the viewport width */
  body, .page, .hero, section, .section, .cta-band,
  .page-hero, .menu-meta, .footer-top, .footer-bottom,
  footer { max-width: 100vw; }

  /* Inline imagery shouldn't push the page wider */
  img, video { max-width: 100%; height: auto; }
}

/* ---- Premium catalog launcher (Pinpoint Parties box) ----
        On narrow screens the "PREMIUM ADD-ONS · powered by
        PinpointParties" pill was forced to ~370px by its
        nowrap children and got clipped. Let it wrap. */
@media (max-width: 560px) {
  .catalog-launcher { padding: 1.4rem 1.1rem; }
  .catalog-launcher-tag {
    flex-wrap: wrap;
    row-gap: 0.25rem;
    padding: 0.45rem 0.8rem;
    max-width: 100%;
  }
  .cl-tag-eyebrow,
  .cl-tag-by,
  .cl-tag-brand { white-space: normal; }
  .cl-tag-brand { font-size: 0.82rem; }
  .cl-tag-dot { display: none; }
  .catalog-launcher-title { font-size: 1.2rem; }
  .catalog-launcher-meta { font-size: 0.9rem; }
  .catalog-launcher-cta {
    padding: 0.85rem 1.2rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }
  .cl-chip {
    font-size: 0.55rem;
    padding: 0.35rem 0.55rem;
    letter-spacing: 0.14em;
  }
}

/* ---- Price tables — keep internal h-scroll on mobile so they
        never push the page wide ---- */
@media (max-width: 640px) {
  .pricing-table-block {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.1rem 1rem 1.2rem;
  }
  .price-table-v2 { font-size: 0.88rem; }
  .price-table-v2 th,
  .price-table-v2 td { padding: 0.6rem 0.7rem; }
  .price-table-matrix { min-width: 480px; }
  .price-table-matrix td:first-child { white-space: normal; }
}

/* ---- Menu meta chips — wrap cleanly on narrow ---- */
@media (max-width: 600px) {
  .menu-meta { padding: 2rem var(--rail); }
  .menu-meta-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .meta-chip { padding: 0.85rem 0.9rem; }
  .meta-value { font-size: 0.92rem; }
  .meta-chip-pp .meta-value { font-size: 0.82rem; flex-wrap: wrap; }
}
@media (max-width: 380px) {
  .menu-meta-grid { grid-template-columns: 1fr; }
}

/* ---- Tier cards — already stack at 720px, just tighten ---- */
@media (max-width: 560px) {
  .tier-card { padding: 1.6rem 1.4rem; }
  .tier-price-num { font-size: 3rem; }
  .tier-includes li { font-size: 0.92rem; }
}

/* ---- Quote builder + summary tightened on phones ---- */
@media (max-width: 700px) {
  .quote-wrap { min-height: 0; }
  .quote-builder, .quote-summary { padding: 1.6rem 1.2rem; }
}

/* ---- Nav: brand text shrinks so it doesn't crowd the burger ---- */
@media (max-width: 420px) {
  .nav-brand-top { font-size: 0.9rem; }
  .nav-brand-bottom { font-size: 0.55rem; letter-spacing: 0.18em; }
  .cl-tag-wordmark,
  .tier-pinpoint,
  .tier-detail-pinpoint,
  .footer-partner { white-space: normal; }
}

/* ---- Hero on tiny phones ---- */
@media (max-width: 380px) {
  .hero-title { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-cta .btn { max-width: 100%; }
}
