/* ==========================================================================
   Green Acres Bowl — design system
   Palette is derived exclusively from the brand logo: deep navy → steel blue
   and silver → white. Type follows the Apple system stack with Inter as the
   cross‑platform fallback.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  /* logo hues */
  --navy-950: #0b1f2c;
  --navy-900: #103040;
  --navy-800: #184860;
  --brand: #205878;
  --brand-600: #2a6a8e;
  --brand-500: #3a86b0;
  --brand-400: #5aa2c6;
  --brand-300: #8fc1da;
  --brand-200: #c9e0ec;
  --brand-100: #e6f0f6;
  --brand-50: #f3f8fb;
  --silver-100: #f8f8f8;
  --silver-200: #f0f0f0;
  --silver-300: #e8e8e8;
  --silver-400: #d8d8d8;
  --silver-500: #c8c8c8;
  --white: #ffffff;

  --bg: #fbfcfd;
  --surface: var(--white);
  --text: #0f2230;
  --text-2: #3f525e;
  --text-3: #5b6c76;
  --line: rgba(16, 48, 64, 0.1);
  --line-strong: rgba(16, 48, 64, 0.18);

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --fs-display: clamp(2.75rem, 1.9rem + 4vw, 5.25rem);
  --fs-h1: clamp(2.25rem, 1.6rem + 2.8vw, 3.75rem);
  --fs-h2: clamp(1.85rem, 1.45rem + 1.6vw, 2.75rem);
  --fs-h3: 1.375rem;
  --fs-lead: clamp(1.125rem, 1.02rem + 0.45vw, 1.3125rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-caption: 0.8125rem;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 48, 64, 0.06), 0 2px 8px rgba(16, 48, 64, 0.05);
  --shadow-md: 0 1px 2px rgba(16, 48, 64, 0.06), 0 10px 30px rgba(16, 48, 64, 0.09);
  --shadow-lg: 0 2px 6px rgba(16, 48, 64, 0.08), 0 24px 60px rgba(16, 48, 64, 0.16);
  --shadow-glow: 0 10px 40px rgba(32, 88, 120, 0.28);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --header-h: 64px;
  --topbar-h: 38px;
  --tabbar-h: 62px;
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; min-width: 0; }
figure { margin: 0; }
img { height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.022em; line-height: 1.08; color: var(--text); text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.012em; line-height: 1.25; }
h4 { font-size: 1.0625rem; letter-spacing: -0.005em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 600; }
small { font-size: var(--fs-small); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(58, 134, 176, 0.55); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(58, 134, 176, 0.25); }

.ic { flex: none; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; padding: 0.6rem 1rem; background: var(--navy-900); color: #fff; border-radius: var(--r-sm); }
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 780px; }
.container--wide { max-width: 1320px; }
.grid > *, .split > *, .bento > *, .form__row > *, .reserve__panel > *, .scoreboard > *, .footer-grid > *, .cta-band > *, .feature-row > *, .lane-steps > * { min-width: 0; }
.card, .tile, .stat { min-width: 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 1rem; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text-2); text-wrap: pretty; }
.muted { color: var(--text-3); }
.small { font-size: var(--fs-small); }
.caption { font-size: var(--fs-caption); color: var(--text-3); }
.center { text-align: center; }
.measure { max-width: 64ch; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: var(--stack, 1rem); }
.grad-text { background: linear-gradient(110deg, var(--navy-900), var(--brand-500) 60%, var(--brand-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px; padding: 0.7rem 1.25rem;
  border-radius: var(--r-pill); border: 1px solid transparent;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.005em; line-height: 1.1;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--primary { background: linear-gradient(180deg, var(--brand-600), var(--brand)); box-shadow: 0 1px 2px rgba(16, 48, 64, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
.btn--primary:hover { box-shadow: var(--shadow-glow); }
.btn--secondary { --btn-bg: var(--brand-100); --btn-fg: var(--navy-800); }
.btn--secondary:hover { background: var(--brand-200); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-800); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(16, 48, 64, 0.04); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-900); }
.btn--glass { --btn-bg: rgba(255, 255, 255, 0.12); --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.2); }
.btn--lg { min-height: 54px; padding: 0.9rem 1.7rem; font-size: 1.0625rem; }
.btn--sm { min-height: 38px; padding: 0.45rem 0.95rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.6; pointer-events: none; }
.btn { max-width: 100%; }
@media (max-width: 640px) { .btn { white-space: normal; text-align: center; } .btn-row > .btn { flex: 1 1 auto; } }
.btn .ic { width: 1.15em; height: 1.15em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn-row--center { justify-content: center; }
.link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; color: var(--brand); }
.link .ic { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.link:hover .ic { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-top: var(--sat);
}
.topbar__inner { min-height: var(--topbar-h); display: flex; align-items: center; justify-content: center; gap: 0.75rem; text-align: center; }
.topbar a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.topbar .ic { width: 14px; height: 14px; }
.topbar__short { display: none; }
@media (max-width: 600px) { .topbar__full { display: none; } .topbar__short { display: inline; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .topbar__inner { flex-wrap: nowrap; } }
@media (display-mode: standalone) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  view-transition-name: site-header;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(16, 48, 64, 0.06); }
@media (display-mode: standalone) { .site-header { padding-top: var(--sat); } }
.site-header__inner { height: var(--header-h); display: flex; align-items: center; gap: 1rem; width: min(100% - 2 * var(--gutter), 1400px); }
.header-actions { flex: none; }
.header-actions .btn { white-space: nowrap; flex: none; }
.brand { display: inline-flex; align-items: center; flex: none; margin-right: 0.5rem; }
.brand__logo { height: 42px; width: auto; }
@media (max-width: 380px) { .brand__logo { height: 36px; } }

.primary-nav { display: none; flex: 1; justify-content: center; }
.primary-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.15rem; }
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap;
  padding: 0.55rem 0.8rem; border-radius: var(--r-pill);
  font-size: 0.9375rem; font-weight: 500; color: var(--text); background: transparent; border: 0; cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.primary-nav__link .ic { width: 14px; height: 14px; opacity: 0.6; transition: transform 0.25s var(--ease); }
.primary-nav__link:hover, .primary-nav__item.is-open > .primary-nav__link { background: rgba(16, 48, 64, 0.06); }
.primary-nav__item.is-active > .primary-nav__link { color: var(--brand); font-weight: 600; }
.primary-nav__item.is-open > .primary-nav__link .ic { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px) scale(0.98);
  min-width: 320px; padding: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(24px); backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.28s var(--ease), visibility 0s linear 0.28s;
  transform-origin: top center;
}
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.primary-nav__item.is-open > .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0) scale(1); transition-delay: 0s; }
.mega__item { display: grid; grid-template-columns: 38px 1fr; column-gap: 0.75rem; align-items: center; padding: 0.6rem 0.7rem; border-radius: var(--r-md); color: var(--text); transition: background-color 0.18s var(--ease); }
.mega__item:hover { background: var(--brand-50); }
.mega__item.is-active { background: var(--brand-100); }
.mega__icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(180deg, var(--brand-100), var(--brand-50)); color: var(--brand); border: 1px solid rgba(32, 88, 120, 0.12); }
.mega__icon .ic { width: 19px; height: 19px; }
.mega__title { font-weight: 600; font-size: 0.9375rem; line-height: 1.25; }
.mega__desc { font-size: var(--fs-caption); color: var(--text-3); line-height: 1.35; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; }
.header-actions .btn { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.9375rem; }
.header-actions .btn--ghost { display: none; }
.header-actions .btn--primary { display: none; }
.menu-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.6); cursor: pointer; }
.menu-btn .ic { width: 22px; height: 22px; }
.open-chip { display: none; align-items: center; gap: 0.4rem; flex: none; white-space: nowrap; max-width: 240px; overflow: hidden; text-overflow: ellipsis; font-size: var(--fs-caption); font-weight: 600; line-height: 1; color: var(--text-2); padding: 0.45rem 0.75rem; border-radius: var(--r-pill); background: rgba(16, 48, 64, 0.05); }
.open-chip::before { content: ''; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 0 3px rgba(90, 162, 198, 0.25); }
.open-chip.is-closed::before { background: var(--silver-500); box-shadow: 0 0 0 3px rgba(200, 200, 200, 0.35); }

@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .menu-btn { display: none; }
  .header-actions .btn--primary { display: inline-flex; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .primary-nav__link { padding: 0.5rem 0.55rem; font-size: 0.9rem; }
}
@media (min-width: 1280px) { .header-actions .btn--ghost { display: inline-flex; } }
@media (min-width: 1480px) { .open-chip { display: inline-flex; } }

/* Mobile sheet menu */
.sheet { position: fixed; inset: 0; z-index: 90; }
.sheet[hidden] { display: none; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(11, 31, 44, 0.45); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.3s var(--ease); }
.sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0; max-height: min(88vh, 100% - 40px);
  background: rgba(255, 255, 255, 0.96); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border-radius: var(--r-xl) var(--r-xl) 0 0; box-shadow: 0 -20px 60px rgba(16, 48, 64, 0.25);
  padding: 0.6rem 1.1rem calc(1.25rem + var(--sab)); overflow: auto; -webkit-overflow-scrolling: touch;
  transform: translateY(100%); transition: transform 0.42s var(--ease-out);
}
.sheet.is-open .sheet__backdrop { opacity: 1; }
.sheet.is-open .sheet__panel { transform: translateY(0); }
.sheet__grip { width: 40px; height: 5px; border-radius: 3px; background: var(--silver-400); margin: 0.35rem auto 0.9rem; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.sheet__head .brand__logo { height: 34px; }
.sheet__close { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 0; background: var(--silver-200); cursor: pointer; }
.sheet__group { border-top: 1px solid var(--line); padding: 0.35rem 0; }
.sheet__group:first-of-type { border-top: 0; }
.sheet__label { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 0.25rem; font-size: 1.0625rem; font-weight: 600; color: var(--text); }
.sheet__label .ic { color: var(--brand); }
.sheet__links { display: grid; gap: 2px; padding: 0 0 0.5rem; grid-template-columns: minmax(0, 1fr); }
.sheet__link { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.6rem 0.7rem 0.4rem; border-radius: var(--r-md); color: var(--text); font-size: 1.0625rem; }
.sheet__link .ic { color: var(--brand); }
.sheet__link.is-active { background: var(--brand-50); color: var(--brand); font-weight: 600; }
.sheet__link--sub { padding-left: 2.6rem; font-size: 1rem; color: var(--text-2); }
.sheet__link--sub .ic { width: 18px; height: 18px; }
.sheet__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.75rem; }
.sheet__actions .btn--primary { grid-column: 1 / -1; }
.sheet__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; font-size: var(--fs-caption); color: var(--text-3); }
.sheet__foot a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--text-2); font-weight: 600; }
body.sheet-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
main { display: block; }
.section { padding-block: clamp(3.5rem, 5vw + 1.5rem, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 3vw + 1rem, 4.5rem); }
.section--flush-top { padding-top: clamp(2.5rem, 4vw, 4rem); }
@media (min-width: 900px) { .split > .sticky-col { position: sticky; top: calc(var(--header-h) + 24px); } }
.section--tint { background: linear-gradient(180deg, var(--brand-50), rgba(243, 248, 251, 0)); }
.section--silver { background: linear-gradient(180deg, var(--silver-100), var(--white)); }
.section--dark { background: linear-gradient(160deg, var(--navy-950), var(--navy-900) 45%, var(--navy-800)); color: rgba(255, 255, 255, 0.86); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead, .section--dark .muted { color: rgba(255, 255, 255, 0.76); }
.section--dark .eyebrow { color: var(--brand-300); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head + .btn-row { margin-top: -0.75rem; margin-bottom: 2rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 0.6rem; }
.section-head .lead { margin: 0; }

/* Sunburst rays — the logo's radiating stripes, used as ambient texture. */
.rays { position: relative; isolation: isolate; overflow: hidden; }
.rays::before {
  content: ''; position: absolute; z-index: -1; left: 50%; top: 22%; width: 240vmax; height: 240vmax; transform: translate(-50%, -50%) rotate(var(--rays-rot, 0deg));
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.045) 0deg 5deg, rgba(255, 255, 255, 0) 5deg 14deg);
  -webkit-mask-image: radial-gradient(closest-side, #000 0%, rgba(0, 0, 0, 0.55) 35%, transparent 72%);
  mask-image: radial-gradient(closest-side, #000 0%, rgba(0, 0, 0, 0.55) 35%, transparent 72%);
  animation: rays-spin 160s linear infinite;
  will-change: transform;
  pointer-events: none;
}
.rays--light::before { background: repeating-conic-gradient(from 0deg, rgba(32, 88, 120, 0.06) 0deg 5deg, rgba(32, 88, 120, 0) 5deg 14deg); }
.rays::after {
  content: ''; position: absolute; z-index: -1; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 0%, rgba(90, 162, 198, 0.28), transparent 70%);
}
.rays--light::after { background: radial-gradient(60% 45% at 50% 0%, rgba(58, 134, 176, 0.12), transparent 70%); }
@keyframes rays-spin { to { transform: translate(-50%, -50%) rotate(calc(var(--rays-rot, 0deg) + 360deg)); } }
@media (prefers-reduced-motion: reduce) { .rays::before { animation: none; } }

/* Ribbon — the banner from the logo, used as a divider / label */
.ribbon { position: relative; display: grid; place-items: center; width: max-content; max-width: 100%; margin-inline: auto; filter: drop-shadow(0 6px 14px rgba(16, 48, 64, 0.18)); }
.ribbon svg { width: min(360px, 82vw); height: auto; }
.ribbon__text { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; font-style: italic; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); font-size: clamp(0.95rem, 0.6rem + 1.2vw, 1.35rem); padding-bottom: 2%; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(4rem, 8vw, 8rem) clamp(5.5rem, 8vw, 8.5rem); text-align: center; }
.hero__logo { width: min(520px, 78vw); margin: 0 auto clamp(1.5rem, 3vw, 2.5rem); filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45)); animation: float 9s ease-in-out infinite; transform: translateY(calc(var(--scroll, 0) * -0.12px)); }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@media (prefers-reduced-motion: reduce) { .hero__logo { animation: none; } }
.hero h1 { font-size: var(--fs-display); letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 1rem; color: #fff; }
.hero .lead { max-width: 720px; margin: 0 auto 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 2.25rem; }
.chip { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.9rem; border-radius: var(--r-pill); font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.01em; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.chip .ic { width: 15px; height: 15px; color: var(--brand-300); }
.chip--light { background: var(--brand-50); border-color: rgba(32, 88, 120, 0.14); color: var(--navy-800); }
.chip--light .ic { color: var(--brand); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%); color: rgba(255, 255, 255, 0.72); display: grid; place-items: center; gap: 0.2rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll .ic { animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { translate: 0 0; opacity: 0.6; } 50% { translate: 0 6px; opacity: 1; } }

/* Inner page hero */
.page-hero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 4vw, 4rem); }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { max-width: 760px; }
.page-hero .btn-row { margin-top: 1.75rem; }
.page-hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--brand-50), #fff); }
.page-hero--dark { background: linear-gradient(180deg, var(--brand-50), #fff); color: inherit; }

.crumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: var(--fs-caption); color: var(--text-3); margin-bottom: 1.25rem; }
.crumbs a { color: var(--text-2); font-weight: 500; }
.crumbs .ic { width: 12px; height: 12px; opacity: 0.6; }


/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(var(--cols, 1), minmax(0, 1fr)); }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { --cols: 2; } }
@media (min-width: 960px) { .grid--3 { --cols: 3; } .grid--4 { --cols: 4; } }
.grid > .card, .bento > .card { height: 100%; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
a.card { color: inherit; display: block; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(32, 88, 120, 0.22); }
.card--glass { background: rgba(255, 255, 255, 0.72); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.card--tint { background: linear-gradient(180deg, #fff, var(--brand-50)); }
.card--dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.08); }
.card--dark h3, .card--dark h2 { color: #fff; }
.card--dark .muted { color: rgba(255, 255, 255, 0.72); }
.card--dark .caption, .section--dark .caption { color: rgba(255, 255, 255, 0.7); }
.card--dark .price { color: #fff; }
.card--dark .price small { color: rgba(255, 255, 255, 0.7); }
.card--flush { padding: 0; overflow: hidden; }
.card__body { padding: clamp(1.25rem, 2.5vw, 1.75rem); }
.card h3 { margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }
.card__arrow { position: absolute; right: 1.1rem; top: 1.1rem; color: var(--text-3); transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.card--hover:hover .card__arrow { transform: translate(2px, -2px); color: var(--brand); }

.icon-badge { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(180deg, var(--brand-100), var(--brand-50)); color: var(--brand); border: 1px solid rgba(32, 88, 120, 0.12); margin-bottom: 1rem; box-shadow: inset 0 1px 0 #fff; }
.icon-badge .ic { width: 24px; height: 24px; }
.icon-badge--lg { width: 60px; height: 60px; border-radius: 18px; }
.icon-badge--lg .ic { width: 30px; height: 30px; }
.icon-badge--dark { background: linear-gradient(180deg, var(--brand-600), var(--brand)); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }
.icon-badge--onDark { background: rgba(255, 255, 255, 0.1); color: var(--brand-300); border-color: rgba(255, 255, 255, 0.14); box-shadow: none; }

.feature { display: grid; gap: 0.35rem; grid-template-columns: minmax(0, 1fr); }
.feature h3 { margin: 0; font-size: 1.125rem; }
.feature p { margin: 0; color: var(--text-2); font-size: var(--fs-small); text-wrap: pretty; }
.feature p a { display: inline-flex; align-items: center; gap: 0.2rem; white-space: nowrap; font-weight: 600; }
.feature-row { display: flex; gap: 1rem; align-items: flex-start; height: 100%; }
.feature-row .icon-badge { margin: 0; flex: none; width: 42px; height: 42px; border-radius: 12px; }
.feature-row .icon-badge .ic { width: 21px; height: 21px; }

.bento { display: grid; gap: 1rem; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.bento > * { grid-column: span 6; }
@media (min-width: 720px) { .bento > * { grid-column: span 3; } }
.tile { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; color: inherit; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile__media { position: absolute; inset: 0; }
.tile__media .photo { position: absolute; inset: 0; border-radius: 0; width: 100%; height: 100%; aspect-ratio: auto; }
.tile .photo__fallback { display: none; }
.tile .photo.is-missing .photo__fallback { display: block; }
.tile .photo__fallback > div { position: absolute; top: 1rem; right: 1.1rem; width: clamp(90px, 22%, 130px); }
.tile .photo__fallback img { width: 100%; opacity: 0.6; filter: none; }
.tile .photo__fallback span { display: none; }
.tile__media .photo img { height: 100%; width: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.04); }
.tile__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 31, 44, 0) 30%, rgba(11, 31, 44, 0.78) 100%); }
.tile__body { position: relative; padding: 1.4rem; color: #fff; }
.tile__body h3 { color: #fff; margin-bottom: 0.3rem; font-size: 1.25rem; }
.tile__body p { margin: 0 0 0.75rem; color: rgba(255, 255, 255, 0.82); font-size: var(--fs-small); }
.tile__body .link { color: #fff; }
.tile__kicker { display: inline-flex; align-items: center; gap: 0.4rem; font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-300); margin-bottom: 0.5rem; }

/* Photos with graceful fallback (original images are fetched by scripts/fetch-original-assets.sh) */
.photo { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(160deg, var(--navy-900), var(--brand) 70%, var(--brand-500)); aspect-ratio: var(--ar, 16 / 9); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--sheet { aspect-ratio: auto; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.photo--sheet img { object-fit: contain; height: auto; }
.photo__fallback { position: absolute; inset: 0; display: none; place-items: center; text-align: center; padding: 1.5rem; color: #fff; }
.photo__fallback > div { width: 100%; display: grid; justify-items: center; }
.photo__fallback img { width: min(52%, 220px); height: auto; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4)); opacity: 0.95; }
.photo__fallback span { display: block; margin-top: 0.75rem; font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
.photo.is-missing img:not(.photo__fallback img) { display: none; }
.photo.is-missing .photo__fallback { display: grid; }
.photo.is-missing.photo--sheet { aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--brand-50), var(--brand-100)); border-style: dashed; }
.photo.is-missing.photo--sheet .photo__fallback span { color: var(--navy-800); }
.photo.is-missing.photo--sheet .photo__fallback img { filter: none; }
.photo--rays::before { content: ''; position: absolute; inset: -40%; background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.07) 0 5deg, transparent 5deg 14deg); }

/* Stats / scoreboard */
.scoreboard { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 720px) { .scoreboard { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat { padding: 1.25rem 1.25rem 1.1rem; border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.stat__value { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat__value sup { font-size: 0.4em; vertical-align: top; margin-left: 0.1em; color: var(--brand-300); }
.stat__label { margin-top: 0.4rem; font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }
.stat--light { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.stat--light .stat__value { color: var(--navy-900); }
.stat--light .stat__label { color: var(--text-3); }

/* Masonry (CSS columns) for variable-height cards */
.masonry { columns: 1; column-gap: clamp(1rem, 2vw, 1.5rem); }
.masonry > * { break-inside: avoid; page-break-inside: avoid; margin: 0 0 clamp(1rem, 2vw, 1.5rem); display: block; }
.masonry .quote { display: flex; height: auto; }
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 960px) { .masonry { columns: 3; } }
/* Quotes / reviews */
.quote { position: relative; display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.quote__mark { color: var(--brand-300); }
.quote__mark .ic { width: 28px; height: 28px; }
.quote__text { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--text-2); text-wrap: pretty; }
/* Uniform review tiles: every quote is clamped to the same height; “Read more” expands in place */
.quote--clamp .quote__text { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.quote--clamp.is-expanded .quote__text { display: block; -webkit-line-clamp: unset; overflow: visible; }
.quote__more { display: none; align-self: flex-start; margin-top: -0.25rem; padding: 0; border: 0; background: none; color: var(--brand); font-weight: 600; font-size: var(--fs-small); cursor: pointer; }
.quote--clamp.has-more .quote__more { display: inline-flex; align-items: center; gap: 0.25rem; }
.quote__more .ic { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.quote--clamp.is-expanded .quote__more .ic { transform: rotate(180deg); }
.quote__author { margin-top: auto; display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: var(--text); }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8125rem; font-weight: 700; color: #fff; background: linear-gradient(160deg, var(--brand-500), var(--brand)); flex: none; letter-spacing: 0.02em; }
.stars { display: inline-flex; gap: 2px; color: var(--brand-500); }
.stars .ic { width: 15px; height: 15px; }

/* Hours */
.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; grid-template-columns: minmax(0, 1fr); }
.hours li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1rem; padding: 0.6rem 0.65rem; border-radius: var(--r-sm); font-size: var(--fs-small); border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { background: var(--brand-50); font-weight: 600; color: var(--navy-800); border-bottom-color: transparent; }
.hours__day { display: inline-flex; align-items: center; gap: 0.45rem; }
.hours__time { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.hours--free li { grid-template-columns: auto minmax(0, 1fr); }
.hours--free .hours__time { white-space: normal; }
.hours__mark { color: var(--brand-600); font-weight: 700; }
.hours-note { font-size: var(--fs-caption); color: var(--text-3); margin-top: 0.75rem; }
.section--dark .hours li, .card--dark .hours li { border-bottom-color: rgba(255, 255, 255, 0.1); }
.section--dark .hours li.is-today, .card--dark .hours li.is-today { background: rgba(255, 255, 255, 0.08); color: #fff; }
.section--dark .hours-note, .card--dark .hours-note { color: rgba(255, 255, 255, 0.7); }

/* Info rows (address, phone) */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; grid-template-columns: minmax(0, 1fr); }
.info-list a { overflow-wrap: anywhere; }
.info-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-list .ic { color: var(--brand); margin-top: 0.15rem; flex: none; }
.info-list strong { display: block; font-size: var(--fs-caption); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); font-weight: 600; margin-bottom: 0.1rem; }
.info-list a { color: var(--text); font-weight: 500; }
.info-list a:hover { color: var(--brand); }
.card--dark .info-list .ic { color: var(--brand-300); }
.card--dark .info-list a { color: #fff; }
.card--dark .info-list strong { color: rgba(255, 255, 255, 0.7); }

/* Map */
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--brand-50); height: 100%; }
.map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
.map-col { height: 100%; min-height: 380px; }
.map-col .map { height: 100%; }
.location .card h3 { margin-bottom: 1rem; }
.location__card { display: flex; flex-direction: column; }
.location__card .btn-row { margin-top: auto; padding-top: 1.5rem; }

/* Lists with icons */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; grid-template-columns: minmax(0, 1fr); }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list .ic { color: var(--brand); flex: none; margin-top: 0.2rem; width: 18px; height: 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.pill-list li { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.85rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-size: var(--fs-small); font-weight: 500; color: var(--text-2); }
.pill-list .ic { width: 16px; height: 16px; color: var(--brand); }
.pill-list--grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
.pill-list--grid li { display: flex; min-height: 44px; }
.pill-list--grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 480px) { .pill-list--grid { grid-template-columns: minmax(0, 1fr); } }

/* Schedule (weekly events) */
.schedule { display: grid; gap: 0.75rem; grid-template-columns: minmax(0, 1fr); }
.schedule__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; padding: 1rem 1.1rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.schedule__time { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--brand); white-space: nowrap; min-width: 6.5rem; }
.schedule__title { font-weight: 600; }
.schedule__meta { font-size: var(--fs-caption); color: var(--text-3); }

/* Split layouts */
.split { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; grid-template-columns: minmax(0, 1fr); }
.split--center { align-items: center; }
.split .section-head { margin-bottom: 1.5rem; }
.split > .stack { --stack: 1.5rem; }
.split > .map { height: 100%; }
.split > .map iframe { height: 100%; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .split--60 { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } .split--40 { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); } }
.split .photo { --ar: 4 / 3; }
.prose p { color: var(--text-2); }
.prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.1em; color: var(--text-2); }

/* Gallery */
.gallery-grid { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; } }
.gallery-grid__item { display: block; position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; background: var(--brand-100); border: 1px solid var(--line); }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11, 31, 44, 0.35)); opacity: 0; transition: opacity 0.3s var(--ease); }
.gallery-grid__item:hover::after { opacity: 1; }
.gallery-grid__item .photo { position: absolute; inset: 0; border-radius: 0; aspect-ratio: auto; }
.gallery-grid__item .photo__fallback img { width: 60%; }
.gallery-grid__item .photo__fallback span { display: none; }
.gallery-grid__item:nth-child(3n) .photo { background: linear-gradient(200deg, var(--brand-500), var(--brand) 55%, var(--navy-900)); }
.gallery-grid__item:nth-child(3n+1) .photo { background: linear-gradient(140deg, var(--navy-950), var(--navy-800) 60%, var(--brand-600)); }
.gallery-grid__item:nth-child(4n+2) .photo--rays::before { transform: rotate(23deg); }
.gallery-grid__item:nth-child(5n+3) .photo--rays::before { transform: rotate(-31deg); }
.gallery-grid__item .photo__fallback img { opacity: 0.7; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(11, 31, 44, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 3rem 1rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox__btn { position: absolute; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.12); color: #fff; display: grid; place-items: center; cursor: pointer; }
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close { top: max(1rem, var(--sat)); right: 1rem; }
.lightbox__prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: calc(1rem + var(--sab)); left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.7); font-size: var(--fs-caption); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; grid-template-columns: minmax(0, 1fr); }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .form__row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
/* Every form section and fieldset shares the same 1.1rem vertical rhythm */
.form__section { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.1rem; padding-top: 1.5rem; margin-top: 0.25rem; border-top: 1px solid var(--line); }
.form__section > h3 { margin: 0; }
.form__section > p { color: var(--text-2); font-size: var(--fs-small); margin: -0.7rem 0 0; }
.form__section h4 { margin: 0.25rem 0 -0.5rem; color: var(--brand); font-size: var(--fs-caption); letter-spacing: 0.1em; text-transform: uppercase; }
.field { display: grid; gap: 0.4rem; grid-template-columns: minmax(0, 1fr); }
.field__label { font-size: var(--fs-small); font-weight: 600; color: var(--text); }
.field__label .req { color: var(--brand-600); margin-left: 0.15rem; }
.field__hint { font-size: var(--fs-caption); color: var(--text-3); }
.field__error { display: none; font-size: var(--fs-caption); color: #a63d3d; }
.field.is-invalid .field__error { display: block; }
.input, .select, .textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0.95rem; border-radius: var(--r-md);
  border: 1px solid var(--line-strong); background: #fff; color: var(--text); font: inherit; font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--text-3); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(58, 134, 176, 0.18); }
.field.is-invalid .input, .field.is-invalid .select, .field.is-invalid .textarea { border-color: #c25757; box-shadow: 0 0 0 4px rgba(194, 87, 87, 0.12); }
.textarea { min-height: 128px; resize: vertical; }
.select-wrap { position: relative; }
.select { padding-right: 2.6rem; cursor: pointer; }
.select-wrap .ic { position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-3); }
.input[type="date"], .input[type="time"] { min-height: 48px; }
.input[type="file"] { padding: 0.55rem 0.75rem; }
.input[type="file"]::file-selector-button { font: inherit; font-weight: 600; font-size: 0.9rem; color: var(--navy-800); background: var(--brand-100); border: 0; border-radius: var(--r-pill); padding: 0.4rem 0.9rem; margin-right: 0.75rem; cursor: pointer; }
.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; gap: 0.4rem; min-height: 40px; padding: 0.45rem 0.95rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: #fff; font-size: var(--fs-small); font-weight: 500; color: var(--text-2); transition: all 0.2s var(--ease); }
.choice input:checked + span { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 14px rgba(32, 88, 120, 0.25); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px rgba(58, 134, 176, 0.3); }
.check { display: flex; gap: 0.75rem; align-items: flex-start; font-size: var(--fs-small); color: var(--text-2); }
.check input { width: 20px; height: 20px; margin-top: 0.1rem; accent-color: var(--brand); flex: none; }
.toggle { display: flex; align-items: center; gap: 0.85rem; padding: 0.9rem 1rem; border-radius: var(--r-md); background: var(--brand-50); border: 1px solid rgba(32, 88, 120, 0.12); cursor: pointer; user-select: none; }
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle__switch { position: relative; width: 50px; height: 30px; border-radius: 15px; background: var(--silver-400); transition: background 0.25s var(--ease); flex: none; }
.toggle__switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 26px; height: 26px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); transition: transform 0.25s var(--ease); }
.toggle input:checked ~ .toggle__switch { background: var(--brand); }
.toggle input:checked ~ .toggle__switch::after { transform: translateX(20px); }
.toggle input:focus-visible ~ .toggle__switch { box-shadow: 0 0 0 4px rgba(58, 134, 176, 0.3); }
.toggle__text { font-size: var(--fs-small); font-weight: 600; color: var(--navy-800); display: flex; align-items: center; gap: 0.5rem; }
.toggle__text .ic { color: var(--brand); }
.form__status { display: none; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.1rem; border-radius: var(--r-md); font-size: var(--fs-small); }
.form__status .ic { flex: none; margin-top: 0.1rem; }
.form__status.is-success { display: flex; background: var(--brand-50); color: var(--navy-800); border: 1px solid rgba(32, 88, 120, 0.18); }
.form__status.is-error { display: flex; background: #fbf1f1; color: #7d2f2f; border: 1px solid rgba(166, 61, 61, 0.2); }
.form__status a { font-weight: 600; }
.form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__footer .caption { flex: 1 1 240px; }
.form.is-sent > :not(.form__status) { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn .spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }
.fieldset { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.1rem; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 0.9rem 1.1rem 1.25rem; margin: 0; min-width: 0; background: rgba(255, 255, 255, 0.6); }
.fieldset legend { padding: 0 0.5rem; font-weight: 600; font-size: var(--fs-small); color: var(--navy-800); }

/* --------------------------------------------------------------------------
   Reserve section + dock
   -------------------------------------------------------------------------- */
.reserve { scroll-margin-top: calc(var(--header-h) + 12px); }
.reserve__panel { display: grid; gap: clamp(1.5rem, 3vw, 3rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 960px) { .reserve__panel { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: start; } }
@media (min-width: 960px) { .reserve__aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.reserve__aside .btn-row { margin-top: 1.5rem; }
.cta-band { border-radius: var(--r-xl); padding: clamp(1.75rem, 4vw, 3rem); background: linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800)); color: rgba(255, 255, 255, 0.85); display: grid; gap: 1.25rem; align-items: center; position: relative; overflow: hidden; isolation: isolate; box-shadow: var(--shadow-lg); }
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255, 255, 255, 0.76); margin: 0; }
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .btn-row { justify-content: flex-end; } }
.cta-band__logo { position: absolute; right: -6%; top: -18%; width: 46%; opacity: 0.08; pointer-events: none; z-index: -1; transform: rotate(-8deg); }

.dock { position: fixed; z-index: 70; left: 0; right: 0; bottom: 0; pointer-events: none; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
body.dock-hidden .dock { transform: translateY(120%); opacity: 0; }
body.hero-in-view .dock__pill { transform: translateY(160%); opacity: 0; pointer-events: none; }
.dock__pill { transition: transform 0.45s var(--ease), opacity 0.4s var(--ease); }
.dock__pill { display: none; pointer-events: auto; margin: 0 auto 1.25rem; width: max-content; align-items: center; gap: 0.35rem; padding: 0.4rem; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.82); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.dock__pill .btn { min-height: 44px; }
.dock__pill .btn--ghost { border-color: transparent; }
.tabbar { pointer-events: auto; display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; padding: 0.35rem 0.5rem calc(0.4rem + var(--sab)); background: rgba(255, 255, 255, 0.88); -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px); border-top: 1px solid var(--line); }
.tab { display: grid; justify-items: center; gap: 0.15rem; padding: 0.35rem 0.25rem 0.2rem; border: 0; background: none; color: var(--text-3); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.01em; border-radius: var(--r-md); cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.tab .ic { width: 24px; height: 24px; transition: transform 0.2s var(--ease); }
.tab.is-active { color: var(--brand); }
.tab:active .ic { transform: scale(0.92); }
.tab--reserve { position: relative; }
.tab--reserve .tab__ball { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-top: -22px; background: linear-gradient(160deg, var(--brand-500), var(--brand) 60%, var(--navy-800)); color: #fff; box-shadow: 0 10px 24px rgba(32, 88, 120, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25); border: 3px solid #fff; }
.tab--reserve .tab__ball .ic { width: 26px; height: 26px; }
.tab--reserve span { color: var(--brand); }
body { padding-bottom: calc(var(--tabbar-h) + var(--sab)); }
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .tabbar { display: none; }
  .dock__pill { display: flex; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: rgba(255, 255, 255, 0.78); padding: clamp(3rem, 5vw, 5rem) 0 1.5rem; margin-top: 0; }
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.1fr); } }
.footer-brand img { width: 220px; height: auto; margin-bottom: 1rem; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35)); }
.footer-brand p { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.74); max-width: 36ch; }
.footer-h { font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-300); margin: 0 0 0.9rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; font-size: var(--fs-small); }
.footer-links a { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-links a .ic { width: 14px; height: 14px; opacity: 0.5; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); transition: background 0.2s var(--ease); }
.footer-social a:hover { background: rgba(255, 255, 255, 0.16); }
.footer-review { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem 0.55rem 0.6rem; border-radius: var(--r-pill); background: #fff; color: var(--navy-900) !important; font-weight: 600; font-size: var(--fs-small); box-shadow: var(--shadow-md); }
.footer-review .ic { width: 20px; height: 20px; color: var(--brand); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; justify-content: space-between; font-size: var(--fs-caption); color: rgba(255, 255, 255, 0.7); }
.footer-bottom a { color: rgba(255, 255, 255, 0.78); }
@media (min-width: 720px) and (max-width: 1023px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.footer-bottom__links { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.footer-pill { display: inline-flex; align-items: center; gap: 0.45rem; min-height: 34px; padding: 0.35rem 0.85rem; border-radius: var(--r-pill); border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.78) !important; font-weight: 500; white-space: nowrap; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.footer-pill:hover { background: rgba(255, 255, 255, 0.12); color: #fff !important; }
.footer-pill .ic { width: 15px; height: 15px; }
button.footer-pill, .sheet__foot-btn { font: inherit; cursor: pointer; }
.sheet__foot-btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0; border: 0; background: none; color: var(--text-2); font-weight: 600; font-size: var(--fs-caption); }

/* --------------------------------------------------------------------------
   Scroll animations
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); filter: blur(6px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); transition-delay: calc(var(--i, 0) * 90ms); will-change: opacity, transform, filter; }
[data-reveal="left"] { transform: translateX(-12px) translateY(16px); }
[data-reveal="right"] { transform: translateX(12px) translateY(16px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; } }
.no-js [data-reveal] { opacity: 1; transform: none; filter: none; }

/* Frame progress (scoreboard bar) */
.frames { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; }
.frames span { height: 6px; border-radius: 3px; background: rgba(32, 88, 120, 0.12); position: relative; overflow: hidden; }
.frames span::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--brand-500), var(--brand)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); transition-delay: calc(var(--i) * 70ms); }
.is-in .frames span::after { transform: scaleX(1); }

/* The Lane — scroll‑driven ball + pins scene */
.lane-scene { --p: 0; position: relative; height: 320vh; }
.lane-scene__sticky { position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h)); overflow: hidden; display: grid; align-content: center; }
@media (display-mode: standalone) { .lane-scene__sticky { top: calc(var(--header-h) + var(--sat)); height: calc(100vh - var(--header-h) - var(--sat)); } }
.lane-scene__head { text-align: center; margin-bottom: clamp(1rem, 2vw, 2rem); }
.lane { position: relative; height: clamp(150px, 26vw, 260px); margin-inline: auto; width: min(100%, 1100px); }
.lane__board { position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, #f7f9fa, #e9eef1); border: 1px solid var(--line); box-shadow: inset 0 2px 0 #fff, var(--shadow-sm); overflow: hidden; }
.lane__board::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(16, 48, 64, 0.05) 0 1px, transparent 1px 18px); }
.lane__arrows { position: absolute; left: 30%; top: 50%; transform: translateY(-50%); display: flex; gap: 14px; opacity: 0.35; }
.lane__arrows span { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 18px solid var(--brand); transform: rotate(90deg); }
.lane__arrows span:nth-child(odd) { margin-top: -14px; }
.lane__arrows span:nth-child(even) { margin-top: 14px; }
.lane__gutter { position: absolute; left: 0; right: 0; height: 10px; background: linear-gradient(180deg, rgba(16, 48, 64, 0.12), rgba(16, 48, 64, 0.03)); }
.lane__gutter--top { top: 0; } .lane__gutter--bottom { bottom: 0; transform: scaleY(-1); }
.lane__foul { position: absolute; left: 6%; top: 0; bottom: 0; width: 2px; background: rgba(16, 48, 64, 0.2); }
.ball { position: absolute; top: 50%; left: 3%; width: clamp(44px, 8vw, 78px); aspect-ratio: 1; margin-top: calc(clamp(44px, 8vw, 78px) / -2); border-radius: 50%; background: radial-gradient(circle at 34% 30%, #4d93b8 0%, var(--brand) 32%, var(--navy-900) 78%, #0a1a24 100%); box-shadow: 0 14px 22px rgba(11, 31, 44, 0.35), inset 0 -4px 10px rgba(0, 0, 0, 0.35), inset 0 3px 6px rgba(255, 255, 255, 0.2); transform: translateX(calc(var(--p) * var(--travel, 700px))) rotate(calc(var(--p) * 1400deg)); will-change: transform; }
.ball::before, .ball::after, .ball i { content: ''; position: absolute; width: 12%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #0b1f2c, #061219); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8); }
.ball::before { left: 36%; top: 26%; } .ball::after { left: 54%; top: 22%; } .ball i { left: 56%; top: 40%; }
.lane { --pin-h: clamp(30px, 5.2vw, 52px); }
/* Ten-pin rack seen from above: 1-2-3-4 columns, apex facing the ball */
.pins { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: calc(var(--pin-h) * 0.22); }
.pins__col { display: flex; flex-direction: column; align-items: center; gap: calc(var(--pin-h) * 0.12); }
.pinv { width: calc(var(--pin-h) * 0.35); height: var(--pin-h); position: relative; transform-origin: 50% 100%; transition: transform 0.7s var(--ease), opacity 0.7s var(--ease); transition-delay: calc(var(--i) * 40ms); }
.pinv svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 5px 7px rgba(11, 31, 44, 0.22)); }
.lane-scene.is-strike .pinv { transform: rotate(var(--fall, 80deg)) translate(calc(var(--pin-h) * 0.35), calc(var(--pin-h) * -0.2)); opacity: 0.3; }
.lane-scene.is-strike .pins__col:nth-child(odd) .pinv:nth-child(even) { --fall: -95deg; }
.lane-scene.is-strike .pins__col:nth-child(even) .pinv:nth-child(odd) { --fall: -110deg; }
.lane-scene.is-strike .pins__col:nth-child(4) .pinv { --fall: 120deg; }
.lane-scene.is-strike .pins__col:nth-child(1) .pinv { --fall: 70deg; }
.lane-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: clamp(1rem, 2.5vw, 2rem) auto 0; width: min(100%, 1100px); }
.lane-step { padding: 0.9rem 1rem; border-radius: var(--r-md); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.7); opacity: 0.45; transform: translateY(6px); transition: all 0.5s var(--ease); }
.lane-step.is-active { opacity: 1; transform: none; border-color: rgba(32, 88, 120, 0.3); box-shadow: var(--shadow-md); background: #fff; }
.lane-step__n { font-size: var(--fs-caption); font-weight: 700; color: var(--brand-600); letter-spacing: 0.1em; }
.lane-step h3 { font-size: 1rem; margin: 0.15rem 0 0.2rem; }
.lane-step p { margin: 0; font-size: var(--fs-caption); color: var(--text-3); }
@media (max-width: 720px) { .lane-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lane-scene { height: 260vh; } .strike-flash { left: 34%; font-size: clamp(1.6rem, 8.5vw, 2.6rem); } }
.strike-flash { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.8); font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 800; letter-spacing: -0.04em; color: var(--brand); opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease), transform 0.6s var(--ease-out); text-shadow: 0 10px 30px rgba(32, 88, 120, 0.25); }
.lane-scene.is-strike .strike-flash { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (prefers-reduced-motion: reduce) { .lane-scene { height: auto; } .lane-scene__sticky { position: static; height: auto; } .ball { transform: translateX(var(--travel, 700px)); } .lane-step { opacity: 1; transform: none; } }

/* Marquee of amenities */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 0.75rem; width: max-content; animation: marquee 48s linear infinite; padding-block: 0.25rem; }
.marquee__group { display: flex; flex: none; flex-wrap: nowrap; gap: 0.75rem; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; } .marquee__group { flex-wrap: wrap; } .marquee__group[aria-hidden] { display: none; } .marquee { mask-image: none; -webkit-mask-image: none; } }

/* --------------------------------------------------------------------------
   Install banner, iOS hint, toast
   -------------------------------------------------------------------------- */
.install { position: fixed; z-index: 80; left: 0.75rem; right: 0.75rem; bottom: calc(var(--tabbar-h) + var(--sab) + 0.75rem); display: grid; grid-template-columns: auto 1fr auto; gap: 0.85rem; align-items: center; padding: 0.75rem 0.85rem; border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.94); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid var(--line); box-shadow: var(--shadow-lg); animation: rise 0.5s var(--ease-out); }
.install[hidden] { display: none; }
@media (min-width: 1024px) { .install { left: auto; right: 1.25rem; bottom: 5.5rem; max-width: 420px; } }
.install img { width: 46px; height: 46px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.install strong { display: block; font-size: var(--fs-small); }
.install span { font-size: var(--fs-caption); color: var(--text-3); }
.install__actions { display: flex; gap: 0.4rem; align-items: center; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ios-steps { list-style: none; padding: 0; margin: 0.75rem 0 0; display: grid; gap: 0.75rem; }
.ios-steps li { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; border-radius: var(--r-md); background: var(--brand-50); border: 1px solid rgba(32, 88, 120, 0.12); font-size: var(--fs-small); }
.ios-steps .icon-badge { margin: 0; width: 40px; height: 40px; border-radius: 12px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: calc(var(--tabbar-h) + var(--sab) + 1rem); transform: translateX(-50%); display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.8rem 0.7rem 1rem; border-radius: var(--r-pill); background: rgba(16, 48, 64, 0.94); color: #fff; font-size: var(--fs-small); box-shadow: var(--shadow-lg); animation: rise 0.4s var(--ease-out); max-width: calc(100vw - 2rem); }
.toast[hidden] { display: none; }
.toast .btn { min-height: 34px; padding: 0.35rem 0.85rem; font-size: 0.875rem; }
@media (min-width: 1024px) { .toast { bottom: 5.75rem; } }
.offline-badge { display: none; }
body.is-offline .offline-badge { display: inline-flex; }

/* --------------------------------------------------------------------------
   View transitions (cross-document, where supported)
   -------------------------------------------------------------------------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 0.22s var(--ease) both vt-out; }
::view-transition-new(root) { animation: 0.32s var(--ease-out) both vt-in; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(8px); } }
::view-transition-old(site-header), ::view-transition-new(site-header) { animation: none; mix-blend-mode: normal; }
@media (prefers-reduced-motion: reduce) { ::view-transition-old(root), ::view-transition-new(root) { animation: none; } }

/* --------------------------------------------------------------------------
   Utilities / print
   -------------------------------------------------------------------------- */
.two-col { columns: 2; column-gap: 2rem; }
@media (max-width: 640px) { .two-col { columns: 1; } }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.65rem; border-radius: var(--r-pill); font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--brand-100); color: var(--navy-800); }
.badge--dark { background: rgba(255, 255, 255, 0.12); color: #fff; }
.price { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--navy-900); }
.price small { font-size: 0.4em; font-weight: 600; color: var(--text-3); letter-spacing: 0; margin-left: 0.2em; }
@media print {
  .topbar, .site-header, .dock, .install, .toast, .sheet, .hero__scroll { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .section--dark, .page-hero--dark, .cta-band, .site-footer { background: #fff !important; color: #000 !important; }
}

/* Spacing utilities (kept last so they override component margins) */
.mt-1 { margin-top: 1rem !important; } .mt-2 { margin-top: 2rem !important; } .mt-3 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 1rem !important; } .mb-2 { margin-bottom: 2rem !important; }
