:root {
  --cream: #F7F3EC;
  --paper: #FFFDF9;
  --ink: #221F1B;
  --pine: #2E3B2E;
  --brass: #B8996A;
  --stone: #5C5A52;
  --line: rgba(34, 31, 27, 0.12);
  --radius: 4px;
  --serif: 'Fraunces', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow { max-width: 760px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 450;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.05rem; margin-bottom: 6px; }
p { margin: 0 0 16px; color: var(--stone); }
.center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brass);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow-light { color: rgba(255,255,255,0.85); }

/* Scroll reveal. Scoped to .js-reveal (set by an inline script in <head>) so that
   if JS fails to run, content stays visible instead of being stuck at opacity 0. */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-reveal .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: #23301f; }
.btn-outline { border-color: currentColor; color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-ghost { color: #fff; text-decoration: underline; text-underline-offset: 4px; padding: 13px 6px; }
.btn-sm { padding: 9px 18px; font-size: 0.75rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 8px 0;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark { text-decoration: none; color: #fff; display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; flex-shrink: 0; }
.wordmark-main { font-family: var(--serif); font-size: 1.15rem; letter-spacing: -0.01em; }
.wordmark-sub { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }

.main-nav { display: flex; gap: 13px; flex: 1; justify-content: center; }
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.71rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { opacity: 1; }

.header-cta { color: #fff; border-color: rgba(255,255,255,0.7); flex-shrink: 0; white-space: nowrap; padding: 11px 20px; font-size: 0.78rem; }
.header-cta:hover { background: #fff; color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  /* 44x44 minimum touch target */
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: -8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: #fff; display: block; }

.site-header.scrolled {
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  padding: 0;
}
.site-header.scrolled .wordmark { color: var(--ink); }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .header-cta { color: var(--ink); border-color: var(--ink); }
.site-header.scrolled .header-cta:hover { background: var(--ink); color: #fff; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--pine);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  text-decoration: none;
}
.mobile-nav .btn { margin-top: 10px; }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 620px; color: #fff; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.35) 0%, rgba(20,18,15,0.15) 35%, rgba(20,18,15,0.65) 100%);
}
.hero-content {
  position: absolute;
  bottom: 12%;
  left: 0; right: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; line-height: 1.08; margin-bottom: 18px; }
.hero-lede { max-width: 520px; font-size: 1.1rem; color: rgba(255,255,255,0.92); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.8;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Intro */
/* Intro uses the same full-bleed two-column geometry as the story blocks below,
   so its photo reads at the same scale rather than as a smaller inset. */
.intro { padding: 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: center;
  min-height: 78vh;
}
.intro-grid.container { max-width: none; padding: 0; }
.intro-copy { padding: 60px 70px; }
.intro-copy p { font-size: 1.02rem; max-width: 460px; }
.intro-image { height: 78vh; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 34px; margin-top: 30px; border-top: 1px solid var(--line); padding-top: 26px; }
.stat-row div { display: flex; flex-direction: column; }
.stat-row strong { font-family: var(--serif); font-size: 1.6rem; }
.stat-row span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-top: 2px; }

/* Story blocks */
.story-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  min-height: 78vh;
}
.story-block.reverse { grid-template-columns: 1fr 1.3fr; }
.story-block.reverse .story-image { order: 2; }
.story-block.reverse .story-copy { order: 1; }
.story-image { height: 78vh; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: 60px 70px; }
.story-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.story-copy p { font-size: 1.02rem; max-width: 420px; }

/* Spec sheet */
.spec-sheet { padding: 100px 0; background: var(--paper); }
.spec-grid { max-width: 820px; margin: 40px auto 0; }
.spec-row {
  display: grid;
  grid-template-columns: 84px 1fr auto 24px;
  gap: 22px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.spec-row:hover { background: rgba(184, 153, 106, 0.07); }
.spec-row:first-child { border-top: 1px solid var(--line); }
.spec-thumb { width: 84px; height: 62px; object-fit: cover; border-radius: 3px; display: block; }
.spec-text { display: flex; flex-direction: column; gap: 3px; }
.spec-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.spec-detail { font-size: 0.9rem; color: var(--stone); }
.spec-sleeps { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); white-space: nowrap; }
.spec-arrow { color: var(--brass); font-size: 1rem; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.spec-row:hover .spec-arrow { opacity: 1; transform: translateX(3px); }

/* Room modal */
.room-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.9);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
}
.room-modal.open { display: flex; }
.room-modal-inner {
  background: var(--cream);
  border-radius: 6px;
  max-width: 900px;
  width: 100%;
  padding: 40px;
  position: relative;
  margin: auto;
}
.room-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--stone);
  cursor: pointer;
}
.room-modal-close:hover { color: var(--ink); }
.room-modal-inner h3 { font-size: 1.7rem; margin-bottom: 4px; }
.room-modal-detail { font-size: 0.92rem; color: var(--stone); margin-bottom: 24px; }
.room-carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.room-stage { flex: 1; overflow: hidden; border-radius: 4px; background: #e8e2d8; }
.room-stage img { width: 100%; height: 460px; object-fit: cover; display: block; }
.room-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.room-nav:hover { background: var(--pine); color: #fff; border-color: var(--pine); }
.room-nav[hidden] { display: none; }
.room-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 12px; min-height: 18px; }
.room-caption { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin: 0; }
.room-counter { font-size: 0.78rem; color: var(--brass); margin: 0; white-space: nowrap; }
.room-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.room-thumbs[hidden] { display: none; }
.room-thumbs button {
  width: 74px;
  height: 54px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.room-thumbs button:hover { opacity: 0.85; }
.room-thumbs button.active { opacity: 1; border-color: var(--brass); }
.room-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nature-lede { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }
.nature-figure figcaption {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 10px;
}

/* Inline carousel (story blocks + intro) */
.has-carousel { position: relative; }
/* Before JS runs, only the first image shows — avoids a stacked flash. */
[data-carousel] img:not(:first-child) { display: none; }
.has-carousel img { display: none; }
.has-carousel img.is-active { display: block; }
.ic-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,253,249,0.88);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.22s, background 0.22s;
  z-index: 2;
}
.has-carousel:hover .ic-nav, .ic-nav:focus-visible { opacity: 1; }
.ic-nav:hover { background: #fff; }
.ic-prev { left: 14px; }
.ic-next { right: 14px; }
.ic-dots {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
/* The dot stays small visually, but the button carries a 30px touch target
   via padding + a transparent background-clip trick. */
.ic-dots button {
  width: 7px; height: 7px;
  padding: 0;
  border: 14px solid transparent;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  background-clip: padding-box;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ic-dots button.active { background: #fff; transform: scale(1.35); background-clip: padding-box; }

/* Touch devices never fire :hover, so the carousel arrows would stay invisible.
   Show them permanently where there is no hover. */
@media (hover: none) {
  .ic-nav { opacity: 1; }
}

.story-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
  font-size: 0.98rem;
}
.story-quote span {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 8px;
}

/* Video still with "coming soon" watermark */
.video-still { position: relative; margin: 40px 0 0; border-radius: 5px; overflow: hidden; }
.video-still img { width: 100%; height: 440px; object-fit: cover; display: block; }
.video-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 15, 0.42);
}
.video-watermark span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: #fff;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.65);
  padding: 14px 34px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}

/* Wide panorama band */
.panorama { margin: 0; }
.panorama img { width: 100%; height: 320px; object-fit: cover; display: block; }
.panorama figcaption {
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 0 28px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* Activity photos */
.activity-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 40px 0 8px; }
.activity-photos figure { margin: 0; }
.activity-photos img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; display: block; }
.activity-photos figcaption {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 10px;
}

/* Figure inside a house note */
.note-figure { margin: 18px 0 0; }
.note-figure img { width: 100%; max-width: 520px; border-radius: 4px; display: block; }
.note-figure figcaption { font-size: 0.78rem; color: var(--stone); margin-top: 8px; font-style: italic; }

/* Kitchen slide 2: frame panned up so the mantel reads and the bar stools
   fall below the crop. */
.story-image img[src$="kitchen-hearth.jpg"] { object-position: center 28%; }

/* Sunset — one full-width moment */
.sunset { padding: 0 0 100px; background: var(--paper); }
.sunset-figure { margin: 0; }
.sunset-figure img { width: 100%; height: 540px; object-fit: cover; object-position: center 40%; border-radius: 4px; display: block; }
.sunset-figure figcaption {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 10px;
}

/* Exterior */
.exterior { padding: 100px 0; background: var(--paper); }
.exterior-lede { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }
.exterior-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-rows: auto;
  gap: 14px;
}
.exterior-figure { margin: 0; }
.exterior-figure.tall { grid-row: span 2; }
.exterior-figure img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 4px; display: block; }
.exterior-figure.tall img { min-height: 514px; }
.exterior-figure figcaption {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 10px;
}

/* Nature */
.nature { padding: 100px 0; background: var(--pine); color: #fff; }
.nature h2 { color: #fff; }
.nature .nature-lede { color: rgba(255,255,255,0.82); }
.nature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nature-grid + .nature-grid { margin-top: 14px; }
.nature-grid.single { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.nature-grid.single .nature-figure img { height: 560px; }
.nature-grid.three { grid-template-columns: repeat(3, 1fr); }
.nature-grid.wide-left { grid-template-columns: 1.6fr 1fr 1fr; }
.nature-grid.wide-left .nature-figure img { height: 320px; }
.nature-figure { margin: 0; }
.nature-figure img { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; display: block; }
.nature-figure figcaption { color: rgba(255,255,255,0.65); }

/* Gallery */
.gallery { padding: 100px 0 30px; }
.gallery h2 { margin-bottom: 50px; }
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 100px;
}
.gal-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 34px 0 40px;
}
.gal-filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--stone);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gal-filter:hover { border-color: var(--brass); color: var(--ink); }
.gal-filter.active { background: var(--pine); border-color: var(--pine); color: #fff; }
.masonry-item[hidden] { display: none; }

.masonry-item {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}
.masonry-item.big { grid-column: span 2; grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }
.masonry-item.tall { grid-row: span 2; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,13,11,0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 88vw; max-height: 86vh; text-align: center; }
.lightbox img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: 2px; }
.lightbox figcaption { color: rgba(255,255,255,0.75); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 28px; right: 32px; font-size: 1.8rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* Video */
.video { padding: 100px 0 30px; }
.video-embed { display: flex; justify-content: center; margin-top: 20px; }
.video-embed iframe, .video-embed .instagram-media { margin: 0 auto !important; }

/* Amenities */
.amenities { padding: 100px 0; background: var(--paper); }
.amenity-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 50px; }
.amenity-col h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); font-family: var(--sans); margin-bottom: 18px; }
.amenity-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.amenity-col li { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; }
.icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--pine); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* Notes / accordion */
.notes { padding: 100px 0; }
.accordion { margin-top: 40px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform 0.25s;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion-body { padding: 0 4px 24px; font-size: 0.96rem; max-width: 620px; }

/* Reviews */
.reviews { padding: 100px 0; background: var(--paper); }
.rating-hero { text-align: center; margin-bottom: 40px; }
.rating-number { font-family: var(--serif); font-size: 4rem; color: var(--ink); }
.rating-number span { color: var(--brass); font-size: 2rem; margin-left: 4px; }
.rating-caption { color: var(--stone); font-size: 0.9rem; }
.rating-breakdown { max-width: 460px; margin: 0 auto 40px; }
.rating-breakdown > div { display: grid; grid-template-columns: 120px 1fr 36px; align-items: center; gap: 12px; margin-bottom: 12px; }
.rating-breakdown span { font-size: 0.82rem; color: var(--stone); }
.bar { background: var(--line); border-radius: 999px; height: 3px; overflow: hidden; }
.bar div { background: var(--brass); height: 100%; }
.review-synthesis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}
/* Verbatim guest quotes */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 46px 0 50px;
  align-items: start;
}
.quote {
  margin: 0;
  background: var(--cream);
  border-radius: 5px;
  padding: 26px 26px 22px;
}
.quote.feature { grid-column: span 2; background: var(--pine); }
.quote p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}
.quote.feature p { color: #fff; font-size: 1.22rem; }
.quote cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}
.quote.feature cite { color: rgba(255,255,255,0.72); }

.theme-block { border-top: 1px solid var(--line); padding-top: 34px; }
.theme-lead {
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass);
  margin-bottom: 18px;
}
.rating-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 24px;
}
.rating-inline span { font-size: 0.8rem; color: var(--stone); }
.rating-inline em { font-style: normal; color: var(--ink); font-weight: 600; margin-left: 4px; }

.theme-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 0; }
.chip {
  background: var(--pine);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
}
.chip em { font-style: normal; opacity: 0.7; margin-left: 4px; }
.theme-caption { text-align: center; font-size: 0.76rem; color: var(--stone); margin: 0; }

/* Host */
.host { padding: 90px 0; }
.host-inner { display: flex; align-items: center; gap: 34px; }
.host-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.host h2 { margin-bottom: 6px; font-size: 1.8rem; }
.host p { margin: 4px 0; }
.host-note { font-style: italic; color: var(--ink); }

/* Location */
.location { padding: 100px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-copy p { font-size: 1.02rem; max-width: 480px; }
.location-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; display: block; }
.distance-row {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.distance-row div { display: flex; flex-direction: column; }
.distance-row strong { font-family: var(--serif); font-size: 2rem; color: var(--ink); line-height: 1; }
.distance-row span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 8px;
  line-height: 1.5;
}

/* Local guide */
.guide { padding: 100px 0; background: var(--paper); }
.map-cta { text-align: center; margin: 28px 0 56px; }
.guide-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 50px; }
.guide-col h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); font-family: var(--sans); margin-bottom: 16px; }
.guide-list { list-style: none; padding: 0; margin: 0; }
.guide-list li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.guide-list li:first-child { padding-top: 0; }
.guide-list strong { font-size: 0.92rem; }
.guide-list span { font-size: 0.8rem; color: var(--stone); }

/* Activities */
.activities { padding: 100px 0; }
.tabs { display: flex; gap: 34px; justify-content: center; margin: 44px 0 40px; border-bottom: 1px solid var(--line); }
.tab-btn {
  border: none;
  background: none;
  padding: 0 0 16px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--ink); border-color: var(--brass); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
ul.tab-panel {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  gap: 10px;
}
ul.tab-panel.active { display: grid; grid-template-columns: repeat(2, 1fr); }
ul.tab-panel li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.act-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
table.tab-panel { width: 100%; max-width: 820px; margin: 0 auto; border-collapse: collapse; }
table.tab-panel.active { display: table; }
table.tab-panel th, table.tab-panel td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
table.tab-panel th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); font-weight: 600; }

.guide-subhead { margin: 70px 0 10px; font-size: 1.5rem; }
.festival-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; max-width: 820px; margin-left: auto; margin-right: auto; }
.festival-row h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); font-family: var(--sans); margin-bottom: 8px; }
.festival-row p { font-size: 0.85rem; margin: 0; }

/* Events & Festivals */
.events { padding: 100px 0; background: var(--paper); }
.events-lead { max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 46px; }
.quarter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.quarter h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.quarter-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.quarter ul { list-style: none; padding: 0; margin: 0; }
.quarter li {
  font-size: 0.88rem;
  color: var(--ink);
  padding: 9px 0;
  line-height: 1.45;
}
.quarter li span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3px;
}
.quarter li strong { font-weight: 600; }
.ev-icon {
  width: 15px;
  height: 15px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
  margin-right: 6px;
}
.quarter li em { font-style: normal; color: var(--stone); font-size: 0.82rem; }
.events-list { max-width: 720px; margin: 44px auto 0; }
.event-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.event-row:first-child { border-top: 1px solid var(--line); }
.event-date { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brass); font-weight: 600; }
.event-row h4 { font-size: 1.1rem; margin-bottom: 4px; }
.event-row p { margin: 0; font-size: 0.92rem; }
.events-note { max-width: 720px; margin: 20px auto 0; font-size: 0.82rem; color: var(--stone); }
.events-note a { color: var(--stone); text-decoration: underline; }

/* Inquire */
.inquire { padding: 110px 0; background: var(--pine); color: #fff; }
.inquire-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.inquire h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.inquire-copy p { color: rgba(255,255,255,0.82); max-width: 420px; }
.inquire-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquire-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.inquire-form input, .inquire-form textarea {
  font-family: var(--sans);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  padding: 10px 12px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
}
.inquire-form input::placeholder, .inquire-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.inquire-form button { align-self: flex-start; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin: 0; }
.nights-note { font-size: 0.8rem; color: var(--brass); margin: 0; min-height: 16px; }
/* Honeypot — off-screen rather than display:none, which some bots detect. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field-hint {
  align-self: end;
  padding-bottom: 8px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.rates {
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 22px 0;
  margin: 26px 0 28px;
  max-width: 420px;
}
.rates-head {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
}
.rates-figure {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: #fff;
  margin: 0 0 10px;
}
.rates-figure strong { font-size: 1.9rem; font-weight: 500; }
.rates-figure span { font-size: 0.86rem; color: rgba(255,255,255,0.72); }
.rates-note { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin: 0; }

.booking-how { max-width: 420px; margin-bottom: 28px; }
.booking-head {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.booking-how p { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin: 0 0 10px; line-height: 1.6; }
.booking-how strong { color: #fff; font-weight: 600; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta span { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); }

/* Footer */
footer { background: var(--ink); color: #fff; padding: 50px 0 90px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-word { font-size: 1.3rem; margin: 0; }
footer .wordmark-sub { color: rgba(255,255,255,0.6); }

/* Responsive */
/* Nine nav items need ~1045px on one row. Switch to the hamburger at 1080 so
   there is no viewport width where the header wraps. */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 900px) {
  .intro-grid, .story-block, .story-block.reverse, .inquire-grid { grid-template-columns: 1fr; }
  .story-block.reverse .story-image, .story-block.reverse .story-copy { order: initial; }
  .story-image, .story-block { height: auto; min-height: 0; }
  .story-image { height: 50vh; }
  .story-copy { padding: 40px 28px; }
  .intro-grid { min-height: 0; }
  .intro-image { height: 50vh; }
  .intro-copy { padding: 40px 28px; }
  .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-image img { height: 300px; }
  .distance-row { gap: 26px; flex-wrap: wrap; }
  .amenity-columns, .guide-columns, .festival-row { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry-item.big { grid-column: span 2; grid-row: span 1; }
  ul.tab-panel.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; gap: 24px; }
  .event-row { grid-template-columns: 1fr; gap: 4px; }
  .quarter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sunset-figure img { height: 300px; }
  .activity-photos { grid-template-columns: 1fr; }
  .activity-photos img { height: 260px; }
  .panorama img { height: 200px; }
  .video-still img { height: 260px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote.feature { grid-column: span 1; }
  .nature-grid, .nature-grid.three, .nature-grid.wide-left { grid-template-columns: 1fr; }
  .nature-grid.wide-left .nature-figure img { height: 260px; }
  .nature-figure img, .nature-grid.single .nature-figure img { height: 300px; }
  .exterior-grid { grid-template-columns: 1fr; }
  .exterior-figure.tall { grid-row: auto; }
  .exterior-figure img, .exterior-figure.tall img { min-height: 260px; height: 260px; }
  .room-modal-inner { padding: 30px 16px; }
  .room-stage img { height: 260px; }
  .room-nav { width: 34px; height: 34px; font-size: 1.2rem; }
  .room-thumbs button { width: 58px; height: 44px; }
  .spec-row { grid-template-columns: 64px 1fr auto; gap: 14px; }
  .spec-thumb { width: 64px; height: 50px; }
  .spec-arrow { display: none; }
}

/* Below ~640px the wordmark plus the header button leave no room for the
   hamburger, which pushed it off-screen and made the menu unreachable. The
   mobile nav panel and the sticky bar both carry the same CTA, so the header
   copy of it is redundant here. */
@media (max-width: 640px) {
  .header-cta { display: none; }
  .header-inner { padding: 12px 20px; }
  .wordmark-main { font-size: 1.05rem; }
  .wordmark-sub { font-size: 0.68rem; }
  /* captions and attributions were rendering under 12px */
  .nature-figure figcaption,
  .exterior-figure figcaption,
  .activity-photos figcaption,
  .panorama figcaption,
  .sunset-figure figcaption,
  .masonry-item figcaption { font-size: 0.8rem; }
  .story-quote span { font-size: 0.78rem; }
  .ic-dots { bottom: 10px; }
}

@media (max-width: 560px) {
  .amenity-columns, .guide-columns, .festival-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .sticky-cta { flex-direction: column; gap: 10px; text-align: center; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
