/* ===== China Family Trip 2026 — styles ===== */
:root {
  --red: #9e1b1b;
  --red-bright: #c0392b;
  --gold: #c8a24a;
  --gold-soft: #e6cf9b;
  --ink: #1d1a17;
  --ink-soft: #4a443d;
  --paper: #faf6ef;
  --paper-2: #f3ece0;
  --card: #ffffff;
  --line: #e6ddcf;
  --shadow: 0 6px 24px rgba(40, 30, 15, 0.08);
  --shadow-lg: 0 18px 50px rgba(40, 30, 15, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1080px;
  --serif: "Noto Serif SC", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  font-family: var(--serif);
  background: var(--red); color: #fff;
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; font-size: 20px;
  box-shadow: var(--shadow);
}
.brand-text { font-size: 16px; letter-spacing: .2px; }
.brand-year { color: var(--gold); font-weight: 700; }
.nav { display: flex; gap: 22px; font-weight: 500; font-size: 15px; }
.nav a { color: var(--ink-soft); transition: color .15s; position: relative; }
.nav a:hover { color: var(--red); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--red); transition: width .2s;
}
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 78vh;
  display: grid; align-items: center;
  color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(200,162,74,.35), transparent 55%),
    linear-gradient(160deg, #7a1414 0%, #9e1b1b 45%, #5e0f0f 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08) 0, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff' stroke-opacity='.05'/%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px 24px; width: 100%; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 600;
  color: var(--gold-soft); margin: 0 0 14px;
}
.hero-title { font-family: var(--serif); font-size: clamp(56px, 12vw, 132px); font-weight: 700; letter-spacing: -1px; }
.hero-cn { font-size: .42em; vertical-align: middle; color: var(--gold-soft); }
.hero-route { font-size: clamp(16px, 2.5vw, 22px); font-weight: 600; margin: 8px 0 18px; color: #fff; }
.hero-summary { max-width: 620px; font-size: 17px; color: rgba(255,255,255,.9); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-stat {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px; padding: 12px 18px; backdrop-filter: blur(4px);
}
.hero-stat b { display: block; font-size: 22px; }
.hero-stat span { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-soft); }
.hero-scroll {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 26px; color: rgba(255,255,255,.7); animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 72px 24px; }
.section-tint { max-width: none; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-tint > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(28px, 5vw, 40px); color: var(--red);
  display: inline-block; position: relative; padding-bottom: 12px;
}
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 3px; background: var(--gold); border-radius: 2px;
}
.section-sub { color: var(--ink-soft); margin-top: 14px; font-size: 16px; }

/* ===== Map ===== */
.map { height: 460px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.leaflet-popup-content-wrapper { border-radius: 12px; }
.map-popup b { color: var(--red); font-size: 15px; }
.map-popup span { color: var(--ink-soft); font-size: 13px; }

.phase-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 28px; }
.phase-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s;
  border-top: 3px solid var(--red);
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.phase-num { font-family: var(--serif); color: var(--gold); font-weight: 700; font-size: 14px; }
.phase-card h3 { font-size: 20px; margin: 4px 0 2px; }
.phase-sub { color: var(--red); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.phase-dates { color: var(--ink-soft); font-size: 14px; margin: 8px 0; }
.phase-hotel { font-size: 14px; font-weight: 600; }
.phase-hotel small { display: block; font-weight: 400; color: var(--ink-soft); }
.phase-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.phase-tags span { font-size: 11.5px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; color: var(--ink-soft); }

/* ===== Filters ===== */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.filter-btn {
  font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: 999px; padding: 8px 16px; transition: all .15s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ===== Days ===== */
.days { display: grid; gap: 14px; }
.day-card {
  display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow); cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s; text-align: left;
}
.day-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.day-card.is-signature { border-left: 4px solid var(--gold); }
.day-num { text-align: center; }
.day-num b { font-family: var(--serif); display: block; font-size: 30px; color: var(--red); line-height: 1; }
.day-num span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }
.day-main h3 { font-size: 18px; margin-bottom: 4px; }
.day-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: var(--ink-soft); }
.day-city { font-weight: 600; color: var(--red); }
.chip { font-size: 11px; font-weight: 600; border-radius: 999px; padding: 2px 9px; letter-spacing: .3px; }
.chip-signature { background: #fbf2d8; color: #8a6d1f; border: 1px solid var(--gold-soft); }
.chip-rest { background: #e8f1ea; color: #2f6b46; border: 1px solid #bcdcc7; }
.chip-travel { background: #e9eef6; color: #34507e; border: 1px solid #c3d2e8; }
.day-go { color: var(--gold); font-size: 22px; font-weight: 700; }

/* ===== Packing ===== */
.packing-actions { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 24px; }
.packing-progress { font-weight: 600; color: var(--red); }
.btn-ghost { background: none; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; cursor: pointer; font-weight: 600; color: var(--ink-soft); font-family: var(--sans); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.packing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.packing-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.packing-card h3 { color: var(--red); font-size: 17px; margin-bottom: 6px; }
.packing-card .pk-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; font-style: italic; }
.pk-item { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 14.5px; }
.pk-item input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--red); cursor: pointer; flex: none; }
.pk-item.checked span { text-decoration: line-through; color: #aaa; }

/* ===== Info ===== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-bottom: 40px; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.info-card h3 { font-size: 16px; color: var(--red); margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.info-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-col h3 { font-family: var(--serif); color: var(--red); font-size: 22px; margin-bottom: 16px; }
.tips-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tips-list li { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14.5px; box-shadow: var(--shadow); }
.reservations { display: grid; gap: 8px; }
.resv { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 14px; box-shadow: var(--shadow); }
.resv b { font-size: 14.5px; }
.resv .resv-dates { color: var(--red); font-weight: 600; font-size: 13px; white-space: nowrap; }
.resv small { grid-column: 1 / -1; color: var(--ink-soft); font-size: 13px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: grid; place-items: center; color: #fff;
  font-family: var(--serif); font-size: 22px; text-align: center; padding: 16px;
}
.gallery-item span { position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,.05), rgba(0,0,0,.45)); }
.gallery-note { text-align: center; color: var(--ink-soft); font-size: 14px; margin-top: 22px; }
.gallery-note code { background: var(--paper-2); padding: 2px 7px; border-radius: 6px; border: 1px solid var(--line); }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--paper-2); text-align: center; padding: 48px 24px; }
.footer-route { font-family: var(--serif); font-size: 18px; color: var(--gold-soft); margin-bottom: 8px; }
.footer-meta { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-fine { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 14px; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30,22,12,.55); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; background: var(--paper); border-radius: var(--radius);
  max-width: 680px; width: 100%; max-height: 86vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: pop .2s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: sticky; top: 12px; float: right; margin: 12px 12px 0 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer; font-size: 15px; color: var(--ink-soft); z-index: 2;
}
.modal-body { padding: 8px 30px 34px; }
.modal-eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; }
.modal-body h2 { font-family: var(--serif); color: var(--red); font-size: 28px; margin: 6px 0 4px; }
.modal-daymeta { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.modal-daymeta b { color: var(--red); }

.block { margin-bottom: 20px; border-left: 2px solid var(--line); padding-left: 18px; position: relative; }
.block::before { content: ""; position: absolute; left: -6px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.block-time { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }
.block-title { font-weight: 700; font-size: 16px; margin: 2px 0 4px; }
.block-text { font-size: 14.5px; color: var(--ink-soft); }
.block.kind-transit::before { background: #34507e; }
.block.kind-transit { border-left-color: #c3d2e8; }
.block.kind-optional::before { background: #9aa0a6; }
.block-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 999px; margin-bottom: 4px; }
.tag-optional { background: #eef0f2; color: #5f6368; }
.tag-dining { background: #fbecea; color: var(--red-bright); }
.tag-choice { background: #fbf2d8; color: #8a6d1f; }
.note-block { background: var(--paper-2); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; color: var(--ink-soft); font-style: italic; margin-bottom: 18px; }
.opt-row { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; margin: 8px 0; box-shadow: var(--shadow); }
.opt-label { font-size: 11.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; }
.opt-name { font-weight: 700; font-size: 15px; }
.opt-text { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
         background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 0; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 24px; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .info-split { grid-template-columns: 1fr; }
  .day-card { grid-template-columns: 60px 1fr; }
  .day-go { display: none; }
  .modal-body { padding: 8px 20px 28px; }
  .section { padding: 56px 20px; }
  .countdown-units { gap: 10px; }
  .cd-unit { min-width: 68px; padding: 10px 8px; }
  .cd-unit b { font-size: 30px; }
  .section-cards { grid-template-columns: 1fr; }
}

/* ===== Nav active state (multi-page) ===== */
.nav a.active { color: var(--red); }
.nav a.active::after { width: 100%; }

/* ===== Countdown ===== */
.countdown {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 26px;
}
.countdown-label {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700;
  color: var(--gold-soft); margin-bottom: 14px; text-align: center;
}
.countdown-units { display: flex; gap: 16px; }
.cd-unit {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px; padding: 14px 18px; min-width: 92px; text-align: center;
  backdrop-filter: blur(4px);
}
.cd-unit b {
  display: block; font-family: var(--serif); font-size: 44px; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.cd-unit span {
  display: block; margin-top: 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold-soft);
}
.countdown-during, .countdown-after {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px; padding: 16px 26px; text-align: center; backdrop-filter: blur(4px);
}
.countdown-during b, .countdown-after b {
  font-family: var(--serif); font-size: 30px; display: block; color: #fff;
}
.countdown-during span, .countdown-after span { color: var(--gold-soft); font-size: 14px; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(200,162,74,.30), transparent 55%),
    linear-gradient(160deg, #7a1414 0%, #9e1b1b 55%, #5e0f0f 100%);
  padding: 54px 24px 46px;
}
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero .page-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700;
  color: var(--gold-soft); margin: 0 0 8px;
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(34px, 6vw, 52px); }
.page-hero .page-sub { margin-top: 10px; font-size: 16px; color: rgba(255,255,255,.9); max-width: 640px; }
.page-back {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-weight: 600; font-size: 14px; color: var(--gold-soft);
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 7px 15px;
  transition: background .15s;
}
.page-back:hover { background: rgba(255,255,255,.12); }

/* ===== Home: section navigation cards ===== */
.section-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.section-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); text-align: left;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  border-bottom: 3px solid var(--gold);
}
.section-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.section-card .sc-icon { font-size: 30px; }
.section-card h3 { font-size: 20px; color: var(--red); }
.section-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; flex: 1; }
.section-card .sc-go { font-weight: 700; color: var(--gold); font-size: 14px; }

/* ===== Still to book ===== */
.stb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.stb-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); border-top: 3px solid var(--red-bright); padding: 20px; box-shadow: var(--shadow); }
.stb-card h3 { font-size: 15.5px; color: var(--red); margin-bottom: 12px; }
.stb-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.stb-card li { font-size: 14px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.stb-card li::before { content: "▢"; position: absolute; left: 0; color: var(--red-bright); }

/* ===== Block link (e.g. show tickets) ===== */
.block-link { display: inline-block; margin-top: 6px; font-size: 13.5px; font-weight: 600; color: var(--red-bright); }
.block-link:hover { text-decoration: underline; }

/* ===== Day dropdowns (expand/collapse) ===== */
.day-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .15s, border-color .15s;
}
.day-item:hover { border-color: var(--gold-soft); }
.day-item.open { box-shadow: var(--shadow-lg); }
.day-item.is-signature { border-left: 4px solid var(--gold); }
.day-head {
  display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 18px;
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 18px 22px; font-family: var(--sans); transition: background .15s;
}
.day-head:hover { background: var(--paper-2); }
.day-chevron { color: var(--gold); font-size: 20px; transition: transform .2s; }
.day-item.open .day-chevron { transform: rotate(180deg); }
.day-panel { padding: 4px 24px 22px; border-top: 1px solid var(--line); }
.day-panel[hidden] { display: none; }
.day-panel .block:first-child { margin-top: 16px; }

/* ===== Clickable landmark name → blurb popup ===== */
.landmark-link {
  font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer;
  border-bottom: 1.5px dotted var(--gold); transition: color .15s;
}
.landmark-link:hover { color: var(--red); }
.landmark-link .lm-info {
  font-size: .72em; color: var(--gold); vertical-align: super; margin-left: 3px; font-weight: 700;
}

/* ===== Restaurant hyperlink ===== */
.opt-name a.restaurant-link { color: var(--red-bright); text-decoration: none; }
.opt-name a.restaurant-link:hover { text-decoration: underline; }
.opt-name a.restaurant-link .ext { font-size: .8em; opacity: .7; margin-left: 3px; }

/* ===== Blurb popup content ===== */
.blurb-eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; }
.blurb h2 { font-family: var(--serif); color: var(--red); font-size: 26px; margin: 6px 0 16px; }
.blurb p { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 14px; }
.blurb p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .day-head { grid-template-columns: 60px 1fr auto; padding: 16px; gap: 12px; }
  .day-panel { padding: 4px 16px 18px; }
}
