/* PointCompass CSS module: tokens.css (lines 1-332 from legacy styles.css) */


:root {
  --color-primary: #0569A2;
  --color-primary-dark: #0D4974;
  --color-accent: #1388C8;
  --color-accent-soft: #A2D4EE;
  --color-text-strong: #19315E;
  --color-surface-soft: #F3F7FA;
  --color-surface: #FFFFFF;
  --color-border: #D9E5EF;
  --color-border-strong: #B8CEDF;
  --color-text: #39506B;
  --color-muted: #67809C;
  --color-success: #0F9D7A;
  --color-warning: #B97700;
  --color-danger: #C73D5B;
  --shadow-soft: 0 18px 40px rgba(25, 49, 94, 0.08);
  --shadow-lift: 0 20px 52px rgba(13, 73, 116, 0.12);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f7fbfe 0%, #eef5fa 100%);
  color: var(--color-text-strong);
}
a { color: var(--color-primary); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.page-wash {
  position: fixed; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(19,136,200,0.10), transparent 30%),
    radial-gradient(circle at top left, rgba(162,212,238,0.42), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(243,247,250,0.72) 70%, rgba(243,247,250,0) 100%);
}
.page-shell {
  position: relative; z-index: 1;
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  padding: 28px 0 34px;
}
.glass, .card, .hero-card, .stat-card, .guide-card, .window-card, .window-tile, .item-card, .summary-item, .tabbar, .modal-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.inset-card { box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), var(--shadow-soft); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,105,162,0.09), rgba(162,212,238,0.08) 55%, rgba(255,255,255,0) 85%);
  pointer-events: none;
}
.hero-copy, .hero-rail { position: relative; z-index: 1; }
.brand-lockup { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.brand-lockup.has-custom-logo { align-items: flex-start; }
.brand-copy { min-width: 0; }
.brand-wordmark-image {
  display: block;
  max-width: min(320px, 100%);
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}
.brand-lockup.has-custom-logo .brand-mark {
  inline-size: 44px;
  block-size: 44px;
  border-radius: 14px;
}
.brand-lockup.has-custom-logo .brand-sub {
  display: none;
}
.brand-lockup.has-custom-logo .brand-mark {
  display: none;
}
.brand-lockup.has-custom-logo {
  gap: 0;
  align-items: flex-start;
}
.brand-lockup.has-custom-logo .brand-copy {
  width: min(760px, 100%);
}
.brand-lockup.has-custom-logo .brand-wordmark-image {
  width: min(760px, 100%);
  max-width: 100%;
  max-height: none;
  aspect-ratio: 4 / 1;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0;
}
.brand-mark {
  inline-size: 58px; block-size: 58px; border-radius: 18px; position: relative;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 10px 22px rgba(5,105,162,0.22);
}
.brand-mark span { position: absolute; display: block; background: rgba(255,255,255,0.96); }
.brand-mark span:nth-child(1) { width: 22px; height: 22px; border-radius: 999px 999px 999px 0; transform: rotate(45deg); top: 10px; left: 18px; }
.brand-mark span:nth-child(2) { width: 10px; height: 10px; border-radius: 50%; top: 18px; left: 24px; background: var(--color-primary); }
.brand-mark span:nth-child(3) { width: 4px; height: 15px; border-radius: 999px; left: 27px; bottom: 8px; background: rgba(255,255,255,0.92); }
.brand-name { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; letter-spacing: -0.04em; }
.brand-sub { color: var(--color-primary); font-size: 0.88rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.eyebrow-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 0.9rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-primary-dark); background: rgba(162,212,238,0.32); border: 1px solid rgba(19,136,200,0.16);
}
.eyebrow.subtle { background: rgba(255,255,255,0.92); border-color: var(--color-border); color: var(--color-muted); }
.hero h1 { margin: 0.12rem 0 0.8rem; font-size: clamp(2.4rem, 4.6vw, 4.1rem); line-height: 0.98; letter-spacing: -0.06em; max-width: 12ch; }
.lede { margin: 0; color: var(--color-text); line-height: 1.7; max-width: 68ch; font-size: 1.04rem; }
.hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.hero-chip {
  border: 1px solid rgba(5,105,162,0.14); background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(162,212,238,0.18));
  color: var(--color-primary-dark); border-radius: 999px; padding: 0.88rem 1.08rem; font-weight: 800;
}
.hero-chip.secondary { background: rgba(255,255,255,0.96); border-color: var(--color-border); color: var(--color-text-strong); }
.micro-disclaimer { margin: 16px 0 0; color: var(--color-muted); font-size: 0.92rem; }
.hero-rail { display: grid; gap: 14px; }
.hero-card, .stat-card { border-radius: 22px; padding: 18px; }
.hero-card h2 { margin: 0.2rem 0 0.4rem; font-size: 1.18rem; letter-spacing: -0.03em; }
.section-kicker, .mini-label {
  color: var(--color-primary); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-label { color: var(--color-muted); font-size: 0.82rem; margin-bottom: 8px; display: block; }
.stat-card strong { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.05em; }
.tabbar {
  display: flex; gap: 10px; align-items: center; padding: 10px; border-radius: 22px; margin-bottom: 18px; position: sticky; top: 12px; z-index: 15;
}
.tabbar-spacer { flex: 1; }
.tab {
  border: 1px solid transparent; background: rgba(255,255,255,0.88); color: var(--color-text-strong); border-radius: 999px;
  padding: 0.82rem 1rem; transition: 180ms ease; font-weight: 700;
}
.tab:hover { background: rgba(162,212,238,0.28); }
.tab.active { background: var(--color-primary); border-color: var(--color-primary); color: white; }
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-hero::before {
  background: linear-gradient(135deg, rgba(5,105,162,0.14), rgba(162,212,238,0.16) 54%, rgba(255,255,255,0.04) 86%);
}
.home-hero .hero-support {
  max-width: 34ch;
  color: var(--color-text-strong);
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.5;
}
.home-hero .hero-cta-row {
  margin-top: 20px;
}
.home-hero .hero-card h2 {
  margin-bottom: 0.35rem;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.main-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(360px,0.88fr); gap: 22px; align-items: start; }
.main-grid.single-column { grid-template-columns: 1fr; }
.card { border-radius: 26px; padding: 22px; overflow: hidden; }
.results-card { min-width: 0; position: sticky; top: 92px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.section-head h2 { margin: 0.14rem 0 0; font-size: 1.45rem; letter-spacing: -0.04em; }
.chip {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 0.46rem 0.8rem; white-space: nowrap;
  border: 1px solid rgba(19,136,200,0.16); background: rgba(162,212,238,0.24); color: var(--color-primary-dark); font-size: 0.84rem; font-weight: 700;
}
.chip.muted { color: var(--color-muted); background: rgba(255,255,255,0.96); border-color: var(--color-border); }
label { display: grid; gap: 8px; }
label > span { color: var(--color-text-strong); font-size: 0.98rem; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid.single-form { grid-template-columns: 1fr; }
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  width: 100%; border-radius: 18px; border: 1px solid var(--color-border-strong); background: white; color: var(--color-text-strong);
  padding: 15px 16px; outline: none; transition: 180ms ease; min-height: 58px;
}
input::placeholder, textarea::placeholder { color: #8ea2b8; }
input[type="file"] { padding: 12px; min-height: auto; }
input[type="checkbox"], input[type="radio"] {
  inline-size: 18px;
  block-size: 18px;
  accent-color: var(--color-primary);
  margin: 0;
  flex: 0 0 auto;
}
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(25,49,94,0.75) 50%),
    linear-gradient(135deg, rgba(25,49,94,0.75) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
input:not([type="checkbox"]):not([type="radio"]):focus, select:focus, textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(162,212,238,0.48);
}
.date-field { position: relative; cursor: pointer; }
.date-field input[type="date"] {
  cursor: pointer;
  padding-right: 66px;
  border-color: rgba(19,136,200,0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}
.date-field::after {
  content: '\uD83D\uDCC5';
  position: absolute;
  right: 14px;
  top: 41px;
  inline-size: 34px;
  block-size: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(162,212,238,0.36), rgba(19,136,200,0.18));
  border: 1px solid rgba(19,136,200,0.18);
  pointer-events: none;
  font-size: 1rem;
}
.field-hint { color: var(--color-primary); font-size: 0.78rem; font-weight: 700; }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.01; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; margin: 0; cursor: pointer; z-index: 3; }
input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.date-field:focus-within::after { box-shadow: 0 0 0 4px rgba(162,212,238,0.38); border-color: rgba(19,136,200,0.38); }
textarea.json-editor { min-height: 340px; resize: vertical; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.form-actions, .button-row { display: flex; gap: 10px; flex-wrap: wrap; }
.form-actions { grid-column: 1 / -1; margin-top: 4px; }
.button-row.compact-row { justify-content: flex-end; }
.btn {
  border: 1px solid transparent; border-radius: 16px; padding: 0.9rem 1rem; color: white; font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark)); box-shadow: 0 14px 26px rgba(5,105,162,0.22); }
.btn-primary:hover { background: linear-gradient(180deg, var(--color-primary-dark), #09385d); }
.btn-secondary { background: white; border-color: var(--color-border-strong); color: var(--color-text-strong); }
.btn-success { background: linear-gradient(180deg, #22a06b, #0f7a4e); box-shadow: 0 14px 26px rgba(15,122,78,0.18); color: white; border-color: transparent; }
.btn-success-dark { background: linear-gradient(180deg, #177245, #0d5a36); box-shadow: 0 14px 26px rgba(13,90,54,0.2); color: white; border-color: transparent; }
.btn-success-light { background: linear-gradient(180deg, #4fcf8a, #24a865); box-shadow: 0 14px 26px rgba(36,168,101,0.18); color: white; border-color: transparent; }
.btn-warning { background: linear-gradient(180deg, #f4c46a, #d89b27); box-shadow: 0 14px 26px rgba(216,155,39,0.18); color: #4d2e00; border-color: transparent; }
.btn-orange { background: linear-gradient(180deg, #f39b4a, #dc6a11); box-shadow: 0 14px 26px rgba(220,106,17,0.18); color: white; border-color: transparent; }
.btn-danger { background: linear-gradient(180deg, #e46d86, #c73d5b); box-shadow: 0 14px 26px rgba(199,61,91,0.18); }
.notice {
  margin-top: 16px; border-radius: 18px; padding: 14px 15px; border: 1px solid var(--color-border); line-height: 1.55;
}
.notice.info { background: #f2f8fc; color: var(--color-text); }
.notice.success { background: #eefaf6; border-color: rgba(15,157,122,0.22); color: #176a57; }
.notice.warning { background: #fff7e9; border-color: rgba(185,119,0,0.22); color: #8f6200; }
.notice.error { background: #fff1f4; border-color: rgba(199,61,91,0.22); color: #9d2942; }
.empty-state { color: var(--color-muted); padding: 18px 0 4px; }
.empty-state-rich { display: grid; gap: 14px; padding: 18px; border: 1px dashed rgba(19,136,200,0.24); border-radius: 22px; background: linear-gradient(180deg, rgba(162,212,238,0.18), rgba(255,255,255,0.92)); }
.empty-state-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(5,105,162,0.12); color: var(--color-primary-dark); font-size: 1.25rem; }
.empty-state-copy strong { display: block; color: var(--color-text-strong); font-size: 1.02rem; margin-bottom: 6px; }
.empty-state-copy p { margin: 0; line-height: 1.6; }
.empty-state-points { display: grid; gap: 10px; }
.empty-state-points span { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.94); border: 1px solid var(--color-border); color: var(--color-text-strong); font-weight: 600; }
.empty-state-points span::before { content: "\u2022"; color: var(--color-primary); font-size: 1.2rem; line-height: 1; }
.summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.summary-item {
  border-radius: 20px; padding: 14px; border: 1px solid var(--color-border); background: white; min-height: 92px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.summary-item span { color: var(--color-muted); font-size: 0.85rem; }
.summary-item strong { font-size: 1.02rem; line-height: 1.35; color: var(--color-text-strong); }
.summary-item.featured { background: linear-gradient(180deg, rgba(162,212,238,0.28), rgba(255,255,255,1)); border-color: rgba(19,136,200,0.16); }
.summary-item.occupancy-good { background: linear-gradient(180deg, rgba(162,212,238,0.38), rgba(255,255,255,1)); border-color: rgba(19,136,200,0.22); }
.summary-item.occupancy-warn { background: linear-gradient(180deg, #fff7e9, #ffffff); border-color: rgba(185,119,0,0.22); }
.summary-item.occupancy-bad { background: linear-gradient(180deg, #fff1f4, #ffffff); border-color: rgba(199,61,91,0.22); }
.occupancy-banner {
  margin-bottom: 14px; padding: 14px 16px; border-radius: 18px; font-weight: 700; border: 1px solid var(--color-border);
}
.occupancy-banner.good { background: rgba(162,212,238,0.34); color: var(--color-primary-dark); border-color: rgba(19,136,200,0.18); }
.occupancy-banner.warn { background: #fff7e9; color: #8f6200; border-color: rgba(185,119,0,0.22); }
.occupancy-banner.bad { background: #fff1f4; color: #9d2942; border-color: rgba(199,61,91,0.22); }
.table-shell { overflow: auto; border: 1px solid var(--color-border); border-radius: 22px; background: white; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--color-border); text-align: left; }
th { color: var(--color-text-strong); background: #f8fbfd; }
.stack { display: grid; gap: 12px; }
.item-card {
  border-radius: 22px; padding: 18px; background: white; border: 1px solid var(--color-border);
}
.item-card h3 { margin: 0 0 0.35rem; font-size: 1.08rem; }
.item-card p, .support-copy, .muted-copy { color: var(--color-text); line-height: 1.6; margin: 0; }
.item-card ul { margin: 0.8rem 0 0; padding-left: 1.2rem; color: var(--color-text-strong); }
.item-card .muted-copy { margin-top: 0.5rem; }
.warning-chip, .status-chip {
  display: inline-flex; align-items: center; margin-top: 6px; margin-right: 8px; padding: 0.38rem 0.7rem; border-radius: 999px; font-size: 0.84rem;
}
.warning-chip { background: #fff7e9; border: 1px solid rgba(185,119,0,0.22); color: #8f6200; }
.status-chip.success { background: rgba(162,212,238,0.34); border: 1px solid rgba(19,136,200,0.18); color: var(--color-primary-dark); }
.status-chip.warning { background: #fff7e9; border: 1px solid rgba(185,119,0,0.22); color: #8f6200; }
.status-chip.error { background: #fff1f4; border: 1px solid rgba(199,61,91,0.22); color: #9d2942; }
pre { white-space: pre-wrap; word-break: break-word; color: var(--color-text-strong); background: #f8fbfd; border: 1px solid var(--color-border); border-radius: 16px; padding: 14px; }
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.guide-card, .window-card, .window-tile {
  border-radius: 20px; padding: 16px; background: white; border: 1px solid var(--color-border);
}
.guide-card h3 { margin: 0 0 0.5rem; }
.booking-layout { display: grid; grid-template-columns: minmax(260px, 0.8fr) 1.2fr; gap: 16px; align-items: start; }
.window-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.window-grid.compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
.window-card strong, .window-tile strong { display: block; margin-top: 0.4rem; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.05em; }
.window-label { color: var(--color-muted); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; }
.window-card small, .window-tile small { color: var(--color-text); display: block; margin-top: 0.45rem; }
.accent-card { background: linear-gradient(180deg, rgba(162,212,238,0.34), rgba(255,255,255,1)); }
.admin-wide { grid-column: 1 / -1; }
.modal { position: fixed; inset: 0; z-index: 30; display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(25,49,94,0.28); }
.modal-panel { position: relative; width: min(520px, calc(100% - 24px)); border-radius: 26px; padding: 22px; }
body.modal-open { overflow: hidden; }
.modal { overflow: auto; padding: 18px 0; }
details summary { cursor: pointer; color: var(--color-primary-dark); font-weight: 700; margin-bottom: 10px; }

/* =============================================================
   FOOTER
   - position:relative + z-index:2 keeps it above page-wash
   - width matches .page-shell so it aligns with page content
   - font-size/color/weight toned down to subtle footer style
   ============================================================= */
.site-footer {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1380px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding: 16px 0 14px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 4px;
}
.footer-brand span {
  color: var(--color-primary);
  margin-left: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-copy {
  color: var(--color-muted);
  max-width: 62ch;
  line-height: 1.6;
  font-size: 0.82rem;
  font-weight: 400;
}
.footer-stack {
  display: grid;
  gap: 4px;
  max-width: 68ch;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
}
.footer-stack p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 400;
}
.footer-stack a {
  color: var(--color-primary);
}
.footer-facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.82rem;
  text-decoration: none;
}
.footer-facebook-link:hover {
  text-decoration: underline;
}
.footer-facebook-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-muted);
}
.footer-policy-links a,
.footer-policy-links .inline-link-button {
  color: var(--color-muted);
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
.footer-policy-links a:hover,
.footer-policy-links .inline-link-button:hover {
  text-decoration: underline;
  color: var(--color-primary);
}
.footer-policy-links span {
  color: var(--color-border-strong);
}
@media (max-width: 780px) {
  .site-footer {
    width: min(100% - 16px, 1380px);
  }
  .footer-grid {
    flex-direction: column;
    gap: 12px;
  }
}
/* end footer */

@media (max-width: 1120px) {
  .hero, .main-grid, .booking-layout { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .page-shell { width: min(100% - 16px, 1320px); padding-top: 16px; }
  .hero { padding: 22px; }
  .hero h1 { max-width: none; }
  .stats-grid, .summary-grid, .guide-grid, .window-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { grid-column: auto; }
  .tabbar { top: 8px; overflow-x: auto; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .date-field::after { top: 40px; }
}

