/* Buckhorn Manor — one stylesheet for both pages.
   Direction: "Lake Journal" from the Claude Design file — cream paper, a serif for
   headlines, one navy for anything you can press. Mobile first; wider screens only add. */

:root {
  --bg: #f7f5f0;
  --paper: #fff;
  --sand: #efebe2;
  --ink: #1d1c1a;
  --ink-2: #4a463f;
  --muted: #6b665c;
  --line: #e6e1d6;
  --line-2: #cfc8b9;
  --navy: #2e4873;
  --navy-hover: #203656;
  --deep: #1f2a3a;
  --deep-line: #3a4658;
  --deep-muted: #aeb4bf;
  --red: #b3352b;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1240px;
  --radius: 8px;
  --serif: Newsreader, Georgia, 'Times New Roman', serif;
  --sans: Figtree, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --header-h: 68px;
}
@supports (color: oklch(0.4 0.09 255)) {
  :root { --navy: oklch(0.40 0.09 255); --navy-hover: oklch(0.32 0.09 255); }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
/* height:auto lets aspect-ratio win over the width/height attributes, which are there
   only so the browser reserves space before the photo arrives. */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--navy-hover); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
.deep :focus-visible { outline-color: #fff; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 6px; }
.skip:focus { top: 12px; color: #fff; }
.icon { width: 1em; height: 1em; flex: 0 0 auto; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- type ---------- */
.kicker { margin: 0; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.display { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
.h1 { font-size: clamp(40px, 6.4vw, 84px); }
.h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.015em; line-height: 1.08; }
.h3 { font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.01em; }
.lead { margin: 0; font-size: clamp(17px, 1.6vw, 19px); line-height: 1.55; color: var(--ink-2); max-width: 520px; }
.body { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: 999px;
  border: 0; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background .2s, color .2s, transform .1s; }
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 54px; padding: 14px 26px; font-size: 16px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: var(--sand); color: var(--ink); }
.btn-light { background: #f3f1ec; color: var(--deep); }
.btn-light:hover { background: #fff; color: var(--deep); }
.btn .icon { width: 16px; height: 16px; }
.textlink { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-weight: 600; font-size: 15px; color: var(--ink); }
.textlink:hover { color: var(--navy); }
.textlink .icon { width: 14px; height: 14px; }

/* ---------- rating chip ---------- */
.rating { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; color: var(--ink); min-height: 24px; }
.rating .icon { width: 15px; height: 15px; color: var(--ink); }
.rating .sep { color: var(--line-2); font-weight: 400; }
.rating .soft { font-weight: 500; color: var(--ink-2); }
.rating:empty { display: none; }
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 999px; background: var(--paper); font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.pill .icon { width: 13px; height: 13px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(247,245,240,0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 12px; min-height: var(--header-h); }
.brand { display: flex; flex: 0 0 auto; min-height: 44px; align-items: center; }
.brand img { height: clamp(32px, 5vw, 44px); width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(4px, 2vw, 24px); font-size: 15px; font-weight: 500; }
.nav a:not(.btn) { color: var(--ink); text-decoration: none; min-height: 44px; display: flex; align-items: center; padding-inline: 6px; }
.nav a:not(.btn):hover { color: var(--navy); }
.nav .btn { min-height: 44px; padding: 10px 18px; }
@media (max-width: 559px) { .nav a.hide-sm { display: none; } }

/* ---------- hero ---------- */
.hero { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(20px, 4vw, 56px) clamp(40px, 7vw, 96px); }
/* Laptop screens are wide but short: the headline is sized by width AND height so the
   Book button still lands above the fold on a 1280x720 display. */
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.1fr 1fr; }
  .hero-copy .h1 { font-size: min(5vw, 8.4vh, 80px); }
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.hero-copy .h1 { margin-top: -4px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
@media (max-width: 519px) { .hero-ctas .btn { flex: 1 1 100%; } }
/* The small photo hangs below the video and only tucks under its bottom corner, so the
   whole video stays in view. padding-bottom is the photo's height (a % of the width, like
   its own width) minus the tuck. */
.hero-art { --inset: 44%; --tuck: clamp(16px, 2vw, 28px); position: relative; padding-bottom: calc(var(--inset) - var(--tuck)); padding-left: clamp(12px, 3vw, 40px); order: -1; }
@media (min-width: 900px) { .hero-art { order: 0; } }
.hero-art .main { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: var(--sand); }
.hero-art .inset { position: absolute; left: 0; bottom: 0; width: var(--inset); aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--bg); background: var(--sand); }
.hero-art .pill { position: absolute; right: 14px; top: 14px; }
/* On a phone the Book button must be on the first screen — it is the reason the site
   exists. So the photo gets shorter, and the button moves above the paragraph. */
@media (max-width: 899px) {
  .hero { gap: 24px; }
  .hero-copy { gap: 16px; }
  .hero-copy .h1 { font-size: clamp(34px, 9.4vw, 56px); }
  .hero-art { --inset: 28%; }
  .hero-art .main { aspect-ratio: 16 / 9; }
  .hero-art .inset { border-width: 5px; }
  .hero-ctas { order: 3; margin-top: 4px; }
  .hero-copy .lead { order: 4; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(48px, 7vw, 96px); }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 24px; margin-bottom: clamp(24px, 4vw, 44px); }
.section-head > div { display: flex; flex-direction: column; gap: 10px; }

/* ---------- stays ---------- */
.stays { display: grid; gap: clamp(40px, 5vw, 56px); }
@media (min-width: 900px) { .stays { grid-template-columns: 1fr 1fr; } }
.stay { display: flex; flex-direction: column; gap: 18px; }
.stay-media { position: relative; display: block; overflow: hidden; border-radius: var(--radius); border: 0; padding: 0; background: var(--sand); cursor: zoom-in; width: 100%; }
.stay-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s; }
.stay-media:hover img { transform: scale(1.03); }
.stay-media .pill { position: absolute; left: 12px; bottom: 12px; }
.stay-body { display: flex; flex-direction: column; gap: 10px; }
.stay-title { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; padding: 0; list-style: none; }
.facts li { font-size: 14px; font-weight: 500; color: var(--ink-2); background: var(--sand); padding: 6px 12px; border-radius: 999px; }
.stay .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 519px) { .stay .btn { align-self: stretch; } }

/* ---------- photos ---------- */
.seg { display: inline-flex; gap: 4px; padding: 4px; background: var(--sand); border-radius: 999px; }
.seg button { border: 0; background: transparent; cursor: pointer; font-weight: 600; font-size: 15px; min-height: 44px; padding: 0 18px; border-radius: 999px; color: var(--ink); transition: background .2s, color .2s; }
.seg button[aria-selected="true"] { background: var(--ink); color: #fff; }
.strip-wrap { position: relative; }
.strip { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding: 0 var(--gutter) 14px;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
@media (min-width: 1240px) { .strip { padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); } }
.shot { flex: 0 0 auto; width: min(78vw, 520px); margin: 0; scroll-snap-align: start; }
.shot button { display: block; width: 100%; padding: 0; border: 0; background: var(--sand); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s; }
.shot button:hover img { transform: scale(1.03); }
.shot figcaption { margin-top: 8px; font-size: 14px; color: var(--muted); }
.strip-nav { display: none; }
@media (hover: hover) and (min-width: 720px) {
  .strip-nav { display: flex; gap: 8px; }
}
.round { width: 48px; height: 48px; border-radius: 999px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-2); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.round:hover { background: var(--sand); }
.round:disabled { opacity: .35; cursor: default; }
.round .icon { width: 20px; height: 20px; }
.hint { font-size: 14px; color: var(--muted); }
@media (hover: hover) and (min-width: 720px) { .hint { display: none; } }

/* ---------- guide teaser (dark) ---------- */
.deep { background: var(--deep); color: #f3f1ec; }
.deep a:not(.btn) { color: #fff; }
.deep .kicker { color: var(--deep-muted); }
.teaser { display: grid; gap: clamp(28px, 5vw, 72px); padding-block: clamp(48px, 7vw, 96px); }
@media (min-width: 900px) { .teaser { grid-template-columns: 1fr 1fr; align-items: center; } }
.teaser .body { color: #c9cdd4; max-width: 460px; margin-top: 18px; font-size: 17px; }
.teaser .btn { margin-top: 26px; }
.nearby { list-style: none; margin: 0; padding: 0; }
.nearby li { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-top: 1px solid var(--deep-line); font-size: 16px; }
.nearby li:last-child { border-bottom: 1px solid var(--deep-line); }
.nearby span:last-child { color: var(--deep-muted); white-space: nowrap; }

/* ---------- more stays ---------- */
.more-grid { display: grid; gap: 28px 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.card { display: flex; flex-direction: column; gap: 12px; color: var(--ink); text-decoration: none; }
.card:hover { color: var(--ink); }
.card-media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--sand); aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media .pill { position: absolute; left: 10px; top: 10px; }
.card-body { display: flex; flex-direction: column; gap: 3px; }
.card-top { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 600; }
.card-top .rating { font-size: 14px; }
.card-name { font-size: 16px; line-height: 1.4; color: var(--ink-2); }
.card-facts { font-size: 14px; color: var(--muted); }
.card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--navy); min-height: 32px; }
.card-cta .icon { width: 13px; height: 13px; }
.skel { background: linear-gradient(90deg, var(--sand) 0%, #f4f1ea 50%, var(--sand) 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite linear; border-radius: 6px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.skel-line { height: 14px; margin-top: 8px; }
.all-card { display: flex; flex-direction: column; justify-content: center; gap: 10px; min-height: 100%; padding: 24px; border-radius: var(--radius); border: 1px dashed var(--line-2);
  color: var(--ink); text-decoration: none; transition: background .2s; }
.all-card:hover { background: var(--sand); color: var(--ink); }
.all-card strong { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.15; }
.all-card span { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--navy); }
.all-card .icon { width: 13px; height: 13px; }
.sync-note { margin: 22px 0 0; font-size: 13px; color: #8a8479; min-height: 20px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center; justify-content: space-between; padding-block: 40px; font-size: 15px; color: var(--ink-2); }
.site-footer img { height: 36px; width: auto; }
.foot-links { display: flex; flex-wrap: wrap; gap: 4px 28px; }
.foot-links a, .foot-links span { min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- dialogs (booking sheet + lightbox) ---------- */
dialog { padding: 0; border: 0; color: var(--ink); }
dialog::backdrop { background: rgba(20, 22, 26, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.sheet { width: min(560px, 100%); max-width: 100%; max-height: min(88vh, 760px); border-radius: 16px; background: var(--bg); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.sheet[open] { animation: rise .28s cubic-bezier(.2,.8,.2,1); }
@media (max-width: 599px) {
  .sheet { margin: auto 0 0; width: 100%; border-radius: 18px 18px 0 0; max-height: 90vh; padding-bottom: env(safe-area-inset-bottom); }
}
@keyframes rise { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet-inner { display: flex; flex-direction: column; max-height: inherit; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 18px 10px 22px; }
.sheet-head h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.12; }
.sheet-body { overflow-y: auto; padding: 4px 14px 18px; overscroll-behavior: contain; }
.grabber { display: none; }
@media (max-width: 599px) { .grabber { display: block; width: 40px; height: 5px; border-radius: 3px; background: var(--line-2); margin: 10px auto 0; } }
.opt { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 12px; text-decoration: none; color: var(--ink); min-height: 64px; }
.opt:hover { background: var(--sand); color: var(--ink); }
.opt img { width: 88px; height: 66px; object-fit: cover; border-radius: 8px; background: var(--sand); flex: 0 0 auto; }
.opt-feature img { width: 104px; height: 78px; }
.opt-text { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.opt-text strong { font-size: 16px; line-height: 1.3; }
.opt-text span { font-size: 14px; color: var(--muted); }
.opt-text .rating { font-size: 14px; }
.opt > .icon { width: 16px; height: 16px; color: var(--muted); }
.sheet-sub { margin: 14px 10px 4px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.sheet-foot { padding: 6px 10px 0; }
.sheet-foot .btn { width: 100%; }

.lightbox { width: 100vw; height: 100dvh; max-width: 100vw; max-height: 100dvh; margin: 0; background: #0d0f12; color: #fff; }
.lightbox::backdrop { background: #0d0f12; }
.lb { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; }
.lb-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px 10px 20px; padding-top: max(10px, env(safe-area-inset-top)); font-size: 15px; }
.lb-stage { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 0 8px; touch-action: pan-y pinch-zoom; }
.lb-stage img { width: auto; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; user-select: none; -webkit-user-drag: none; }
.lb-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px 12px 20px; padding-bottom: max(14px, env(safe-area-inset-bottom)); }
.lb-cap { margin: 0; font-size: 15px; color: #c9cdd4; min-width: 0; }
.lb-foot .btn { flex: 0 0 auto; }
.lb .round { background: rgba(255,255,255,.12); box-shadow: none; color: #fff; }
.lb .round:hover { background: rgba(255,255,255,.22); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
@media (hover: none) and (max-width: 719px) { .lb-prev, .lb-next { display: none; } }
.close { width: 44px; height: 44px; border-radius: 999px; border: 0; background: var(--sand); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.close .icon { width: 18px; height: 18px; }
.lb .close { background: rgba(255,255,255,.12); color: #fff; }

/* ======================================================================
   GUEST GUIDE
   ====================================================================== */
.guide-header .wrap { min-height: 60px; }
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 0 var(--gutter) 10px; max-width: var(--max); margin: 0 auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips::-webkit-scrollbar { display: none; }
.chips a { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 999px; background: var(--paper); box-shadow: inset 0 0 0 1px #d8d2c5;
  color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; transition: background .2s, color .2s; }
.chips a:hover { box-shadow: inset 0 0 0 1px var(--ink); color: var(--ink); }
.chips a[aria-current="true"] { background: var(--ink); color: #fff; box-shadow: none; }
.guide { max-width: 1080px; margin: 0 auto; padding: clamp(24px, 5vw, 56px) var(--gutter) 88px; display: flex; flex-direction: column; gap: clamp(52px, 7vw, 84px); }
.guide section { scroll-margin-top: 128px; }
.guide h2 { margin: 0 0 22px; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.01em; }
.intro { display: grid; gap: 18px 40px; }
@media (min-width: 820px) { .intro { grid-template-columns: 1.2fr 1fr; } }
.intro .body { font-size: 17px; line-height: 1.65; }
.tiles { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.tile { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.tile .label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.tile.dark { background: var(--deep); border-color: var(--deep); color: #f3f1ec; }
.tile.dark .label, .tile.dark .k { color: var(--deep-muted); }
.kv { display: flex; flex-direction: column; gap: 2px; }
.kv .k { font-size: 13px; color: var(--muted); }
.kv .v { font-size: 20px; font-weight: 600; letter-spacing: .01em; }
.big-time { font-family: var(--serif); font-size: 42px; line-height: 1; }
.tile .foot { margin-top: auto; }
.tile .btn { width: 100%; }
.host { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid #eee9df; }
.host:last-of-type { border-bottom: 0; }
.host strong { display: block; font-size: 16px; }
.host small { font-size: 14px; color: var(--muted); }
.host-btns { display: flex; gap: 8px; }
.icon-btn { width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--sand); color: var(--ink); text-decoration: none; }
.icon-btn:hover { background: var(--navy); color: #fff; }
.icon-btn .icon { width: 19px; height: 19px; }
.banner { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: 12px; margin-bottom: 8px; background: var(--sand); }
@media (max-width: 599px) { .banner { aspect-ratio: 16 / 9; } }
.rules { display: grid; gap: 0 48px; margin: 0; }
@media (min-width: 820px) { .rules { grid-template-columns: 1fr 1fr; } }
.rules > div { padding: 18px 0; border-top: 1px solid var(--line); }
.rules dt { font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.rules dd { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.cards3 { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.cards3 .tile h3 { margin: 0; font-size: 17px; }
.cards3 .tile p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.split { display: grid; gap: 22px 56px; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1.6fr; } }
.split h2 { margin-bottom: 14px; }
.checklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.checklist li { border-bottom: 1px solid var(--line); }
.checklist button { width: 100%; display: flex; gap: 14px; align-items: flex-start; text-align: left; border: 0; background: transparent; cursor: pointer; font-size: 16px; line-height: 1.5; padding: 14px 0; min-height: 56px; }
.box { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 7px; box-shadow: inset 0 0 0 1.5px #b9b2a3; background: var(--paper); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.box .icon { width: 16px; height: 16px; opacity: 0; }
.checklist button[aria-pressed="true"] .box { background: var(--navy); box-shadow: none; }
.checklist button[aria-pressed="true"] .box .icon { opacity: 1; }
.checklist button[aria-pressed="true"] .txt { color: #8a8479; text-decoration: line-through; }
.progress { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.progress button { border: 0; background: none; color: var(--navy); font-weight: 600; cursor: pointer; min-height: 44px; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.place .top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.place .type { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.place .dist { font-size: 13px; color: var(--muted); white-space: nowrap; }
.place h3 { font-family: var(--serif); font-weight: 400; font-size: 24px !important; }
.place .links { margin-top: auto; padding-top: 6px; display: flex; flex-wrap: wrap; gap: 0 18px; }
.place .links a { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; }
.place .links .icon { width: 15px; height: 15px; }
.list-rows { border-top: 1px solid var(--line); }
.list-rows > div { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.list-rows span { font-size: 15px; color: var(--ink-2); }
.two-col { display: grid; gap: 24px 48px; font-size: 16px; line-height: 1.65; color: var(--ink-2); }
@media (min-width: 820px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col h3 { margin: 0 0 10px; font-size: 17px; color: var(--ink); }
.two-col p { margin: 0 0 10px; }
.emergency { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: clamp(22px, 4vw, 36px); display: flex; flex-direction: column; gap: 20px; }
.emergency .head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.emergency h2 { margin: 0; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #8f2821; color: #fff; }
.em-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.em-grid > div { display: flex; flex-direction: column; gap: 4px; }
.em-grid strong { color: var(--ink); }
.em-grid a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 600; }
.toast { position: fixed; left: 50%; bottom: max(20px, env(safe-area-inset-bottom)); transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 15px; font-weight: 500;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 50; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
