/* ==========================================================================
   Lakeside Harmonies — design system
   Zero external requests: no webfonts, no icon libraries, no frameworks.
   ========================================================================== */

:root {
  /* Palette — deep lake teal, alpine stone, warm brass */
  --deep:        #0c2a33;
  --deep-2:      #113c48;
  --deep-3:      #1a5464;
  --brass:       #b3873f;
  --brass-soft:  #d8b47a;
  --paper:       #fffdfa;
  --sand:        #f6f1e8;
  --sand-2:      #ece4d6;
  --ink:         #16262b;
  --muted:       #5b6f77;
  --line:        #e0d8c9;
  --white:       #ffffff;

  --bg:          var(--paper);
  --bg-alt:      var(--sand);
  --surface:     var(--white);
  --text:        var(--ink);
  --text-muted:  var(--muted);
  --border:      var(--line);
  --heading:     var(--deep);
  --accent:      var(--brass);
  --accent-text: #7d5c22;

  --shadow-sm: 0 1px 2px rgba(12, 42, 51, .06), 0 2px 8px rgba(12, 42, 51, .05);
  --shadow-md: 0 4px 12px rgba(12, 42, 51, .07), 0 12px 32px rgba(12, 42, 51, .08);
  --shadow-lg: 0 12px 28px rgba(12, 42, 51, .10), 0 32px 64px rgba(12, 42, 51, .12);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --radius-lg: 10px;
  --nav-h: 74px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0b1c21;
    --bg-alt:      #0f2429;
    --surface:     #12292f;
    --text:        #e7eef0;
    --text-muted:  #a3b7bd;
    --border:      #23434b;
    --heading:     #f2f6f6;
    --accent:      #d8b47a;
    --accent-text: #e2c391;
    --sand:        #0f2429;
    --sand-2:      #14313a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.25);
    --shadow-md: 0 4px 12px rgba(0,0,0,.35), 0 12px 32px rgba(0,0,0,.3);
    --shadow-lg: 0 12px 28px rgba(0,0,0,.4), 0 32px 64px rgba(0,0,0,.45);
  }
}

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
h4 { font-size: 1.06rem; font-family: var(--sans); font-weight: 650; letter-spacing: 0; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--heading); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--radius); font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }

section { position: relative; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--deep); color: #dfe9ec; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep a { color: var(--brass-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .755rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 1rem;
  display: block;
}
.section--deep .eyebrow { color: var(--brass-soft); }

.lede { font-size: clamp(1.09rem, 1.7vw, 1.28rem); line-height: 1.62; color: var(--text-muted); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.rule { width: 56px; height: 2px; background: var(--accent); border: 0; margin: 0 0 1.6rem; }
.section-head--center .rule { margin-inline: auto; }

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

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .945rem; font-weight: 620;
  letter-spacing: .01em; line-height: 1;
  padding: 1rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--deep-2); color: #fff; box-shadow: var(--shadow-md); }

.btn--airbnb { background: var(--brass); color: #221604; box-shadow: var(--shadow-sm); }
.btn--airbnb:hover { background: var(--brass-soft); color: #221604; box-shadow: var(--shadow-md); }

.btn--ghost { border-color: var(--border); color: var(--heading); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--heading); background: color-mix(in srgb, var(--accent) 8%, transparent); }

.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(8px); }
.btn--light:hover { background: #fff; color: var(--deep); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- nav ---- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-header--solid,
body:not(.has-hero) .site-header,
.site-header:has(#site-nav[data-open="true"]) {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
}

/* When the mobile menu is open the bar is opaque, so revert the over-hero
   white text even if the page has not been scrolled yet. */
body.has-hero .site-header:has(#site-nav[data-open="true"]) .brand__name { color: var(--heading); }
body.has-hero .site-header:has(#site-nav[data-open="true"]) .brand__sub { color: var(--accent-text); }
body.has-hero .site-header:has(#site-nav[data-open="true"]) .nav-toggle span { background: var(--heading); }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; }
/* The logo is 1205x552 — constrain the height and let the width follow,
   otherwise a fixed square squashes it. */
.brand__mark { height: 34px; width: auto; flex-shrink: 0; }
.brand__name {
  font-family: var(--serif); font-size: 1.16rem; line-height: 1.1;
  color: var(--heading); letter-spacing: -.01em; white-space: nowrap;
}
.brand__sub {
  display: block; font-family: var(--sans); font-size: .58rem;
  letter-spacing: .21em; text-transform: uppercase; color: var(--accent-text); margin-top: 3px;
}
body.has-hero .site-header:not(.site-header--solid) .brand__name { color: #fff; }
body.has-hero .site-header:not(.site-header--solid) .brand__sub { color: rgba(255,255,255,.82); }
body.has-hero .site-header:not(.site-header--solid) .nav__link { color: rgba(255,255,255,.94); }
body.has-hero .site-header:not(.site-header--solid) .nav-toggle span { background: #fff; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.35rem, 1.4vw, 1.35rem); list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  font-size: .905rem; font-weight: 520; color: var(--heading);
  text-decoration: none; padding: .45rem .15rem; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: .4rem; padding: .68rem 1.15rem; font-size: .875rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 1.75px; width: 100%; background: var(--heading);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 1.75rem;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: .95rem 0; border-bottom: 1px solid var(--border); color: var(--heading) !important; font-size: 1.02rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.25rem 0 0; justify-content: center; }
  body.has-hero .site-header:not(.site-header--solid) .nav { background: var(--bg); }
}

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

.hero {
  position: relative; min-height: min(92svh, 860px);
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden;
  background: var(--deep);
}
.hero--compact { min-height: min(66svh, 620px); }

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,22,27,.88) 0%, rgba(6,22,27,.5) 38%, rgba(6,22,27,.18) 68%, rgba(6,22,27,.42) 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.75rem, 6vw, 5rem); }
.hero__content { max-width: 44rem; color: #fff; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.4); margin-bottom: .5em; }
.hero__eyebrow {
  font-size: .755rem; font-weight: 700; letter-spacing: .21em; text-transform: uppercase;
  color: var(--brass-soft); margin: 0 0 1.15rem; display: flex; align-items: center; gap: .7rem;
}
.hero__eyebrow::before { content: ""; width: 32px; height: 1.5px; background: var(--brass-soft); display: block; }
.hero__lede {
  font-size: clamp(1.05rem, 1.75vw, 1.28rem); line-height: 1.6;
  color: rgba(255,255,255,.93); max-width: 36rem; margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 2.25rem;
  font-size: .85rem; color: rgba(255,255,255,.86); list-style: none; padding: 0;
}
.hero__meta li { display: flex; align-items: center; gap: .45rem; margin: 0; }
.hero__meta li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--brass-soft); }

.stars { color: var(--brass-soft); letter-spacing: .08em; }

/* ----------------------------------------------------------- key facts --- */

.factbar { background: var(--deep-2); color: #dbe7ea; }
.factbar__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: rgba(255,255,255,.13);
}
.factbar__cell { background: var(--deep-2); padding: 1.6rem 1.25rem; text-align: center; }
.factbar__val { font-family: var(--serif); font-size: 1.55rem; color: #fff; line-height: 1.1; display: block; }
.factbar__key { font-size: .705rem; letter-spacing: .17em; text-transform: uppercase; color: var(--brass-soft); margin-top: .5rem; display: block; }

/* --------------------------------------------------------------- grid ---- */

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }

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

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__badge {
  position: absolute; bottom: -18px; right: -12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); text-align: center; max-width: 190px;
}
.split__badge strong { display: block; font-family: var(--serif); font-size: 1.45rem; color: var(--heading); line-height: 1; }
.split__badge span { font-size: .705rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 620px) { .split__badge { position: static; margin-top: 1rem; max-width: none; } }

/* -------------------------------------------------------- home cards ---- */

.home-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.home-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.home-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-2); }
.home-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.home-card:hover .home-card__media img { transform: scale(1.045); }
.home-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,.94); color: var(--deep);
  font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .42rem .8rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.home-card__body { padding: 1.6rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.home-card__body h3 { margin-bottom: .5rem; }
.home-card__body h3 a { color: inherit; text-decoration: none; }
.home-card__body h3 a:hover { color: var(--accent-text); }
.home-card__loc { font-size: .83rem; color: var(--text-muted); margin: 0 0 .9rem; display: flex; align-items: center; gap: .4rem; }
.home-card__specs {
  display: flex; flex-wrap: wrap; gap: .4rem .95rem; list-style: none; padding: 0;
  margin: 0 0 1.1rem; font-size: .86rem; color: var(--text-muted);
}
.home-card__specs li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.home-card__specs li + li::before { content: "·"; margin-right: .5rem; color: var(--border); }
.home-card__desc { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.35rem; }
.home-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .9rem; padding-top: 1.15rem; border-top: 1px solid var(--border); }
.home-card__price { font-family: var(--serif); font-size: 1.3rem; color: var(--heading); line-height: 1.1; }
.home-card__price small { display: block; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-top: .25rem; }
.home-card__rating { font-size: .84rem; color: var(--text-muted); }

/* ------------------------------------------------------------- feature --- */

.feature { padding: 0; }
.feature__icon {
  width: 44px; height: 44px; margin-bottom: 1.05rem;
  color: var(--accent); display: block;
}
.feature h3 { font-size: 1.13rem; margin-bottom: .5rem; }
.feature p { font-size: .945rem; color: var(--text-muted); margin: 0; }

.tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); height: 100%;
}
.section--deep .tile { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14); box-shadow: none; }
.section--deep .tile p { color: #c4d5d9; }
.section--deep .feature__icon { color: var(--brass-soft); }

/* ------------------------------------------------------------- gallery --- */

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: .6rem; }
.gallery--mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 165px; }
.gallery--mosaic .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery--mosaic .gallery__item:nth-child(6) { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery--mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 145px; }
  .gallery--mosaic .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery--mosaic .gallery__item:nth-child(6) { grid-column: span 2; }
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--sand-2); border: 0; padding: 0; cursor: zoom-in; display: block;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .3s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.04); }
.gallery:not(.gallery--mosaic) .gallery__item { aspect-ratio: 4 / 3; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(6,18,22,.96); display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img { max-width: 100%; max-height: 82svh; object-fit: contain; border-radius: var(--radius); }
.lightbox__cap { color: rgba(255,255,255,.8); font-size: .875rem; text-align: center; margin-top: 1rem; max-width: 44rem; }
.lightbox__figure { display: flex; flex-direction: column; align-items: center; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 1.35rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background-color .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: .1em; }

/* --------------------------------------------------------- amenities ----- */

.amenity-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.amenity-group h3 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .9rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.amenity-group ul { list-style: none; padding: 0; margin: 0; }
.amenity-group li { font-size: .93rem; color: var(--text); padding: .3rem 0 .3rem 1.35rem; position: relative; margin: 0; }
.amenity-group li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 9px; height: 5px; border-left: 1.75px solid var(--accent); border-bottom: 1.75px solid var(--accent);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------- spec strip ---- */

.specs {
  display: flex; flex-wrap: wrap; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.specs > div { background: var(--surface); flex: 1 1 130px; padding: 1.25rem 1rem; text-align: center; }
.specs dt { font-size: .69rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .35rem; }
.specs dd { margin: 0; font-family: var(--serif); font-size: 1.32rem; color: var(--heading); line-height: 1.1; }

/* ------------------------------------------------------------- tables ---- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 480px; }
caption { text-align: left; font-size: .875rem; color: var(--text-muted); padding: 0 0 .75rem; }
th, td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); }
thead th { background: var(--bg-alt); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { font-weight: 600; color: var(--heading); }

/* ------------------------------------------------------------- trails ---- */

.trail {
  display: grid; gap: 1.25rem; align-items: start;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .trail { grid-template-columns: 3rem 1fr auto; align-items: center; } }
.trail__num { font-family: var(--serif); font-size: 2rem; color: var(--accent); line-height: 1; }
.trail__body h3 { margin-bottom: .4rem; }
.trail__body p { font-size: .94rem; color: var(--text-muted); margin: 0; }
.trail__stats { display: flex; flex-wrap: wrap; gap: .35rem .9rem; list-style: none; padding: 0; margin: .75rem 0 0; font-size: .83rem; color: var(--text-muted); }
.trail__stats li { margin: 0; }
.trail__stats strong { color: var(--heading); font-weight: 620; }
.badge {
  display: inline-block; font-size: .69rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .42rem .8rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-muted); white-space: nowrap;
}
.badge--easy { border-color: #7fa88a; color: #4a7a58; }
.badge--mid { border-color: #c0a05e; color: var(--accent-text); }
.badge--hard { border-color: #b87d6c; color: #97503a; }
@media (prefers-color-scheme: dark) {
  .badge--easy { color: #9dd0ac; }
  .badge--hard { color: #e0a794; }
}

/* ------------------------------------------------------------ reviews ---- */

.review {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column;
}
.review__stars { color: var(--accent); letter-spacing: .12em; margin-bottom: .85rem; font-size: .95rem; }
.review blockquote { margin: 0 0 1.2rem; font-family: var(--serif); font-size: 1.13rem; line-height: 1.55; color: var(--heading); }
.review__title { font-weight: 650; font-size: .95rem; margin: 0 0 .5rem; color: var(--heading); }
.review figcaption { margin-top: auto; font-size: .845rem; color: var(--text-muted); }
.review figcaption strong { color: var(--heading); }

/* ---------------------------------------------------------------- faq ---- */

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 3rem 1.35rem 0;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--heading); position: relative; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details > div { padding: 0 1rem 1.6rem 0; color: var(--text-muted); font-size: .99rem; max-width: 62rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- cta ----- */

.cta-band { position: relative; overflow: hidden; background: var(--deep); }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,28,34,.93), rgba(8,28,34,.62)); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 7vw, 5.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 40rem; margin-inline: auto; }

/* ------------------------------------------------------- booking panel --- */

.booking {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow-md);
}
.booking__price { font-family: var(--serif); font-size: 2rem; color: var(--heading); line-height: 1; margin: 0 0 .35rem; }
.booking__price span { font-family: var(--sans); font-size: .875rem; color: var(--text-muted); letter-spacing: .02em; }
.booking__note { font-size: .84rem; color: var(--text-muted); margin: 0 0 1.35rem; }
.booking .btn { width: 100%; justify-content: center; }
.booking .btn + .btn { margin-top: .65rem; }
.booking__list { list-style: none; padding: 1.35rem 0 0; margin: 1.35rem 0 0; border-top: 1px solid var(--border); font-size: .88rem; }
.booking__list li { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; margin: 0; color: var(--text-muted); }
.booking__list li strong { color: var(--heading); font-weight: 600; text-align: right; }

.sticky-col { position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 899px) { .sticky-col { position: static; } }

.property-layout { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .property-layout { grid-template-columns: minmax(0, 1fr) 340px; } }

/* ---------------------------------------------------------- breadcrumb --- */

.breadcrumb { font-size: .82rem; color: var(--text-muted); padding-top: calc(var(--nav-h) + 1.5rem); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.breadcrumb li + li::before { content: "/"; color: var(--border); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-text); text-decoration: underline; }
body.has-hero .breadcrumb { padding-top: 1.5rem; }

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

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin: 0; }
.contact-list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.contact-list span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .15rem; }
.contact-list a, .contact-list p { font-size: 1.02rem; color: var(--heading); text-decoration: none; margin: 0; }
.contact-list a:hover { color: var(--accent-text); text-decoration: underline; }

.map-frame { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sand-2); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

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

.site-footer { background: var(--deep); color: #b9cbd0; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .93rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .17em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #b9cbd0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #99b0b6; font-size: .9rem; margin-top: 1rem; max-width: 30ch; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #8ea6ad;
}

/* ------------------------------------------------------------- reveal ---- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------------------ helpers ---- */

.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.8em; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.small { font-size: .875rem; }
.muted { color: var(--text-muted); }
.answer {
  background: var(--bg-alt); border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.03rem;
}
.answer p:last-child { margin-bottom: 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.pill-list li { margin: 0; }
.pill-list li span,
.pill-list li a {
  display: inline-block; font-size: .845rem; padding: .5rem .95rem;
  border: 1px solid var(--border); border-radius: 999px; color: var(--text);
  background: var(--surface); text-decoration: none;
}
.pill-list li a:hover { border-color: var(--accent); color: var(--accent-text); }
