/* ============================================================
   Fisher 3 Vacation Rentals — Design System
   Editorial luxury for the West Michigan lakeshore.
   Fonts: Fraunces (display) + Inter (body), self-hosted.
   Every page loads this single stylesheet.
   ============================================================ */

/* ---------- Fonts (latin subsets, variable weight ranges) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/Fraunces-4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/Fraunces-3.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/Inter-3.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --pine: #15342b;
  --pine-deep: #0d221c;
  --ivory: #faf7f2;
  --sand: #ece4d6;
  --gold: #c19a5b;
  --clay: #a8703f;
  --lake: #4b7f9e;
  --ink: #22221f;
  --ink-soft: #5c5a52;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 8px;
  --shadow-soft: 0 10px 40px rgb(21 52 43 / .08);
  --shadow-lift: 0 18px 50px rgb(21 52 43 / .16);
  --container: 1200px;
  --header-h: 76px;
  --ease-out: cubic-bezier(.22, .8, .32, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--gold); color: var(--pine-deep); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--pine);
  letter-spacing: -.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p { max-width: 68ch; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.6; }
.text-center { text-align: center; }
.text-center p, .text-center .lead { margin-inline: auto; }

.overline {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.price-display { font-family: var(--font-display); font-weight: 600; color: var(--pine); }

/* Thin gold rule separator */
.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  max-width: var(--container);
}
.rule-left { background: linear-gradient(90deg, var(--gold), transparent); max-width: 120px; margin: 1.2rem 0 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container-narrow { max-width: 820px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.4rem, 8vw, 6.2rem); }
.section-alt { background: var(--sand); }
.section-pine { background: var(--pine); color: var(--ivory); }
.section-pine h2, .section-pine h3 { color: var(--ivory); }
.section-pine p { color: rgb(250 247 242 / .82); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.text-center { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.7rem;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--ivory);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid var(--pine);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.btn:hover { background: var(--pine-deep); border-color: var(--pine-deep); color: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--pine-deep); }
.btn-gold:hover { background: var(--clay); border-color: var(--clay); color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--pine); border: 1px solid var(--pine); }
.btn-ghost:hover { background: var(--pine); color: var(--ivory); }
.btn-light { background: var(--ivory); border-color: var(--ivory); color: var(--pine); }
.btn-light:hover { background: var(--sand); border-color: var(--sand); color: var(--pine-deep); }
.btn-ghost-light { background: transparent; border: 1px solid rgb(250 247 242 / .65); color: var(--ivory); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--pine); border-color: var(--ivory); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .85rem;
  border-radius: 100px;
  background: var(--ivory);
  color: var(--pine);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgb(13 34 28 / .18);
}
.chip-gold { background: var(--gold); color: var(--pine-deep); }
.chip-pine { background: var(--pine); color: var(--ivory); }
.chip-rating { background: var(--ivory); color: var(--clay); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(250 247 242 / .92);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.scrolled {
  background: rgb(250 247 242 / .85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgb(193 154 91 / .35);
  box-shadow: 0 6px 30px rgb(21 52 43 / .07);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--pine);
}
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .01em;
  display: flex;
  flex-direction: column;
}
.brand-name small {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.7rem); }
.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.6rem); }
.nav-links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a[aria-current="page"], .nav-links a.active { color: var(--pine); border-bottom-color: var(--gold); font-weight: 600; }
.nav-cta { white-space: nowrap; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid rgb(193 154 91 / .35);
    box-shadow: 0 24px 40px rgb(21 52 43 / .14);
    padding: .6rem 1.4rem 1.4rem;
    display: none;
  }
  .site-nav.open { display: flex; animation: navDrop .3s var(--ease-out); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    padding: .85rem .2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgb(21 52 43 / .08);
  }
  .nav-links a[aria-current="page"], .nav-links a.active { border-bottom-color: var(--gold); }
  .nav-cta { margin-top: 1rem; }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--ivory);
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(13 34 28 / .28) 0%, rgb(13 34 28 / .12) 40%, rgb(13 34 28 / .78) 100%);
}
.hero-content { padding-block: clamp(3.5rem, 9vw, 6.5rem); max-width: 780px; }
.hero-content .overline { color: var(--gold); }
.hero-content h1 { color: var(--ivory); margin-bottom: 1.1rem; }
.hero-content p { color: rgb(250 247 242 / .9); font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Compact page hero (interior pages) */
.page-hero { background: var(--pine); color: var(--ivory); padding-block: clamp(3rem, 7vw, 5rem); }
.page-hero h1 { color: var(--ivory); }
.page-hero p { color: rgb(250 247 242 / .85); }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--pine); color: var(--ivory); }
.stats-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15;
}
.stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgb(250 247 242 / .75); }
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards (property) ---------- */
.prop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.prop-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.prop-card:hover .prop-card-media img { transform: scale(1.05); }
.prop-card-media .chip { position: absolute; top: .9rem; left: .9rem; }
.prop-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.4rem 1.5rem; gap: .55rem; }
.prop-card-body h3 { font-size: 1.3rem; }
.prop-card-body h3 a { text-decoration: none; color: inherit; }
.prop-card-body h3 a::after { content: ""; position: absolute; inset: 0; }
.prop-card { position: relative; }
.prop-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  font-size: .87rem;
  color: var(--ink-soft);
}
.prop-card-specs span { display: inline-flex; align-items: center; gap: .35rem; }
.prop-card-specs svg { width: 15px; height: 15px; flex: none; stroke: var(--gold); }
.prop-card-foot {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid rgb(193 154 91 / .3);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
}
.prop-card-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--pine); }
.prop-card-price small { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--ink-soft); }
.prop-card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--clay);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prop-card-link::after { content: " →"; }

/* Feature card (The Fisher 3 difference) */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--pine);
  margin-bottom: 1.1rem;
}
.feature-card .feature-icon svg { width: 26px; height: 26px; stroke: var(--pine); }
.feature-card h3 { margin-bottom: .55rem; }
.feature-card p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Town cards ---------- */
.town-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  isolation: isolate;
}
.town-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.town-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease-out); }
.town-card:hover img { transform: scale(1.06); }
.town-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(13 34 28 / 0) 35%, rgb(13 34 28 / .82) 100%);
}
.town-card-body { position: absolute; inset: auto 0 0; padding: 1.3rem 1.3rem 1.4rem; }
.town-card-body h3 { color: var(--ivory); font-size: 1.25rem; margin-bottom: .2rem; }
.town-card-body p { color: rgb(250 247 242 / .82); font-size: .85rem; line-height: 1.45; }
.town-card-body .town-count {
  display: inline-block;
  margin-top: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Quote / review cards ---------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.section-pine .quote-card { background: rgb(250 247 242 / .06); border: 1px solid rgb(193 154 91 / .3); box-shadow: none; }
.quote-stars { color: var(--gold); font-size: .95rem; letter-spacing: .2em; }
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--pine);
  flex: 1;
}
.section-pine .quote-card blockquote { color: var(--ivory); }
.quote-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-pine .quote-card cite { color: rgb(250 247 242 / .7); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--gold); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--clay); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--pine); font-weight: 600; }

/* ---------- Gallery grid + lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid a { position: relative; display: block; overflow: hidden; height: 100%; }
.gallery-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); aspect-ratio: 4 / 3; }
.gallery-grid a:hover img { transform: scale(1.05); }
.gallery-tile { position: relative; }
.gallery-main { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-main img { aspect-ratio: auto; height: 100%; }
.gallery-more-btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius);
  background: rgb(250 247 242 / .94);
  color: var(--pine);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgb(13 34 28 / .3);
  transition: background .2s;
}
.gallery-more-btn:hover { background: var(--gold); color: var(--pine-deep); }
.gallery-hidden { display: none !important; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .gallery-main img { aspect-ratio: 16 / 10; }
}

/* Lightbox (markup injected by main.js) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgb(13 34 28 / .96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(.8rem, 3vw, 2.5rem);
  animation: lbFade .25s var(--ease-out);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgb(0 0 0 / .5);
}
.lightbox-caption { color: rgb(250 247 242 / .85); font-size: .9rem; margin-top: 1rem; text-align: center; }
.lightbox-count { color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-top: .3rem; }
.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(250 247 242 / .12);
  color: var(--ivory);
  transition: background .2s;
}
.lightbox button:hover { background: var(--gold); color: var(--pine-deep); }
.lightbox button svg { width: 22px; height: 22px; stroke: currentColor; }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
  .lightbox button { width: 42px; height: 42px; }
}
body.lightbox-open { overflow: hidden; }

/* ---------- Property detail layout ---------- */
.prop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
}
@media (max-width: 960px) {
  .prop-layout { grid-template-columns: 1fr; }
}
.prop-main > * + * { margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.prop-section h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-bottom: 1rem; }

.highlights-list { display: grid; gap: .6rem; }
.highlights-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); }
.highlights-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--gold);
}

/* Specs strip */
.specs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.specs-strip .spec svg { width: 26px; height: 26px; margin: 0 auto .45rem; stroke: var(--gold); }
.specs-strip .spec strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--pine); line-height: 1.2; }
.specs-strip .spec span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 620px) {
  .specs-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Amenity grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .8rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid rgb(193 154 91 / .28);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .92rem;
}
.amenity svg { width: 20px; height: 20px; flex: none; stroke: var(--pine); }

/* Sticky booking aside */
.book-aside { position: sticky; top: calc(var(--header-h) + 1.2rem); }
.book-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  border-top: 3px solid var(--gold);
  padding: 1.7rem 1.6rem;
}
.book-card .book-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--pine); line-height: 1.1; }
.book-card .book-price small { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.book-card ul { margin: 1.1rem 0 1.3rem; display: grid; gap: .5rem; }
.book-card ul li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--ink-soft); border-bottom: 1px dashed rgb(193 154 91 / .35); padding-bottom: .5rem; }
.book-card ul li strong { color: var(--ink); font-weight: 600; }
.book-card .book-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .8rem; }
.book-card .book-note a { color: var(--clay); }

/* House notes */
.house-notes { background: var(--sand); border-radius: var(--radius); padding: 1.6rem 1.7rem; }
.house-notes ul { display: grid; gap: .55rem; }
.house-notes li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.house-notes li svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; stroke: var(--clay); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: .7rem; }
.accordion-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--pine);
}
.accordion-trigger:hover { color: var(--clay); }
.accordion-trigger .acc-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  transition: transform .3s var(--ease-out), background .2s;
}
.accordion-trigger .acc-icon svg { width: 14px; height: 14px; stroke: var(--pine); }
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--gold); }
.accordion-panel { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); }
.accordion-panel[hidden] { display: none; }

/* ---------- Filter bar ---------- */
.filter-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 1.4rem;
}
.filter-group { display: flex; align-items: center; gap: .6rem; }
.filter-group label { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.filter-bar select {
  padding: .55rem 2.2rem .55rem .9rem;
  border: 1px solid rgb(21 52 43 / .25);
  border-radius: var(--radius);
  background: var(--ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2315342b' stroke-width='2'/%3E%3C/svg%3E") no-repeat right .8rem center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--ink);
  font-size: .92rem;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  padding: .48rem 1.05rem;
  border-radius: 100px;
  border: 1px solid rgb(21 52 43 / .3);
  background: transparent;
  color: var(--pine);
  font-size: .85rem;
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.pill:hover { border-color: var(--gold); color: var(--clay); }
.pill[aria-pressed="true"] { background: var(--pine); border-color: var(--pine); color: var(--ivory); }
.filter-count { font-size: .85rem; color: var(--ink-soft); margin-left: auto; }
.filter-empty {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.filter-empty.visible { display: block; }
.prop-card.filtered-out { display: none; }

/* ---------- Banner (Groups & Events) ---------- */
.banner-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pine);
  color: var(--ivory);
  box-shadow: var(--shadow-lift);
}
.banner-split-media { min-height: 320px; }
.banner-split-media img { width: 100%; height: 100%; object-fit: cover; }
.banner-split-body { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; align-items: flex-start; }
.banner-split-body h2 { color: var(--ivory); }
.banner-split-body p { color: rgb(250 247 242 / .85); }
@media (max-width: 820px) {
  .banner-split { grid-template-columns: 1fr; }
  .banner-split-media { min-height: 240px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--pine); color: rgb(250 247 242 / .85); margin-top: 0; }
.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2rem) 2.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem; background: var(--ivory); box-shadow: 0 0 0 2px var(--gold); }
.footer-brand p { font-size: .95rem; line-height: 1.6; max-width: 30ch; }
.footer-col h2 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer ul, .book-card ul, .house-notes ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: rgb(250 247 242 / .85); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: .25rem; stroke: var(--gold); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(193 154 91 / .5);
  transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { stroke: var(--pine-deep); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--gold); }
.footer-bottom { border-top: 1px solid rgb(193 154 91 / .3); }
.footer-bottom-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.3rem clamp(1.1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  font-size: .84rem;
  color: rgb(250 247 242 / .65);
}
.footer-bottom-inner nav { display: flex; gap: 1.3rem; }
.footer-bottom-inner a { color: rgb(250 247 242 / .75); text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-stagger > :nth-child(1) { --reveal-delay: 0s; }
.reveal-stagger > :nth-child(2) { --reveal-delay: .1s; }
.reveal-stagger > :nth-child(3) { --reveal-delay: .2s; }
.reveal-stagger > :nth-child(4) { --reveal-delay: .3s; }
.reveal-stagger > :nth-child(5) { --reveal-delay: .4s; }
.reveal-stagger > :nth-child(6) { --reveal-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: clamp(3.5rem, 9vw, 7rem); }
.error-page .error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--sand);
  -webkit-text-stroke: 2px var(--gold);
}
.error-page h1 { margin-top: .4rem; }
.error-page p { margin: .9rem auto 1.8rem; color: var(--ink-soft); }
.error-page .hero-actions { justify-content: center; }

/* ---------- Utilities ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--pine);
  color: var(--ivory);
  padding: .7rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.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;
}
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* ---------- Small screens ---------- */
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .banner-split-body .btn { width: 100%; }
  .filter-bar { align-items: stretch; flex-direction: column; }
  .filter-count { margin-left: 0; }
}

/* ---------- Hero background video (Vimeo cover embed) ---------- */
.hero-media .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .hero-video-embed {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;          /* 16:9 */
  min-height: 100%; min-width: 177.78vh;  /* cover both axes */
  transform: translate(-50%, -50%);
  pointer-events: none; border: 0;
}
@media (prefers-reduced-motion: reduce) { .hero-media .hero-video, .hero-media .hero-video-embed { display: none; } }

/* ---------- Booking page ---------- */
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.6rem, 3.5vw, 3rem); align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } .booking-aside { order: -1; } }
.booking-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--pine); }
.form-field .optional { font-weight: 400; color: var(--ink-soft); font-size: .82rem; }
.form-field .req { color: var(--clay); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid rgb(21 52 43 / .22);
  border-radius: 6px; background: var(--ivory); color: var(--ink); font-size: .98rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form-error { color: #a03024; font-weight: 600; margin-bottom: 1rem; }
.form-note { font-size: .88rem; color: var(--ink-soft); margin-top: 1rem; }
.booking-confirm { margin-top: 1.4rem; background: var(--sand); border-left: 4px solid var(--gold); border-radius: 6px; padding: 1.1rem 1.3rem; }
.booking-confirm h3 { margin-bottom: .4rem; }
.booking-summary { position: sticky; top: calc(var(--header-h) + 1rem); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.booking-summary img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.booking-summary-body { padding: 1.3rem 1.4rem 1.5rem; }
.booking-summary-name { font-size: 1.35rem; }
.booking-summary-town { color: var(--ink-soft); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.booking-summary-specs { font-size: .95rem; margin-top: .3rem; }
.booking-summary-math { color: var(--ink-soft); font-size: .95rem; }
.booking-summary-total { font-size: 1.05rem; margin-top: .2rem; }
.booking-summary-total strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--pine); }
.booking-summary-note { font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; }
.booking-summary-perks { margin-top: .9rem; font-size: .9rem; }
.booking-summary-perks li { padding-block: .18rem; }

/* Hero eyebrow legibility over video */
.hero .overline { color: #e3c68f; text-shadow: 0 1px 14px rgb(13 34 28 / .85); }
