/* ─── STEEPWOOD — MAIN STYLESHEET ─── */

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

:root {
  --dark:       #0a1007;
  --dark-2:     #152010;
  --forest:     #1f2e15;
  --sage:       #7a9162;
  --sage-light: #9fb88a;
  --cream:      #f0e5d0;
  --warm:       #faf5ec;
  --amber:      #b8702e;
  --amber-light:#d08a48;
  --text-light: #e8ddc8;
  --text-muted: rgba(240,229,208,0.78);
  --border-dim: rgba(255,255,255,0.08);
  --border-cream: rgba(29,40,20,0.14);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 112px);
  --container: 1320px;
  --gutter: clamp(24px, 5vw, 56px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--sage-light);
  flex-shrink: 0;
}
.eyebrow.no-line::before { display: none; }

.eyebrow-dark {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-dark::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  background: var(--amber);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn:hover { background: var(--amber-light); }
.btn::after { content: '→'; font-size: 15px; }
.btn.no-arrow::after { display: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  border: 1px solid rgba(240,229,208,0.3);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(240,229,208,0.55); background: rgba(240,229,208,0.06); }
.btn-outline::after { content: '→'; font-size: 14px; color: var(--amber); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  border: 1px solid rgba(29,40,20,0.3);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.btn-dark:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-dark::after { content: '→'; font-size: 14px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(10,16,7,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  backdrop-filter: blur(4px);
}
.nav.scrolled {
  background: rgba(10,16,7,0.97);
  border-bottom-color: var(--border-dim);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-logo span { color: var(--sage-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); }
.nav-links .book-link {
  color: var(--cream);
  border: 1px solid rgba(240,229,208,0.3);
  padding: 8px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-links .book-link:hover {
  border-color: rgba(240,229,208,0.6);
  background: rgba(240,229,208,0.06);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,16,7,0.98);
  border-bottom: 1px solid var(--border-dim);
  backdrop-filter: blur(8px);
  padding: 24px var(--gutter);
  flex-direction: column;
  gap: 0;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.8);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; color: var(--cream); }
.nav-mobile a:hover { color: var(--cream); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,16,7,0.95) 0%,
    rgba(10,16,7,0.45) 45%,
    rgba(10,16,7,0.1)  100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-location {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-location::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--sage-light);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: rgba(240,229,208,0.72); }
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,229,208,0.92);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ─── MARKER BAR ─── */
.markers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.marker {
  padding: clamp(18px, 2.5vw, 28px) 0;
  text-align: center;
  border-right: 1px solid var(--border-dim);
}
.marker:last-child { border-right: none; }
.marker-val {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: rgba(240,229,208,0.9);
  line-height: 1;
  margin-bottom: 6px;
}
.marker-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.5);
}

/* ─── CABIN SHOWCASE ─── */
.cabin-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cabin-showcase-img {
  position: relative;
  height: clamp(400px, 50vw, 640px);
}
.cabin-showcase-img .tag {
  position: absolute;
  top: 28px; left: 28px;
  background: rgba(10,16,7,0.82);
  border: 1px solid rgba(240,229,208,0.2);
  padding: 7px 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  backdrop-filter: blur(4px);
}
.cabin-showcase-info {
  background: var(--dark-2);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cabin-showcase-info .eyebrow { margin-bottom: 16px; }
.cabin-showcase-info h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 20px;
}
.cabin-showcase-info h2 em { font-style: italic; display: block; }
.cabin-showcase-info p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
  margin-bottom: 36px;
}
.spec-item-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 5px;
}
.spec-item-val {
  font-size: 14px;
  color: var(--cream);
  font-weight: 400;
}

/* ─── ESTATE SECTION ─── */
.estate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.estate-text {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.estate-text .eyebrow-dark { margin-bottom: 24px; }
.estate-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.estate-text h2 em { font-style: italic; color: var(--sage); }
.estate-text p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(20,30,13,0.78);
  margin-bottom: 14px;
}
.estate-img {
  min-height: 480px;
  background-position: center;
  background-size: cover;
}

/* ─── EXPLORE TEASER ─── */
.explore-teaser {
  padding: var(--section-pad) var(--gutter);
  background: var(--dark);
}
.explore-teaser .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.explore-teaser h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}
.explore-teaser h2 em { font-style: italic; color: var(--sage-light); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.explore-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
}
.explore-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.explore-card:hover .explore-card-bg { transform: scale(1.05); }
.explore-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,7,0.88) 0%, rgba(10,16,7,0.1) 60%);
}
.explore-card-content {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
}
.explore-card-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 8px;
}
.explore-card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.explore-card-dist {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(240,229,208,0.6);
  margin-top: 6px;
}

/* ─── PLACE LIST ─── */
.place-list { }
.place-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border-cream);
}
.place-row:last-child { border-bottom: 1px solid var(--border-cream); }
.place-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}
.place-detail {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sage);
  text-align: right;
}

/* ─── CTA BAND ─── */
.cta-band {
  padding: var(--section-pad) var(--gutter);
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border-dim);
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  max-width: 440px;
}
.cta-band h2 em { font-style: italic; color: var(--sage-light); }
.cta-right { text-align: right; flex-shrink: 0; }
.cta-right p {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(240,229,208,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ─── FOOTER ─── */
.footer {
  background: #060b04;
  padding: 48px var(--gutter) 36px;
  border-top: 1px solid var(--border-dim);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--sage-light); }
.footer-brand p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,229,208,0.4);
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(240,229,208,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.25);
}

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  height: clamp(340px, 45vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(40px, 5vw, 64px);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,7,0.92) 0%, rgba(10,16,7,0.42) 60%, rgba(10,16,7,0.25) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-top: 12px;
}
.page-hero h1 em { font-style: italic; }
.page-hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,229,208,0.82);
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.75;
}

/* ─── TEXT SECTIONS ─── */
.text-section { padding: var(--section-pad) var(--gutter); }
.text-section p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 20px;
}
.text-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}
.text-section h2 em { font-style: italic; color: var(--sage-light); }

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.gallery-item { overflow: hidden; height: 300px; }
.gallery-item.tall { grid-row: span 2; height: 603px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ─── AMENITIES ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.amenity-group {
  padding: 40px var(--gutter);
  border-right: 1px solid var(--border-dim);
}
.amenity-group:last-child { border-right: none; }
.amenity-group h3 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}
.amenity-group ul { list-style: none; }
.amenity-group ul li {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,229,208,0.8);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-group ul li:last-child { border-bottom: none; }
.amenity-group ul li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
}

/* ─── ACTIVITY CARDS ─── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.activity-card { position: relative; height: 420px; overflow: hidden; }
.activity-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.activity-card:hover .activity-card-bg { transform: scale(1.04); }
.activity-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,7,0.9) 0%, rgba(10,16,7,0.1) 55%);
}
.activity-card-content {
  position: absolute;
  bottom: 36px; left: 36px; right: 36px;
  z-index: 2;
}
.activity-card-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 10px;
}
.activity-card-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}
.activity-card-title em { font-style: italic; }
.activity-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,229,208,0.78);
  line-height: 1.7;
  max-width: 380px;
}

/* ─── EXPLORE PAGE SPECIFIC ─── */
.explore-filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(10,16,7,0.97);
  border-bottom: 1px solid var(--border-dim);
  backdrop-filter: blur(8px);
  padding: 0 var(--gutter);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.explore-filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 18px 22px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.5);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { color: rgba(240,229,208,0.85); }
.filter-btn.active { color: var(--cream); border-bottom-color: var(--amber); }

.explore-section { padding: clamp(48px,6vw,80px) var(--gutter); }
.explore-section-title {
  font-family: var(--serif);
  font-size: clamp(32px,3.5vw,48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}
.explore-section-title em { font-style: italic; color: var(--sage-light); }
.explore-section-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,229,208,0.6);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.rec-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  transition: border-color 0.2s;
}
.rec-card:hover { border-color: rgba(255,255,255,0.15); }
.rec-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--forest);
}
.rec-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rec-card:hover .rec-card-img img { transform: scale(1.05); }
.rec-card-body { padding: 22px 24px 24px; }
.rec-card-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 8px;
}
.rec-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
}
.rec-card-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,229,208,0.65);
}
.rec-card-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-dim);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(240,229,208,0.35);
  text-transform: uppercase;
}

.explore-divider {
  border: none;
  border-top: 1px solid var(--border-dim);
  margin: 0 var(--gutter);
}

/* ─── FAQ ─── */
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid var(--border-dim); }
.faq-item:last-child { border-bottom: 1px solid var(--border-dim); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(240,229,208,0.25);
  border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(240,229,208,0.7);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 24px; }
.faq-a p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,229,208,0.75);
}
.faq-a p + p { margin-top: 12px; }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-info {
  padding: var(--section-pad) var(--gutter);
  background: var(--dark-2);
  border-right: 1px solid var(--border-dim);
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-info h2 em { font-style: italic; color: var(--sage-light); }
.contact-info p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.contact-detail { margin-bottom: 16px; }
.contact-detail-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 4px;
}
.contact-detail-val {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(240,229,208,0.8);
}
.contact-form-panel {
  padding: var(--section-pad) var(--gutter);
  background: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(240,229,208,0.4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,229,208,0.3); }
.form-group select option { background: var(--dark); color: var(--cream); }

/* ─── ABOUT ─── */
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-text-col {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
  color: var(--dark);
}
.about-text-col h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--dark);
}
.about-text-col h2 em { font-style: italic; color: var(--sage); }
.about-text-col p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(20,30,13,0.75);
  margin-bottom: 18px;
  max-width: 520px;
}
.about-img-col { background-size: cover; background-position: center; min-height: 500px; }
.about-values { padding: var(--section-pad) var(--gutter); background: var(--dark-2); }
.about-values h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 48px;
  line-height: 1.1;
}
.about-values h2 em { font-style: italic; color: var(--sage-light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-dim);
}
.value-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(106,125,84,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.value-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── COMING SOON ─── */
.coming-soon-card {
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  height: clamp(300px, 35vw, 460px);
}
.coming-soon-card .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,229,208,0.25);
}
.coming-soon-card .name {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: rgba(240,229,208,0.25);
}

/* ─── HERO LINE NOWRAP (desktop only) ─── */
.hero-nowrap { white-space: nowrap; }
@media (max-width: 768px) { .hero-nowrap { white-space: normal; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .estate { grid-template-columns: 1fr; }
  .estate-img { min-height: 320px; order: -1; }
  .about-body { grid-template-columns: 1fr; }
  .about-img-col { min-height: 320px; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border-dim); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 48px; }
  .markers { grid-template-columns: repeat(2, 1fr); }
  .marker:nth-child(2) { border-right: none; }
  .cabin-showcase { grid-template-columns: 1fr; }
  .cabin-showcase-img { height: 300px; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { height: 260px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; height: 240px; }
  .gallery-item { height: 240px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-group { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .activity-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-right { text-align: left; }
  .cta-right div { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .explore-filter-bar { gap: 0; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
