/* ===========================================================
   Escape The Space — clean, light & airy theme
   =========================================================== */

:root {
  --bg: #fbfaf7;
  --bg-soft: #f3f1ea;
  --surface: #ffffff;
  --ink: #0a0a0a;          /* brand black */
  --ink-soft: #4a4a44;
  --line: #e6e4da;
  --accent: #faec17;       /* brand yellow */
  --accent-dark: #e0d200;  /* darker yellow (hover) */
  --accent-soft: #fdf7b0;  /* soft yellow highlight */
  --gold: #f2d800;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 10px 40px rgba(28, 28, 26, 0.07);
  --shadow-soft: 0 4px 18px rgba(28, 28, 26, 0.05);
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
p a, .info-list a, .addon-list a, details.faq p a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-decoration-color: var(--accent);
  font-weight: 600;
}

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0a0a0a; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }
.btn-primary:hover { background: #0a0a0a; color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #0a0a0a;
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}
.brand .brand-logo {
  height: 40px; width: auto;
  display: block;
  flex: 0 0 auto;
}
/* Official brain-bulb mark: light-outline version by day, white version in dark mode */
.logo-d { display: none !important; }
html.dark .logo-l { display: none !important; }
html.dark .logo-d { display: block !important; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 1.5rem; color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav .nav-cta .btn-ghost { display: none; }
  .nav .nav-cta .btn-primary { padding: 9px 17px; font-size: 0.85rem; box-shadow: none; }
  .nav-cta { gap: 6px; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-tight { padding: 56px 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 26px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art {
  background:
    radial-gradient(120% 120% at 100% 0%, #fff8c9 0%, var(--bg-soft) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-art .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat .num { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.stat .label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.hero-note {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* brand splash band — logo links home; CLICK ME toggles light/dark */
.brand-splash { background: #0a0a0a; padding: 22px 20px 20px; }
.brand-splash-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.brand-splash-logo { display: block; }
.brand-splash-img { width: 100%; max-width: 640px; height: auto; display: block; transition: transform 0.15s ease; }
.brand-splash-logo:hover .brand-splash-img { transform: scale(1.015); }
.brand-splash-cta {
  background: var(--accent); color: #0a0a0a; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(250, 236, 23, 0.25); transition: background 0.15s ease, transform 0.15s ease;
  border: none; cursor: pointer; font-family: inherit;
}
.brand-splash-cta:hover { background: #fff; transform: translateY(-1px); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.97rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}

/* room card */
.room-card { padding: 0; overflow: hidden; }
.room-card .room-body { padding: 24px 26px 28px; }
.room-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
/* emoji badge straddling the photo edge — matches book.etspace.us room cards */
.room-card { position: relative; }
.room-card .room-emoji {
  position: absolute; right: 16px; margin-top: -36px; z-index: 3;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; line-height: 1;
  background: #15140f; color: #fff; border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--rc, #faec17), 0 8px 20px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}
.room-meta { display: flex; gap: 16px; margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.room-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--ink); border-width: 2px; box-shadow: var(--shadow); }
.price-card .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0a0a0a;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-card .amount { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 2px; }
.price-card .amount small { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.price-card .sub { font-size: 0.92rem; color: var(--ink-soft); }
.addon-list { list-style: none; padding: 0; margin: 0; }
.addon-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.addon-list li:last-child { border-bottom: none; }
.addon-list .name { font-weight: 700; color: var(--ink); }
.addon-list .desc { font-size: 0.9rem; color: var(--ink-soft); }
.addon-list .cost { font-weight: 800; color: #0a0a0a; background: var(--accent-soft); padding: 2px 9px; border-radius: 6px; white-space: nowrap; }

/* ---------- Info rows ---------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }
.info-list .ico { font-size: 1.2rem; line-height: 1.5; }
.info-list strong { color: var(--ink); }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--ink); font-weight: 400; }
details.faq[open] summary::after { content: "\2013"; }
details.faq p { padding-bottom: 16px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: #050505;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.74); max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------- Booking embed ---------- */
.book-frame-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 10px;
  overflow: hidden;
}
.book-frame-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--ink); }
.footer-about p { font-size: 0.95rem; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.86rem; color: var(--ink-soft);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
}

/* ---------- Page header ---------- */
.page-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.page-head .lead { margin-top: 6px; }

/* ---------- Lightbulb toggle + Dark mode ---------- */
.brand-logo { cursor: pointer; transition: filter 0.3s ease, transform 0.2s ease; }
.brand-logo:hover { transform: scale(1.06); }

body, .site-header, .card, .chip, .hero-art, .hero-note, .stat,
.book-frame-wrap, details.faq, .page-head, section, .site-footer {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

html.dark {
  --bg: #0b0b0b;
  --bg-soft: #151514;
  --surface: #1b1b19;
  --ink: #f4f3ee;
  --ink-soft: #b6b5ac;
  --line: #2c2c28;
  --accent-soft: #4a4520;
}
html.dark body { background: var(--bg); }
html.dark .site-header { background: rgba(11, 11, 11, 0.82); }
html.dark .hero-art {
  background: radial-gradient(120% 120% at 100% 0%, #2a2710 0%, var(--bg-soft) 55%);
}
html.dark .brand-logo { filter: drop-shadow(0 0 8px rgba(250, 236, 23, 0.6)); }
html.dark .cta-band { border: 1px solid var(--line); }
html.dark .card .tag { color: var(--accent); }
html.dark .addon-list .cost { color: var(--accent); }
html.dark .chip { box-shadow: none; }

/* utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- live openings strip (homepage) ----------
   Fixed brand-black band in BOTH themes (never var(--ink): it flips light in dark mode). */
.live-strip { background: #0a0a0a; padding: 14px 0; }
.live-strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.live-strip strong { color: #faec17; font-size: 1.02rem; }
.live-strip .live-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.live-strip .chip { background: rgba(255, 255, 255, 0.1); color: #f4f3ee; border: 1px solid rgba(255, 255, 255, 0.22); box-shadow: none; }
.live-strip .live-from { color: #cfcec5; font-weight: 600; font-size: 0.95rem; }
.live-strip .btn { padding: 9px 18px; background: #faec17; color: #0a0a0a; }
.live-strip .btn:hover { background: #fff; color: #0a0a0a; }
.live-strip .live-note { flex-basis: 100%; text-align: center; color: #b6b5ac; font-size: 0.85rem; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: #35c759; box-shadow: 0 0 0 0 rgba(53, 199, 89, 0.6); animation: livepulse 1.8s infinite; flex: 0 0 auto; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(53, 199, 89, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(53, 199, 89, 0); } 100% { box-shadow: 0 0 0 0 rgba(53, 199, 89, 0); } }

/* ---------- instant quote (pricing page) ---------- */
.quote-card { max-width: 720px; margin: 0 auto; }
.quote-card:hover { transform: none; }
.quote-controls { display: flex; align-items: flex-end; justify-content: center; gap: 18px; flex-wrap: wrap; }
.qfield { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.qfield input[type="date"] { font: inherit; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; min-width: 170px; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface); }
.qty button { font: inherit; font-size: 1.2rem; font-weight: 700; width: 44px; height: 44px; border: 0; background: var(--bg-soft); color: var(--ink); cursor: pointer; }
.qty button:hover { background: var(--accent); }
.qty span { min-width: 52px; text-align: center; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.quote-result { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 22px; }
.quote-total-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.quote-total { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }
.qlines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.qline { display: flex; justify-content: space-between; gap: 14px; font-size: 0.97rem; color: var(--ink-soft); }
.qline span:last-child { font-weight: 700; color: var(--ink); }
.quote-rooms { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ---------- 2026 rate card ---------- */
.rate-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.rate-table td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; }
.rate-table .per { color: var(--ink-soft); font-weight: 500; font-size: 0.82rem; }
.qfield .qhint { font-weight: 500; text-transform: none; letter-spacing: 0; }
.qty input[type="number"] { border: 0; width: 64px; text-align: center; font: inherit; font-size: 1.15rem; font-weight: 800; color: var(--ink); background: transparent; -moz-appearance: textfield; appearance: textfield; }
.qty input[type="number"]::-webkit-outer-spin-button, .qty input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type="number"]:focus { outline: none; }

/* ---------- family-owned stat: memoji duo front and center over the card ---------- */
.stat-family { position: relative; overflow: visible; padding-top: 52px; }
.stat-duo { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); display: flex; }
.stat-duo img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; background: var(--accent); border: 3px solid #0a0a0a; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
.stat-duo img + img { margin-left: -20px; }
html.dark .stat-duo img { border-color: var(--accent); }

/* ---------- stat-card artwork: circular badges matching the memoji rings ---------- */
.stat { position: relative; overflow: visible; }
.hero-art .stat { padding-top: 52px; }
.stat-badge { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 72px; height: 72px; border-radius: 50%; background: var(--accent); border: 3px solid #0a0a0a; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); display: flex; align-items: center; justify-content: center; overflow: hidden; pointer-events: none; }
html.dark .stat-badge { border-color: var(--accent); }
/* lock BODIES render identical (unlocked's open shackle pads its frame); rotations mirror each other */
.stat-badge .art-locked { height: 46px; width: auto; transform: rotate(-8deg); }
.stat-badge .art-unlocked { height: 48px; width: auto; transform: rotate(8deg); }
/* the key lies nearly flat inside its ring */
.stat-badge .art-key { height: 54px; width: auto; transform: rotate(-72deg); }

/* ---------- spread-the-fun social band ---------- */
.brag-strip { background: #0a0a0a; padding: 26px 0; }
.brag-strip-inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.brag-copy { display: flex; flex-direction: column; text-align: center; }
.brag-copy strong { color: #faec17; font-size: 1.12rem; letter-spacing: -0.01em; }
.brag-copy span { color: #b6b5ac; font-size: 0.9rem; }
.brag-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.brag-actions .btn { padding: 10px 18px; font-size: 0.9rem; }
.brag-actions .btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.brag-actions .btn-primary { background: #faec17; color: #0a0a0a; }
.brag-actions .btn-primary:hover { background: #fff; color: #0a0a0a; }
.brag-ghost { background: transparent; color: #f4f3ee; border: 1.5px solid rgba(255, 255, 255, 0.28); }
.brag-ghost:hover { border-color: #faec17; color: #faec17; text-decoration: none; }

/* ---------- hero: centered composition ---------- */
.hero .hero-grid > div:first-child { text-align: center; }
.hero .lead { margin-left: auto; margin-right: auto; }
.hero .hero-badges { justify-content: center; }
.hero .hero-cta { justify-content: center; }

/* ===========================================================
   MOBILE PASS — tighten phone layout, kill horizontal overflow
   =========================================================== */
/* grid/flex items may never force tracks wider than the screen */
.hero-grid > * { min-width: 0; }
.stat { min-width: 0; }
.grid > * { min-width: 0; }

@media (max-width: 860px) {
  /* compact vertical rhythm */
  section { padding: 52px 0; }
  .section-tight { padding: 38px 0; }
  .hero { padding: 14px 0 44px; }
  h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .lead { font-size: 1.05rem; }
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }

  /* header brand: one line, sized to fit next to Book Now */
  .brand span { font-size: 0.98rem; white-space: nowrap; }
  .brand .brand-logo { height: 34px; }
  .nav { height: 62px; }
  .nav-links { top: 62px; }

  /* hero stat card */
  .hero-art { padding: 20px; }
  .hero-art .stat-row { gap: 12px; }
  .hero-art .stat { padding: 16px 8px; }
  .hero-art .stat { padding-top: 46px; }
  .stat .num { font-size: 1.5rem; letter-spacing: -0.02em; }
  .stat-family .num, .stat .num[style] { font-size: 1.18rem !important; line-height: 1.9rem !important; }
  .stat .label { font-size: 0.74rem; }
  .stat-duo img { width: 58px; height: 58px; }
  .stat-duo { top: -24px; }
  .stat-badge { width: 58px; height: 58px; top: -24px; }
  .stat-badge .art-locked { height: 37px; }
  .stat-badge .art-unlocked { height: 39px; }
  .stat-badge .art-key { height: 44px; }
  .hero-note { font-size: 0.84rem; padding: 13px 14px; }

  /* chips + CTAs breathe evenly when centered */
  .hero-badges { gap: 8px; margin: 20px 0 24px; }
  .chip { padding: 6px 12px; font-size: 0.8rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn-lg { padding: 14px 24px; font-size: 0.98rem; }

  /* brag band */
  .brag-strip { padding: 22px 0; }
  .brag-actions { gap: 8px; }
  .brag-actions .btn { padding: 9px 14px; font-size: 0.85rem; }

  /* rate tables never push the page sideways */
  .rate-table td { font-size: 0.88rem; }
  .quote-controls { gap: 12px; }
}

@media (max-width: 400px) {
  .stat .num { font-size: 1.3rem; }
  .brand span { font-size: 0.9rem; }
}

/* room-card emoji badges: mobile sizing */
@media (max-width: 860px) { .room-card .room-emoji { width: 54px; height: 54px; font-size: 1.7rem; margin-top: -32px; } }
