:root {
  --ink: #1d2733;
  --muted: #5b6775;
  --line: #dde3ea;
  --bg: #ffffff;
  --bg-soft: #f3f6f9;
  --brand: #0b5e9e;
  --brand-dark: #084a7d;
  --accent: #e6a400;
  --ok: #1d7a46;
  --max: 68rem;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }
h1, h2, h3 { line-height: 1.2; margin: 1.6em 0 .5em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: .8em; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.15rem; }
p, ul, ol { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
.muted { color: var(--muted); }
.skip { position: absolute; left: -999px; top: 0; background: #fff; padding: .5rem; }
.skip:focus { left: .5rem; z-index: 10; }

/* header */
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.site-header .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1.5rem; padding-top: .8rem; padding-bottom: .8rem; }
.brand { font-weight: 700; font-size: 1.2rem; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: .6rem; }
.brand small { font-weight: 400; color: var(--muted); font-size: .85rem; }
.brand-mark { background: var(--brand); color: #fff; font-size: .8rem; font-weight: 800; padding: .25rem .45rem; border-radius: 6px; letter-spacing: .04em; }
nav a { display: inline-block; padding: .35rem .7rem; margin: 0 .1rem; border-radius: 6px; text-decoration: none; color: var(--ink); font-size: .95rem; }
nav a:hover { background: var(--bg-soft); }
nav a[aria-current="page"] { background: var(--brand); color: #fff; }

/* hero */
.hero { display: grid; gap: 2rem; grid-template-columns: 1.2fr 1fr; align-items: center; padding: 2.5rem 0 1rem; }
.hero h1 { margin-top: 0; }
.hero .lede { font-size: 1.15rem; color: var(--muted); }
.hero img { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.price { display: inline-block; background: var(--accent); color: #2b2000; font-weight: 700; padding: .2rem .6rem; border-radius: 6px; }
.cta { display: inline-block; background: var(--brand); color: #fff; text-decoration: none; font-weight: 600; padding: .75rem 1.2rem; border-radius: 8px; margin: .4rem .6rem .4rem 0; }
.cta:hover { background: var(--brand-dark); color: #fff; }
.cta.secondary { background: var(--bg-soft); color: var(--brand); border: 1px solid var(--line); }

/* facts grid */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; list-style: none; padding: 0; margin: 1.5rem 0; }
.facts li { background: var(--bg-soft); border-radius: 10px; padding: 1rem 1.1rem; }
.facts strong { display: block; color: var(--brand-dark); margin-bottom: .2rem; }

/* callouts */
.callout { border-left: 4px solid var(--brand); background: var(--bg-soft); padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.callout.warn { border-color: var(--accent); }
.checklist { list-style: none; padding: 0; }
.checklist li { padding: .55rem 0 .55rem 2rem; position: relative; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: .4rem; color: var(--ok); font-weight: 700; }
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: .4rem 0 .4rem 2.6rem; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: .45rem; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: .9rem; display: grid; place-items: center; }
details { border: 1px solid var(--line); border-radius: 8px; padding: .6rem 1rem; margin: .5rem 0; }
summary { cursor: pointer; font-weight: 600; }

/* form */
form.contact { display: grid; gap: 1rem; max-width: 36rem; }
form.contact label { font-weight: 600; display: block; }
form.contact input, form.contact textarea, form.contact select {
  width: 100%; font: inherit; padding: .6rem .7rem; border: 1px solid #aab4c0; border-radius: 6px; margin-top: .25rem; background: #fff; color: var(--ink);
}
form.contact textarea { min-height: 9rem; }
form.contact button { justify-self: start; font: inherit; font-weight: 600; background: var(--brand); color: #fff; border: 0; padding: .75rem 1.4rem; border-radius: 8px; cursor: pointer; }
form.contact button:hover { background: var(--brand-dark); }
.hp { position: absolute; left: -9999px; }
.notice { padding: .9rem 1.1rem; border-radius: 8px; margin: 1rem 0; display: none; }
.notice.ok { background: #e6f5ec; color: var(--ok); }
.notice.bad { background: #fbe9e7; color: #9b2c1f; }

/* footer */
.site-footer { margin-top: 3rem; border-top: 1px solid var(--line); background: var(--bg-soft); padding: 1.5rem 0; font-size: .92rem; }

.facts.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 60rem) { .facts.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 44rem) {
  .facts.four { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; padding-top: 1.25rem; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  nav a { padding: .35rem .5rem; font-size: .9rem; }
}

/* booked / directions page (unlisted) + print */
.booked .address { font-size: 1.15rem; }
.figs { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin: 1.2rem 0; }
figure.pair { margin: 0; }
@media (max-width: 44rem) { .figs { grid-template-columns: 1fr; } }
figure.pair figcaption { font-size: .9rem; color: var(--muted); margin-top: .4rem; }
@media print {
  .site-header nav, .skip, .cta { display: none; }
  body { font-size: 10.5pt; line-height: 1.4; }
  h1 { font-size: 18pt; margin-top: 0; }
  h2 { font-size: 13pt; margin: 1em 0 .3em; }
  .checklist li { padding: .25rem 0 .25rem 1.6rem; }
  .figs { grid-template-columns: 1fr 1fr; }
  .figs img { max-height: 7cm; width: auto; }
  a { color: inherit; text-decoration: none; }
  .callout, .facts li { border: 1px solid #999; background: none; }
  figure.pair { break-inside: avoid; }
  h2 { break-after: avoid; }
  .site-footer { display: none; }
}
