/* ==========================================================================
   Lankan Hotels — design system
   Tokens and scale from handover CLAUDE.md §12. The v3 HTML files are the
   source of truth for look and feel; this is that look rebuilt mobile-first.
   ========================================================================== */

:root {
  /* colour */
  --ink: #16201D;
  --white: #FFFFFF;
  --stone: #F5F3EF;
  --line: #E3E0DA;
  --line-strong: #CFCBC3;
  --tea: #1F4D3A;
  --tea-dark: #173D2E;
  --brass: #A8823A;
  --brass-light: #E3C27F;
  --muted: #5B6461;
  --soft: #EAF0EC;
  --negative: #9A4A2A;
  --amber: #6E5320;
  --amber-bg: #F3EAD7;

  /* shape */
  --r-btn: 4px;
  --r-card: 6px;

  /* rhythm */
  --wrap: 1280px;
  --gutter: 16px;
  --sec-y: 56px;

  --shadow-card: 0 0 0 1px var(--line);
  --shadow-lift: 0 18px 44px rgba(15, 25, 21, .10);
  --shadow-float: 0 20px 50px rgba(15, 25, 21, .16);
}

@media (min-width: 900px) {
  :root { --gutter: 24px; --sec-y: 110px; }
}

/* --------------------------------------------------------------- reset --- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

:where(a, button, input, select, [tabindex]):focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--tea); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------- layout --- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.sec { padding-block: var(--sec-y); }
.sec.alt { background: var(--stone); }

.serif { font-family: Lora, Georgia, serif; }

/* ----------------------------------------------------------- typography -- */

h1, .h1 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 4.25rem);
  letter-spacing: -.025em;
  line-height: 1.04;
}

h2, .h2 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.875rem);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.blk h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.125rem); letter-spacing: -.015em; margin-bottom: 18px; }

h3 { font-family: Lora, Georgia, serif; font-size: 1.375rem; }

.eyebrow {
  font-size: .84375rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sep { width: 4px; height: 4px; border-radius: 50%; background: #B9B4AA; display: inline-block; flex: none; }
.stars { display: inline-flex; gap: 1px; }
.tbc { color: var(--muted); font-size: .84375rem; }

.lede { font-size: 1.0625rem; color: var(--muted); margin-top: 14px; max-width: 46rem; }

.more {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--tea);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--brass);
}
.more:hover { text-decoration-thickness: 2.5px; }

/* --------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 24px;
  border: 0;
  border-radius: var(--r-btn);
  background: var(--tea);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: .96875rem;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--tea-dark); }
.btn.ghost { background: transparent; color: var(--tea); box-shadow: inset 0 0 0 1.5px var(--tea); }
.btn.ghost:hover { background: var(--soft); }
.btn.light { background: #fff; color: var(--tea); }
.btn.light:hover { background: var(--soft); }
.btn.block { width: 100%; }

.chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  font-size: .90625rem;
  background: #fff;
}

.tag {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--tea);
  font-size: .84375rem;
  font-weight: 600;
}
.tag.b { background: var(--amber-bg); color: var(--amber); }

/* ------------------------------------------------------------ photo slot -- */

.ph { position: relative; overflow: hidden; border-radius: var(--r-card); background: var(--stone); }
.ph img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder: shows the shot needed, so a missing photo is obvious. */
.ph-empty {
  background: linear-gradient(160deg, #8FA792 0%, #5E7E66 55%, #34523F 100%);
  min-height: 160px;
  display: flex;
  align-items: flex-end;
}
.phl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px;
  font-size: .75rem;
  color: #fff;
  background: rgba(15, 25, 21, .55);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ---------------------------------------------------------------- top bar -- */

.util { background: var(--tea-dark); color: rgba(255, 255, 255, .88); font-size: .84375rem; }
.util .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.util .l, .util .r { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.util span, .util a { display: flex; align-items: center; gap: 8px; }
.util a:hover { color: #fff; text-decoration: underline; }
.util b { color: #fff; font-weight: 600; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #6FCF97; flex: none; }

@media (max-width: 899px) {
  .util .l span:not(:first-child), .util .r a:not(:first-child) { display: none; }
  .util .wrap { justify-content: space-between; }
}
.hide-md { }

/* ----------------------------------------------------------------- header -- */

.nav { border-bottom: 1px solid var(--line); background: #fff; position: relative; }
.nav .wrap { display: flex; align-items: center; gap: 20px; min-height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { flex: none; width: 38px; height: 38px; }
.bw { display: flex; flex-direction: column; line-height: 1.15; }
.bn { font-family: Lora, Georgia, serif; font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.bs { font-size: .75rem; margin-top: 3px; color: var(--muted); }
.bn.on-dark { color: #fff; }
.bs.on-dark { color: rgba(255, 255, 255, .7); }

.links ul { list-style: none; display: flex; gap: 28px; font-size: .96875rem; font-weight: 600; }
.nav-cta { margin-left: auto; }

/* Menu: a checkbox disclosure, so it works with no JavaScript. The checkbox
   itself is off-screen but focusable; the label is the visible control. */
.navcheck {
  position: absolute; width: 1px; height: 1px; opacity: 0;
  margin: 0; pointer-events: none;
}
.navtoggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--ink);
  cursor: pointer;
}
.navcheck:focus-visible + .navtoggle { outline: 3px solid var(--brass); outline-offset: 2px; }

@media (max-width: 1023px) {
  .links { display: none; }
  .navcheck:checked ~ .links {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%; z-index: 40;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(15, 25, 21, .10);
  }
  .navcheck:checked ~ .links ul { flex-direction: column; gap: 0; padding: 8px var(--gutter) 16px; }
  .navcheck:checked ~ .links li { border-bottom: 1px solid var(--line); }
  .navcheck:checked ~ .links a { display: block; padding: 14px 0; }
  .nav-cta { display: none; }
}

@media (min-width: 1024px) {
  .navtoggle { display: none; }
  .links { display: block; margin-left: auto; }
  .nav .wrap { min-height: 88px; gap: 40px; }
  .brand svg { width: 44px; height: 44px; }
  .bn { font-size: 1.4375rem; }
}

/* ------------------------------------------------------------------- hero -- */

/* The photo and the veil are absolute layers behind the text. The section's
   own min-height drives the size, and .hero-abs clips, so the image can never
   extend past the veil. */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.hero-abs { position: absolute; inset: 0; overflow: hidden; z-index: -1; }
.hero .ph { border-radius: 0; height: 100%; min-height: 100%; }
.hero .ph img { position: absolute; inset: 0; }

/* On a full-bleed hero the "photo needed" label sits top-right, clear of the
   headline (the v3 design does the same). Disappears once a real photo lands. */
.hero .ph-empty, .band .ph-empty { align-items: flex-start; justify-content: flex-end; }
.hero .phl, .band .phl { margin: 12px 16px; }
/* Two layers: a flat scrim that guarantees a floor of darkness whatever the
   photo is, plus a directional gradient for depth. Hero photos are supplied by
   the owner and can be bright (sand, sea), so the scrim is what keeps white
   text above AA rather than luck. */
.veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 22, 18, .30) 0%, rgba(12, 22, 18, .85) 100%),
    rgba(12, 22, 18, .30);
}
.hc1 { position: relative; z-index: 2; color: #fff; padding-block: 56px 40px; max-width: 46rem; }
.hc1 .crumb { font-size: .875rem; color: rgba(255, 255, 255, .85); }
.hc1 h1 { margin-top: 14px; }
.hc1 p { font-size: 1.125rem; margin-top: 18px; color: rgba(255, 255, 255, .94); max-width: 36rem; }
.hc1 p b { color: #fff; }

@media (min-width: 900px) {
  .hero { min-height: 620px; }
  /* Measured against the brightest pixel behind each text run — see
     build/contrast.mjs. Sand and sea highlights are close to white, so the
     scrim has to be heavier than it looks like it needs to be. */
  .veil {
    background:
      linear-gradient(90deg, rgba(12, 22, 18, .88) 0%, rgba(12, 22, 18, .74) 45%, rgba(12, 22, 18, .42) 75%, rgba(12, 22, 18, .20) 100%),
      rgba(12, 22, 18, .36);
  }
  .hc1 { padding-block: 120px 110px; }
}

.hero-abs { position: absolute; inset: 0; }

/* ------------------------------------------------------------- quote bar -- */

.qbar {
  position: relative; z-index: 3;
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  padding: 20px 18px 16px;
  margin-top: 24px;
}
@media (min-width: 900px) { .qbar { margin-top: -64px; padding: 22px 22px 18px; } }

.qrow { display: grid; gap: 12px; align-items: end; }
@media (min-width: 900px) { .qrow { grid-template-columns: 1.5fr 1fr 1fr auto; } }

.fld label { display: block; font-size: .8125rem; font-weight: 600; color: var(--muted); margin: 0 0 6px 2px; }
.inp, .inp2 {
  width: 100%;
  min-height: 52px;
  border-radius: var(--r-btn);
  border: 1px solid var(--line-strong);
  background: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  font: inherit; font-size: 1rem;
  color: var(--ink);
}
select.inp, select.inp2 { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.inp2 { min-height: 48px; font-size: .9375rem; }

.qnote { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 14px; font-size: .84375rem; color: var(--muted); }
.qnote span { display: flex; align-items: center; gap: 7px; }
.qnote svg { color: var(--tea); flex: none; }

/* ------------------------------------------------------------- USP strip -- */

.usp {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.u { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.u:last-child { border-bottom: 0; }
.ui { width: 44px; height: 44px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; flex: none; color: var(--tea); }
.u b { display: block; font-size: 1rem; }
.u span { font-size: .875rem; color: var(--muted); }

@media (min-width: 900px) {
  .usp { grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
  .u { padding: 26px 24px; border-bottom: 0; border-right: 1px solid var(--line); }
  .u:last-child { border-right: 0; }
  .u:first-child { padding-left: 0; }
}

/* --------------------------------------------------------- section head -- */

.sh { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.sh p { font-size: 1.0625rem; color: var(--muted); margin-top: 12px; max-width: 40rem; }
@media (min-width: 900px) { .sh { margin-bottom: 40px; } }

/* -------------------------------------------------------------- grids ---- */

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------- route cards --- */

.rc { background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.rci { height: 220px; border-radius: 0; }
.rcb { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.rc h3 { font-size: 1.5rem; margin-top: 8px; }
.via { display: flex; align-items: center; gap: 6px; font-size: .90625rem; color: var(--tea); font-weight: 600; margin-top: 8px; }
.via svg { flex: none; }
.rc-sum { font-size: .9375rem; color: var(--muted); margin-top: 10px; }
.basis { margin-top: 18px; padding: 14px 16px; background: var(--stone); border-radius: var(--r-btn); }
.bl { font-size: .78125rem; font-weight: 700; margin-bottom: 4px; }
.basis ul { padding-left: 18px; font-size: .875rem; color: var(--muted); list-style: disc; }
.basis b { color: var(--ink); }
.rcf { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; flex-wrap: wrap; }
.q { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: .90625rem; color: var(--ink); }
.q:hover { color: var(--tea); }

/* ------------------------------------------- custom / tailor-made band --- */

.custom {
  display: grid;
  gap: 28px;
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--r-card);
  background: var(--stone);
  box-shadow: inset 0 0 0 1px var(--line);
}
@media (min-width: 900px) {
  .custom { grid-template-columns: 1.15fr 1fr; gap: 48px; padding: 36px 40px; margin-top: 40px; }
}
.custom > * { min-width: 0; }
.custom .k { font-size: .78125rem; font-weight: 700; color: var(--brass); margin-bottom: 8px; }
.custom h3 { font-size: clamp(1.375rem, 1.1rem + 1.1vw, 1.75rem); line-height: 1.2; }
.custom-t p:last-child { font-size: 1rem; color: var(--muted); margin-top: 12px; }
.custom-l ul { list-style: none; display: grid; gap: 10px; }
.custom-l li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; }
.custom-l li svg { color: var(--tea); flex: none; margin-top: 3px; }
.custom-l .btn { margin-top: 20px; }
.custom-alt { font-size: .875rem; color: var(--muted); margin-top: 12px; }
.custom-alt a { color: var(--tea); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }

/* ----------------------------------------------------------- area cards -- */

.regrow { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .regrow { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .regrow { grid-template-columns: repeat(5, 1fr); } }
.regi { height: 200px; }
@media (min-width: 1100px) { .regi { height: 280px; } }
.regb { padding-top: 14px; }
.regb h3 { font-size: 1.25rem; }
.regb span { display: block; font-size: .875rem; color: var(--muted); margin-top: 2px; }
.regb .rl { margin-top: 8px; font-weight: 600; font-size: .90625rem; color: var(--tea); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--brass); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* ---------------------------------------------------------- hotel cards -- */

.hc { background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.hci { height: 200px; border-radius: 0; }
.hcb { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.hc h3 { font-size: 1.375rem; margin-top: 6px; }
.hc p { font-size: .90625rem; color: var(--muted); margin-top: 8px; }
.hcf { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; align-items: flex-start; font-size: .84375rem; color: var(--muted); }

/* ------------------------------------------------------ experience cards -- */

.tdi { height: 200px; }
.td h3 { font-size: 1.375rem; margin-top: 16px; }
.td dl { margin: 12px 0 14px; border-top: 1px solid var(--line); }
.td dl div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .875rem; }
.td dt { color: var(--muted); }
.td dd { margin: 0; font-weight: 600; text-align: right; }

/* --------------------------------------------------------- guide cards --- */

.gdi { height: 180px; margin-bottom: 14px; }
.gd h3 { font-size: 1.3125rem; line-height: 1.25; margin: 6px 0 10px; }

/* ------------------------------------------------------------ band ------- */

.band { position: relative; color: #fff; min-height: 380px; display: flex; flex-direction: column; justify-content: center; isolation: isolate; }
.band .ph { border-radius: 0; height: 100%; min-height: 100%; }
.band .ph img { position: absolute; inset: 0; }
.bc { position: relative; z-index: 2; padding-block: 64px; max-width: 36rem; }
.bc .k { font-size: .875rem; font-weight: 600; color: var(--brass-light); }
.bc h2 { margin-top: 12px; }
.bc p { font-size: 1.0625rem; color: rgba(255, 255, 255, .9); margin-top: 16px; }
.bc .btn { margin-top: 26px; }
@media (min-width: 900px) { .band { min-height: 480px; } .bc { padding-block: 110px; } }

/* --------------------------------------------------------- "perfect for" -- */

.pgrid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 980px) { .pgrid { grid-template-columns: 480px 1fr; gap: 72px; } }
.pgrid > .ph { min-height: 320px; }
@media (min-width: 980px) { .pgrid > .ph { height: 520px; } }
.pfs { display: grid; gap: 28px; margin-top: 32px; }
@media (min-width: 620px) { .pfs { grid-template-columns: 1fr 1fr; gap: 32px 40px; } }
.pf { display: flex; gap: 14px; }
.pf h3 { font-family: inherit; font-size: 1.1875rem; font-weight: 700; }
.pf p { font-size: .96875rem; color: var(--muted); margin-top: 4px; }
.tick { width: 28px; height: 28px; border-radius: 50%; background: var(--tea); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }

/* ---------------------------------------------------------- breadcrumbs -- */

.bc2 { padding: 18px 0 0; font-size: .875rem; color: var(--muted); }
.bc2 ol { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.bc2 li + li::before { content: "/"; margin-right: 10px; color: var(--line-strong); }
.bc2 a:hover { color: var(--tea); text-decoration: underline; }
.bc2 [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------- detail page shell -- */

.ttl { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; padding: 16px 0 24px; flex-wrap: wrap; }
.ttl h1 { margin-top: 8px; font-size: clamp(2rem, 1.3rem + 2.8vw, 3.5rem); }
.meta { display: flex; align-items: center; gap: 14px; font-size: .9375rem; color: var(--muted); flex-wrap: wrap; }
.meta .loc { display: flex; align-items: center; gap: 6px; }
.tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.acts { display: flex; gap: 10px; flex-wrap: wrap; }

.gal { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; border-radius: var(--r-card); overflow: hidden; }
.gal .ph { border-radius: 0; min-height: 150px; }
.gal .ph:first-child { grid-column: 1 / -1; min-height: 240px; }
@media (min-width: 900px) {
  .gal { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; }
  .gal .ph:first-child { grid-column: 1; grid-row: 1 / 3; min-height: 0; }
}

.body { display: grid; gap: 40px; padding: 40px 0 72px; align-items: start; }
/* Grid and flex children default to min-width:auto, which lets wide content
   (tables, long words) push the page sideways. Opt every track out. */
.body > *, .grid > *, .getg > *, .pgrid > *, .rgrid2 > *, .three > * { min-width: 0; }
@media (min-width: 1024px) { .body { grid-template-columns: 1fr 380px; gap: 56px; padding: 48px 0 100px; } }

.blk { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.blk:last-child { border: 0; margin-bottom: 0; padding-bottom: 0; }

.prose p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 14px; max-width: 44rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { padding-left: 22px; list-style: disc; font-size: 1.0625rem; line-height: 1.7; max-width: 44rem; }
.prose li { margin-bottom: 8px; }

/* planner quote */
.planner { display: flex; gap: 18px; align-items: flex-start; margin: 22px 0 0; padding: 20px; background: var(--stone); border-radius: var(--r-card); }
.pav { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(160deg, #C9BFA9, #8E8068); flex: none; }
.planner blockquote { margin: 0; font-family: Lora, Georgia, serif; font-size: 1.1875rem; line-height: 1.5; }
.planner blockquote::before { content: "\201C"; }
.planner blockquote::after { content: "\201D"; }
.planner figcaption { font-size: .875rem; color: var(--muted); margin-top: 8px; }

/* Official-partner note. Stated plainly, not shouted: a quiet line with a
   brass rule, not a callout box. */
.pnote {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 14px 0 14px 16px;
  border-left: 3px solid var(--brass);
  font-size: .9375rem;
  color: var(--muted);
  max-width: 44rem;
}
.pnote svg { color: var(--tea); flex: none; margin-top: 3px; }
.pnote b { color: var(--ink); font-weight: 600; }

/* the small line under the price in the sticky booking card */
.bkh .t { font-size: .78125rem; color: rgba(255, 255, 255, .72); margin-top: 4px; }

/* highlights */
.hl { display: grid; gap: 16px; }
@media (min-width: 620px) { .hl { grid-template-columns: 1fr 1fr; gap: 18px 32px; } }
.hl div { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.hl .tick { width: 24px; height: 24px; }

/* drive times */
.drv { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
@media (min-width: 900px) { .drv { grid-template-columns: repeat(4, 1fr); } }
.drv div { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.drv b { display: block; font-family: Lora, Georgia, serif; font-weight: 500; font-size: 1.625rem; color: var(--tea); }
.drv span { font-size: .875rem; color: var(--muted); }

/* good / not / worth */
.fit { display: grid; gap: 14px; }
@media (min-width: 820px) { .fit { grid-template-columns: repeat(3, 1fr); } }
.fit > div { padding: 18px; border-radius: var(--r-card); box-shadow: inset 0 0 0 1px var(--line); }
.fit .k { font-size: .8125rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.fit .g .k { color: var(--tea); }
.fit .n .k { color: var(--negative); }
.fit .w .k { color: var(--amber); }
.fit p { font-size: .9375rem; color: var(--muted); }

/* rooms + facts */
.rms { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .rms { grid-template-columns: repeat(3, 1fr); } }
.rmi { height: 150px; margin-bottom: 12px; }
.rm h3 { font-size: 1.25rem; }
.rm p { font-size: .875rem; color: var(--muted); margin: 4px 0 10px; }

.facts { display: grid; grid-template-columns: 1fr; gap: 0 32px; }
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }
.fr { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.fr span { color: var(--muted); }
.fr b { font-weight: 600; text-align: right; }

/* pair-with cards */
.pcs { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pcs { grid-template-columns: repeat(3, 1fr); } }
.pc { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.pci { height: 140px; border-radius: 0; }
.pcb { padding: 16px 18px 18px; }
.pc h3 { font-size: 1.1875rem; }
.pc dl { margin: 10px 0 12px; border-top: 1px solid var(--line); }
.pc dl div { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .84375rem; }
.pc dt { color: var(--muted); }
.pc dd { margin: 0; font-weight: 600; text-align: right; }

/* route rows */
.rts { display: grid; gap: 12px; }
.rt { display: flex; gap: 18px; align-items: center; padding: 18px; border-radius: var(--r-card); box-shadow: inset 0 0 0 1px var(--line); flex-wrap: wrap; }
.rt .d { font-family: Lora, Georgia, serif; font-size: 2.25rem; color: var(--tea); line-height: 1; text-align: center; min-width: 56px; }
.rt .d small { display: block; font-family: inherit; font-size: .78125rem; color: var(--muted); margin-top: 4px; }
.rt h3 { font-size: 1.3125rem; }
.rt p { font-size: .875rem; color: var(--muted); }
.rt .more { margin-left: auto; white-space: nowrap; }

/* ------------------------------------------------------- booking sidebar -- */

.side { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1024px) { .side { position: sticky; top: 24px; } }

.bk { border-radius: var(--r-card); box-shadow: var(--shadow-card), var(--shadow-lift); overflow: hidden; background: #fff; }
.bkh { background: var(--tea); color: #fff; padding: 18px 22px; }
.bkh .s { font-size: .84375rem; color: rgba(255, 255, 255, .8); }
.bkh .p { font-family: Lora, Georgia, serif; font-size: 1.625rem; margin-top: 2px; }
.bkb { padding: 20px 22px 22px; }
.bl2 { font-size: .78125rem; font-weight: 700; margin-bottom: 6px; }
.basis2 { margin: 0 0 16px; padding-left: 18px; font-size: .875rem; color: var(--muted); list-style: disc; }
.basis2 b { color: var(--ink); }
.fld2 label { display: block; font-size: .8125rem; font-weight: 600; color: var(--muted); margin: 12px 0 6px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bkb .btn { width: 100%; margin-top: 18px; }
.bkn { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .84375rem; color: var(--muted); }
.bkn span { display: flex; gap: 8px; align-items: center; }
.bkn svg { color: var(--tea); flex: none; }

.help { padding: 16px 18px; border-radius: var(--r-card); background: var(--stone); display: flex; gap: 14px; align-items: center; font-size: .90625rem; }
.help b { display: block; }
.help .pav { width: 46px; height: 46px; }

/* ------------------------------------------------------------ area page -- */

.afacts { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.afacts span { min-height: 36px; display: inline-flex; align-items: center; gap: 8px; padding: 4px 14px; border-radius: 999px; background: rgba(255, 255, 255, .18); font-size: .875rem; font-weight: 600; }

.three { display: grid; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-float); overflow: hidden; margin-top: 24px; }
@media (min-width: 1024px) { .three { grid-template-columns: 250px 1fr 1fr 1fr; margin-top: -46px; position: relative; z-index: 3; } }
.three .lead { background: var(--tea); color: #fff; padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; }
.three .lead b { font-family: Lora, Georgia, serif; font-weight: 400; font-size: 1.4375rem; line-height: 1.2; }
.three .lead span { font-size: .84375rem; color: rgba(255, 255, 255, .8); margin-top: 6px; }
.p3 { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; }
.p3:last-child { border-bottom: 0; }
@media (min-width: 1024px) { .p3 { border-bottom: 0; border-right: 1px solid var(--line); } .p3:last-child { border-right: 0; } }
.p3 .k { font-size: .78125rem; font-weight: 700; color: var(--muted); }
.p3 b { display: block; font-size: 1.0625rem; margin-top: 2px; }
.p3 .s { font-size: .84375rem; color: var(--muted); }
.p3 .more { font-size: .875rem; display: inline-block; margin-top: 6px; }

.tablewrap { overflow-x: auto; }
.subs { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 480px; }
.subs th { text-align: left; font-size: .8125rem; color: var(--muted); font-weight: 600; padding: 0 14px 10px 0; border-bottom: 1px solid var(--line); }
.subs td { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.subs td:first-child { font-family: Lora, Georgia, serif; font-size: 1.1875rem; width: 180px; }

.getg { display: grid; gap: 32px; align-items: start; }
@media (min-width: 980px) { .getg { grid-template-columns: 1fr 1fr; gap: 40px; } }
.froml { border-top: 1px solid var(--line); }
.from { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.from b { font-family: Lora, Georgia, serif; font-weight: 500; font-size: 1.3125rem; color: var(--tea); white-space: nowrap; }
.inc { font-size: .78125rem; font-weight: 700; color: var(--tea); background: var(--soft); padding: 3px 10px; border-radius: 999px; margin-left: 10px; }
.drvnote { display: flex; gap: 14px; margin-top: 20px; padding: 18px; border-radius: var(--r-card); background: var(--stone); font-size: .9375rem; }
.drvnote svg { color: var(--tea); flex: none; }
.mapbig { min-height: 280px; }
@media (min-width: 980px) { .mapbig { height: 400px; } }
.mapph { height: 220px; margin-top: 16px; }
.pins { display: flex; gap: 18px; margin-top: 12px; font-size: .84375rem; color: var(--muted); flex-wrap: wrap; }
.pins span { display: flex; align-items: center; gap: 6px; }
.pins i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.rgrid2 { display: grid; gap: 20px; }
@media (min-width: 900px) { .rgrid2 { grid-template-columns: 1fr 1fr; } }
.rw { display: grid; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); background: #fff; }
@media (min-width: 620px) { .rw { grid-template-columns: 240px 1fr; } }
.rw .ph { border-radius: 0; min-height: 200px; }
.rwb { padding: 20px 22px; }
.rwb h3 { font-size: 1.5rem; margin-top: 6px; }
.stp { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .875rem; font-weight: 600; flex-wrap: wrap; }
.stp .here { background: var(--tea); color: #fff; padding: 3px 10px; border-radius: 999px; }
.stp .dash { width: 18px; border-top: 2px dotted var(--brass); }

.near { background: var(--stone); padding-block: var(--sec-y); }

/* ----------------------------------------------------------- route page -- */

.costcard { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-float); padding: 22px; max-width: 30rem; }
.costcard h2 { font-size: 1.3125rem; }
.costrow { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.costrow:last-of-type { border-bottom: 0; }
.costrow .v { font-weight: 700; white-space: nowrap; }
.costrow .v.free { background: var(--brass); color: #16201D; padding: 3px 12px; border-radius: 999px; }
.costcard .btn { width: 100%; margin-top: 16px; }
.costnote { font-size: .8125rem; color: var(--muted); text-align: center; margin-top: 10px; }

.daylist { display: grid; gap: 20px; }
@media (min-width: 820px) { .daylist { grid-template-columns: 1fr 1fr; gap: 24px 40px; } }
.day { display: flex; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.day .dn { font-family: Lora, Georgia, serif; font-size: 2rem; color: var(--tea); line-height: 1; min-width: 44px; }
.day .dn small { display: block; font-family: inherit; font-size: .75rem; color: var(--muted); }
.day h3 { font-size: 1.1875rem; font-family: inherit; font-weight: 700; }
.day p { font-size: .9375rem; color: var(--muted); margin-top: 4px; }
.daychips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.dchip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: .8125rem; font-weight: 600; background: var(--soft); color: var(--tea); }
.dchip.drive { background: var(--amber-bg); color: var(--amber); }
.dchip.add { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); font-weight: 400; }

.inclgrid { display: grid; gap: 20px; }
@media (min-width: 820px) { .inclgrid { grid-template-columns: 1fr 1fr; } }
.incl { padding: 22px; border-radius: var(--r-card); box-shadow: inset 0 0 0 1px var(--line); background: #fff; }
.incl h3 { font-size: 1.25rem; margin-bottom: 12px; }
.incl ul { list-style: none; display: grid; gap: 10px; }
.incl li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; }
.incl .yes svg { color: var(--tea); flex: none; }
.incl .no svg { color: var(--negative); flex: none; }

.faqs { display: grid; gap: 24px; }
@media (min-width: 820px) { .faqs { grid-template-columns: 1fr 1fr; gap: 28px 40px; } }
.faq h3 { font-family: inherit; font-size: 1.0625rem; font-weight: 700; }
.faq p { font-size: .9375rem; color: var(--muted); margin-top: 6px; }

.stoplist { display: grid; gap: 16px; }
@media (min-width: 720px) { .stoplist { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }

/* ------------------------------------------------------- contact section -- */

.contact { background: var(--tea); color: #fff; padding-block: var(--sec-y); }
.contact h2 { color: #fff; }
.contact .lead { font-size: 1.125rem; color: rgba(255, 255, 255, .85); margin-top: 12px; }
.cgrid { display: grid; gap: 20px; margin-top: 36px; }
@media (min-width: 820px) { .cgrid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; } }
.cc { background: var(--tea-dark); border-radius: var(--r-card); padding: 26px; display: flex; flex-direction: column; }
.cci { width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .12); display: flex; align-items: center; justify-content: center; color: var(--brass-light); }
.cc h3 { font-size: 1.5rem; margin-top: 18px; }
.cc p { font-size: .96875rem; color: rgba(255, 255, 255, .85); margin-top: 8px; flex: 1; }
.cc .btn { margin-top: 22px; align-self: flex-start; max-width: 100%; }
.cc .n { font-size: .84375rem; color: rgba(255, 255, 255, .7); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.team { display: flex; align-items: center; gap: 18px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .18); font-size: .9375rem; color: rgba(255, 255, 255, .88); flex-wrap: wrap; }
.faces { display: flex; }
.face { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(160deg, #C9BFA9, #8E8068); border: 3px solid var(--tea); margin-left: -10px; }
.face:first-child { margin-left: 0; }

/* ------------------------------------------------------------------ footer */

footer { background: var(--ink); color: rgba(255, 255, 255, .78); padding: 56px 0 32px; font-size: .90625rem; }
.fg { display: grid; gap: 32px; }
@media (min-width: 720px) { .fg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fg { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; } }
.fh { margin: 0 0 14px; font-size: .8125rem; font-weight: 600; color: rgba(255, 255, 255, .55); font-family: inherit; text-transform: none; }
.fg ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fg a:hover { color: #fff; text-decoration: underline; }
.fg .about p { margin-top: 16px; max-width: 22rem; }
.badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.badge { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: var(--r-btn); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); font-size: .78125rem; color: rgba(255, 255, 255, .85); }
.fbase { display: flex; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .8125rem; color: rgba(255, 255, 255, .55); flex-wrap: wrap; }
.flinks { display: flex; gap: 24px; }

/* -------------------------------------------------- sticky mobile bar ---- */

.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(15, 25, 21, .10);
}
.sb-l b { display: block; font-size: .9375rem; }
.sb-l span { display: block; font-size: .8125rem; color: var(--muted); }
.stickybar .btn { min-height: 44px; padding-inline: 18px; }

@media (min-width: 1024px) { .stickybar { display: none; } }
@media (max-width: 1023px) { body:has(.stickybar) { padding-bottom: 76px; } }
