/* =====================================================================
   Beverly Hills Lux Ride — Comfort Hub
   Editorial visual layer. Single shared stylesheet for /comfort/ + all sub-pages.

   Design directive: read like an editorial spread, not a SaaS landing page.
   - Big confident serif headlines (Cormorant Garamond)
   - Tiny uppercase em-dash labels, generous letter-spacing
   - Hairline rules, no decorative blobs/orbs/icons
   - Real semantic <img> tags with lazy loading + width/height (no CLS)
   - One accent used sparingly
   - Confident negative space; minimal card surfaces
   - Live primary CTA — shimmer + breathing shadow + arrow idle drift
   ===================================================================== */

:root {
  --ch-radius:        18px;
  --ch-radius-lg:     24px;
  --ch-line-soft:     1px solid color-mix(in srgb, var(--border-color, #e5e7eb) 70%, transparent);
  --ch-line:          1px solid var(--border-color, #e5e7eb);
  --ch-line-strong:   1px solid color-mix(in srgb, var(--text-primary, #111) 18%, transparent);
  --ch-surface:       color-mix(in srgb, var(--bg-secondary, #fff) 90%, transparent);
  --ch-surface-soft:  color-mix(in srgb, var(--bg-secondary, #fff) 60%, transparent);
  --ch-ink:           var(--text-primary);
  --ch-ink-soft:      var(--text-secondary);
  --ch-ink-mute:      var(--text-muted);
  --ch-accent:        var(--accent-color, #0E9F6E);
  --ch-accent-2:      color-mix(in srgb, var(--accent-color, #0E9F6E) 72%, #000 28%);
  --ch-ease:          cubic-bezier(.16, 1, .3, 1);
  --ch-ease-soft:     cubic-bezier(.4, 0, .2, 1);
}

html[data-theme="dark"] {
  --ch-line-soft:     1px solid color-mix(in srgb, var(--border-color, #2a2a2e) 70%, transparent);
  --ch-line:          1px solid var(--border-color, #2a2a2e);
  --ch-line-strong:   1px solid color-mix(in srgb, #fff 18%, transparent);
}

/* ===== Layout shell ===== */
.comfort-hub {
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 60% at 50% -10%, color-mix(in srgb, var(--ch-accent) 7%, transparent) 0%, transparent 60%),
    var(--bg-primary);
}
.comfort-hub *,
.comfort-hub *::before,
.comfort-hub *::after { box-sizing: border-box; }

.comfort-hub::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0, transparent 3px,
    color-mix(in srgb, var(--ch-ink) 1.4%, transparent) 3px,
    color-mix(in srgb, var(--ch-ink) 1.4%, transparent) 4px
  );
  opacity: .35; mix-blend-mode: multiply;
}
html[data-theme="dark"] .comfort-hub::before { mix-blend-mode: screen; opacity: .15; }

.ch-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.ch-wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

.ch-section { padding: 120px 0; position: relative; }
.ch-section + .ch-section { border-top: var(--ch-line-soft); }
@media (max-width: 720px) { .ch-section { padding: 70px 0; } }

/* ===== Scroll progress bar ===== */
.ch-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--ch-accent), var(--ch-accent-2));
  z-index: 1102; pointer-events: none; transition: width .12s linear;
}

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ch-ease), transform 1s var(--ch-ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ===== Typography ===== */
.ch-label {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ch-ink-mute);
}
.ch-label::before {
  content: ""; width: 28px; height: 1px;
  background: currentColor; flex-shrink: 0; align-self: center;
}

.ch-chapter {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 400; line-height: .9; letter-spacing: -.025em;
  color: color-mix(in srgb, var(--ch-ink) 8%, transparent);
  margin: 0 0 -10px -2px; user-select: none;
}

.ch-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 500; line-height: 1.02; letter-spacing: -.018em;
  color: var(--ch-ink);
  margin: 18px 0 28px;
  max-width: 14ch;
}
.ch-h1-lede {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65; color: var(--ch-ink-soft);
  max-width: 56ch; font-weight: 400;
}

.ch-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 500; line-height: 1.05; letter-spacing: -.012em;
  color: var(--ch-ink);
  margin: 14px 0 20px;
  max-width: 18ch;
}

.ch-lede {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.7;
  color: var(--ch-ink-soft); max-width: 62ch; margin: 0 0 18px;
}
.ch-lede strong { color: var(--ch-ink); font-weight: 600; }

.ch-note {
  display: block; margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: .04em;
  color: var(--ch-ink-mute); font-style: italic;
  max-width: 56ch;
}

/* ===== Buttons (with live animations on primary) ===== */
.ch-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: center; }

.ch-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13.5px;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0;
  transition: background .35s var(--ch-ease-soft), color .35s var(--ch-ease-soft),
              transform .35s var(--ch-ease), border-color .3s ease, box-shadow .4s ease;
  white-space: nowrap; border-radius: 0;
  isolation: isolate;
}

/* PRIMARY — LIVE BOOKING CTA */
.ch-btn.primary {
  background: var(--ch-ink);
  color: var(--bg-primary);
  border: 1px solid var(--ch-ink);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--ch-ink) 18%, transparent);
  animation: chBreathe 4.2s ease-in-out infinite;
}
/* Travelling shimmer line — passes left-to-right every 3.5s */
.ch-btn.primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    color-mix(in srgb, #fff 38%, transparent) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  pointer-events: none; z-index: 1;
  animation: chShimmer 3.6s ease-in-out infinite;
}
/* Inner border highlight — bottom edge accent line */
.ch-btn.primary::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--ch-accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .55s var(--ch-ease);
  pointer-events: none; z-index: 1;
}
.ch-btn.primary:hover {
  background: var(--ch-accent);
  border-color: var(--ch-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--ch-accent) 35%, transparent);
  animation-play-state: paused;
}
.ch-btn.primary:hover::after { transform: scaleX(1); background: rgba(255,255,255,.55); }
.ch-btn.primary > * { position: relative; z-index: 2; }

@keyframes chBreathe {
  0%, 100% { box-shadow: 0 8px 24px color-mix(in srgb, var(--ch-ink) 18%, transparent); }
  50%      { box-shadow: 0 14px 36px color-mix(in srgb, var(--ch-ink) 26%, transparent); }
}
@keyframes chShimmer {
  0%   { transform: translateX(-110%); }
  60%  { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}
@keyframes chArrowDrift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

.ch-btn .arrow {
  display: inline-block;
  animation: chArrowDrift 2.2s ease-in-out infinite;
  transition: transform .35s var(--ch-ease);
}
.ch-btn:hover .arrow { animation: none; transform: translateX(8px); }

.ch-btn.ghost {
  background: transparent;
  color: var(--ch-ink);
  border: 1px solid var(--ch-ink);
}
.ch-btn.ghost:hover { background: var(--ch-ink); color: var(--bg-primary); transform: translateY(-1px); }
.ch-btn:focus-visible { outline: 2px solid var(--ch-accent); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .ch-btn.primary { animation: none; }
  .ch-btn.primary::before { animation: none; opacity: 0; }
  .ch-btn .arrow { animation: none; }
}

/* ===== Breadcrumb ===== */
.ch-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ch-ink-mute); margin-bottom: 56px;
}
.ch-breadcrumb a { color: var(--ch-ink-mute); text-decoration: none; transition: color .25s ease; }
.ch-breadcrumb a:hover { color: var(--ch-accent); }
.ch-breadcrumb .sep { margin: 0 10px; opacity: .6; }

/* ===== HERO ===== */
.ch-hero { padding: 80px 0 0; position: relative; }
.ch-hero-head { max-width: 880px; margin-bottom: 64px; }
.ch-hero-meta { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 44px; }
.ch-hero-fact { min-width: 0; max-width: 220px; }
.ch-hero-fact .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 500; line-height: 1; color: var(--ch-ink);
  letter-spacing: -.02em; margin: 0 0 8px;
}
.ch-hero-fact .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ch-ink-mute);
}

/* Full-bleed responsive hero photo */
.ch-hero-photo {
  position: relative; width: 100%;
  overflow: hidden;
  margin-top: 24px;
  background: color-mix(in srgb, var(--ch-ink) 6%, transparent); /* fallback while loading */
}
.ch-hero-photo .ch-img {
  display: block; width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover; object-position: center 35%;
  will-change: transform;
  transition: transform 1.6s var(--ch-ease);
}
.ch-hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.ch-hero-photo .caption {
  position: absolute; left: 28px; right: 28px; bottom: 22px;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  color: #fff;
}
.ch-hero-photo .caption .ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500; letter-spacing: -.005em; margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.ch-hero-photo .caption .meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  opacity: .92; text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
@media (max-width: 720px) {
  .ch-hero-photo .ch-img { aspect-ratio: 4/5; object-position: center; }
  .ch-hero-photo .caption { flex-direction: column; align-items: flex-start; gap: 8px; left: 20px; right: 20px; bottom: 20px; }
}

/* ===== Section header ===== */
.ch-section-head { margin-bottom: 56px; max-width: 880px; }
.ch-section-head .ch-label { margin-bottom: 18px; }

/* ===== Tiers ===== */
.ch-tiers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-color, #e5e7eb);
  border: var(--ch-line);
  margin-top: 8px;
}
@media (max-width: 1024px) { .ch-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ch-tiers { grid-template-columns: 1fr; } }

.ch-tier {
  position: relative;
  background: var(--bg-primary);
  padding: 36px 28px 32px;
  transition: background .3s ease;
  display: flex; flex-direction: column;
}
.ch-tier:hover { background: color-mix(in srgb, var(--ch-accent) 4%, var(--bg-primary)); }
.ch-tier .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 400; line-height: 1;
  color: color-mix(in srgb, var(--ch-ink) 22%, transparent);
  margin-bottom: 22px; letter-spacing: -.02em;
}
.ch-tier h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 28px; line-height: 1.1;
  margin: 0 0 4px; color: var(--ch-ink); letter-spacing: -.008em;
}
.ch-tier .sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ch-ink-mute); margin-bottom: 18px;
}
.ch-tier .fit { font-size: 14px; line-height: 1.6; color: var(--ch-ink-soft); margin: 0 0 12px; }
.ch-tier .fit strong { color: var(--ch-ink); font-weight: 600; }
.ch-tier .pax-line {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: .04em; color: var(--ch-ink-mute);
  padding-top: 14px; border-top: var(--ch-line-soft);
  margin-top: auto; margin-bottom: 16px;
}
.ch-tier .pax-line strong { color: var(--ch-ink); font-weight: 600; }
.ch-tier .ch-tier-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ch-ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s var(--ch-ease), color .25s ease;
}
.ch-tier .ch-tier-cta:hover { gap: 14px; color: var(--ch-accent); }
.ch-tier .ch-tier-cta::after { content: "→"; }

/* ===== Fleet (3 photo cards with real <img>) ===== */
.ch-fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px; }
@media (max-width: 900px) { .ch-fleet { grid-template-columns: 1fr; gap: 36px; } }
.ch-fleet-card { position: relative; }
.ch-fleet-card .photo-wrap {
  position: relative; width: 100%;
  overflow: hidden;
  background: color-mix(in srgb, var(--ch-ink) 6%, transparent);
}
.ch-fleet-card .photo-wrap .ch-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/5;
  object-fit: cover; object-position: center;
  transition: transform 1.4s var(--ch-ease);
  will-change: transform;
}
.ch-fleet-card .photo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
  transition: opacity .4s ease;
}
.ch-fleet-card:hover .photo-wrap .ch-img { transform: scale(1.06); }

.ch-fleet-card .caption { padding: 20px 0 0; }
.ch-fleet-card .caption .role {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ch-ink-mute); margin-bottom: 6px;
}
.ch-fleet-card .caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 24px; line-height: 1.15;
  letter-spacing: -.008em; margin: 0 0 6px; color: var(--ch-ink);
}
.ch-fleet-card .caption p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ch-ink-soft); }

/* ===== Process (editorial) ===== */
.ch-process { margin-top: 8px; border-top: var(--ch-line); }
.ch-step {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: 32px; align-items: start;
  padding: 36px 0; border-bottom: var(--ch-line-soft);
  transition: background .3s ease;
}
.ch-step:hover { background: color-mix(in srgb, var(--ch-accent) 3%, transparent); }
.ch-step .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 400; line-height: 1; letter-spacing: -.02em;
  color: var(--ch-ink);
}
.ch-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 26px; line-height: 1.15;
  letter-spacing: -.008em; margin: 0; color: var(--ch-ink);
}
.ch-step p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ch-ink-soft); max-width: 42ch; }
@media (max-width: 720px) {
  .ch-step { grid-template-columns: 60px 1fr; gap: 18px; padding: 28px 0; }
  .ch-step p { grid-column: 2; }
  .ch-step .num { font-size: 38px; }
}

/* ===== Why-private — editorial numerals, no icons ===== */
.ch-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-color, #e5e7eb);
  border: var(--ch-line);
  margin-top: 8px;
}
@media (max-width: 900px) { .ch-why-grid { grid-template-columns: 1fr; } }
.ch-why-cell {
  padding: 40px 30px 36px;
  background: var(--bg-primary);
  transition: background .3s ease;
}
.ch-why-cell:hover { background: color-mix(in srgb, var(--ch-accent) 4%, var(--bg-primary)); }
.ch-why-cell .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; line-height: 1;
  color: var(--ch-accent);
  letter-spacing: -.01em; margin: 0 0 22px;
}
.ch-why-cell h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 24px; line-height: 1.2;
  letter-spacing: -.006em; margin: 0 0 8px; color: var(--ch-ink);
}
.ch-why-cell p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ch-ink-soft); }

/* ===== Routes ===== */
.ch-routes-list { margin-top: 8px; border-top: var(--ch-line); }
.ch-route-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0; border-bottom: var(--ch-line-soft);
  text-decoration: none;
  transition: padding .35s var(--ch-ease), background .3s ease;
  color: var(--ch-ink);
}
.ch-route-row:hover { padding-left: 18px; padding-right: 18px; background: color-mix(in srgb, var(--ch-accent) 4%, transparent); }
.ch-route-row .r-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.25; letter-spacing: -.006em;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.ch-route-row .r-h .from-to {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ch-ink-mute); font-weight: 500;
}
.ch-route-row .r-arrow {
  color: var(--ch-ink-mute);
  transition: transform .35s var(--ch-ease), color .25s ease;
  flex-shrink: 0;
}
.ch-route-row:hover .r-arrow { color: var(--ch-accent); transform: translateX(8px); }

/* ===== FAQ ===== */
.ch-faq { margin-top: 8px; border-top: var(--ch-line); }
.ch-faq details {
  border-bottom: var(--ch-line-soft);
  padding: 26px 0;
  transition: padding .3s ease;
}
.ch-faq details[open] { padding: 30px 0 32px; }
.ch-faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3;
  letter-spacing: -.005em; color: var(--ch-ink);
}
.ch-faq summary::-webkit-details-marker { display: none; }
.ch-faq summary .mk {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 24px; line-height: 1; color: var(--ch-ink-mute);
  transition: transform .35s var(--ch-ease), color .25s ease;
  flex-shrink: 0;
}
.ch-faq details[open] summary .mk { transform: rotate(45deg); color: var(--ch-accent); }
.ch-faq .ans {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.7;
  color: var(--ch-ink-soft); max-width: 64ch;
}

/* ===== Final CTA ===== */
.ch-final {
  margin-top: 8px;
  padding: 96px 0;
  text-align: left;
  border-top: var(--ch-line);
  position: relative;
}
.ch-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04; letter-spacing: -.015em;
  margin: 18px 0 22px; color: var(--ch-ink);
  max-width: 16ch;
}
.ch-final p {
  font-size: 16px; line-height: 1.65;
  color: var(--ch-ink-soft); max-width: 56ch; margin: 0 0 32px;
}
.ch-final small {
  display: block; margin-top: 22px; max-width: 56ch;
  color: var(--ch-ink-mute); font-size: 12px; letter-spacing: .04em; font-style: italic;
}

/* ===== Sticky mobile booking bar (live) ===== */
.ch-sticky {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 950; display: none;
  padding: 18px 24px;
  background: var(--ch-ink); color: var(--bg-primary);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  text-align: center;
  border-top: 1px solid var(--ch-ink);
  transition: background .25s ease;
  overflow: hidden; position: fixed;
  animation: chBreathe 4.2s ease-in-out infinite;
}
.ch-sticky::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, color-mix(in srgb, #fff 28%, transparent) 50%, transparent 70%);
  transform: translateX(-110%);
  animation: chShimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
.ch-sticky:hover { background: var(--ch-accent); }
.ch-sticky::after { content: " →"; position: relative; z-index: 2; }
@media (max-width: 900px) { .ch-sticky { display: block; } }
@media (prefers-reduced-motion: reduce) {
  .ch-sticky { animation: none; }
  .ch-sticky::before { animation: none; opacity: 0; }
}

/* ===== Focus outlines (a11y) ===== */
.comfort-hub a:focus-visible,
.comfort-hub button:focus-visible,
.comfort-hub summary:focus-visible {
  outline: 2px solid var(--ch-accent);
  outline-offset: 3px;
}

/* ===== Bottom safe-area padding on mobile so sticky bar doesn't cover content ===== */
@media (max-width: 900px) {
  .comfort-hub { padding-bottom: 84px; }
}
