/* =========================================
   CSS Custom Properties - Color Palette
   ========================================= */
:root {
  --night: #0a0f0d;
  --cream: #f5f0e8;
  --copper: #c17f3e;
  --rust: #9e5128;
  --gold: #d4a843;
  --forest: #1e3a2f;
  --sage: #8aab7f;
  --moss: #4a6741;
  --night-80: rgba(10, 15, 13, 0.8);
  --night-55: rgba(10, 15, 13, 0.55);
  --night-45: rgba(10, 15, 13, 0.45);
  --night-30: rgba(10, 15, 13, 0.3);
  --night-70: rgba(10, 15, 13, 0.7);
  --night-95: rgba(10, 15, 13, 0.95);

  /* ===== Theme channels (dark defaults) =====
     These let inline/component colors flip between themes by swapping only the
     RGB channel while keeping each element's own alpha. Light overrides live in
     css/theme.css under html[data-theme="light"]. */
  --sage-rgb: 138, 171, 127;     /* muted body text */
  --cream-rgb: 245, 240, 232;    /* light text on dark surfaces */
  --surface-rgb: 255, 255, 255;  /* subtle tints / borders on a dark surface */

  /* Semantic surfaces / hairlines (alpha differs per theme → full values) */
  --edge-30: rgba(30, 58, 47, 0.3);
  --edge-50: rgba(30, 58, 47, 0.5);
  --edge-60: rgba(30, 58, 47, 0.6);
  --edge-70: rgba(30, 58, 47, 0.7);
  --edge-100: rgba(30, 58, 47, 1);
  --field-bg: rgba(10, 15, 13, 0.5);
  --field-border: rgba(138, 171, 127, 0.25);
  --backdrop: rgba(10, 15, 13, 0.85);
  --surface-1: #0d1510;   /* booking card */
  --surface-2: #0d1510;   /* lodgify widget surfaces */
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--night);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

img, video {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =========================================
   Typography Helpers
   ========================================= */
.font-light   { font-weight: 300; }
.font-medium  { font-weight: 500; }
.font-bold    { font-weight: 700; }
.italic       { font-style: italic; }
.tracking-wide   { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase    { text-transform: uppercase; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.whitespace-nowrap { white-space: nowrap; }

/* =========================================
   Color Utilities
   ========================================= */
.text-cream   { color: var(--cream); }
.text-copper  { color: var(--copper); }
.text-gold    { color: var(--gold); }
.text-night   { color: var(--night); }
.text-moss    { color: var(--moss); }
.text-sage    { color: var(--sage); }

.text-cream-90 { color: rgba(245, 240, 232, 0.9); }
.text-cream-80 { color: rgba(245, 240, 232, 0.8); }
.text-cream-70 { color: rgba(245, 240, 232, 0.7); }
.text-cream-60 { color: rgba(245, 240, 232, 0.6); }
.text-sage-70  { color: rgba(138, 171, 127, 0.7); }
.text-sage-40  { color: rgba(138, 171, 127, 0.4); }
.text-sage-80  { color: rgba(138, 171, 127, 0.8); }

.bg-night   { background-color: var(--night); }
.bg-cream   { background-color: var(--cream); }
.bg-copper  { background-color: var(--copper); }

/* =========================================
   Layout Utilities
   ========================================= */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.overflow-hidden { overflow: hidden; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50    { z-index: 50; }
.z-10    { z-index: 10; }

.flex { display: flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }

.flex-col    { flex-direction: column; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 1rem; }
.gap-3  { gap: 0.75rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }

.w-full  { width: 100%; }
.h-full  { height: 100%; }
.w-auto  { width: auto; }
.h-auto  { height: auto; }

.object-cover  { object-fit: cover; }
.object-center { object-position: center; }

/* =========================================
   Navigation
   ========================================= */
.nav-desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--night-80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--night-95);
  display: block;
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 1.75rem;
  width: auto;
}

.nav-logo-mobile {
  height: 1.5rem;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--cream); }

.nav-btn-primary {
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 150ms ease;
}
.nav-btn-primary:hover { background-color: var(--rust); }

.nav-btn-outline {
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 150ms ease, color 150ms ease;
}
.nav-btn-outline:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.mobile-menu-btn {
  color: var(--cream);
  padding: 0.5rem;
}
.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem;
  gap: 1rem;
  background-color: var(--night-95);
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(30, 58, 47, 0.4);
  transition: color 150ms;
}
.mobile-menu a:hover { color: var(--cream); }
.mobile-menu .mobile-menu-cta {
  background-color: var(--copper);
  color: var(--cream);
  text-align: center;
  padding: 0.75rem;
  text-transform: uppercase;
  border: none;
  margin-top: 0.5rem;
}
.mobile-menu .mobile-menu-cta:hover { background-color: var(--rust); }

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--night);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 45%,
    rgba(10, 15, 13, 0.55) 0%,
    rgba(10, 15, 13, 0.25) 60%,
    rgba(10, 15, 13, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-logo {
  margin-bottom: 1.5rem;
  width: auto;
  height: 8rem;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.4));
}

.hero-tagline {
  color: var(--copper);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background-color 150ms ease;
}
.btn-primary:hover { background-color: var(--rust); }

.btn-outline-cream {
  display: inline-block;
  border: 1px solid rgba(245, 240, 232, 0.5);
  color: var(--cream);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 150ms ease;
}
.btn-outline-cream:hover { border-color: var(--cream); }

.btn-outline-copper {
  display: inline-block;
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 150ms ease, color 150ms ease;
}
.btn-outline-copper:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}
.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(245, 240, 232, 0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* =========================================
   Full-Bleed Image Sections
   ========================================= */
.section-fullbleed {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--night-80), var(--night-55), transparent);
}

.gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, var(--night-80), var(--night-55), transparent);
}

.gradient-center {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 13, 0.45);
}

.section-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
}

.content-left {
  max-width: 42rem;
}

.content-right {
  max-width: 42rem;
  margin-left: auto;
  text-align: right;
}

.content-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* =========================================
   Landscape Hotel Section
   ========================================= */
.landscape-eyebrow {
  color: var(--copper);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.landscape-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.landscape-body {
  color: rgba(245, 240, 232, 0.9);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

/* =========================================
   Pillars Section (Where adventure meets retreat)
   ========================================= */
.section-dark {
  background-color: var(--night);
}

.pillars-header {
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.pillars-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.pillar-card {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pillar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night-70), rgba(10,15,13,0.3), transparent);
}

.pillar-content {
  position: relative;
  z-index: 10;
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pillar-desc {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pillar-title {
  color: var(--copper);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* =========================================
   Properties Section
   ========================================= */
.properties-header {
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.properties-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.properties-subhead {
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
}

.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.property-card {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms ease, z-index 0ms;
  text-decoration: none;
}
.property-card:hover {
  transform: translateY(-0.5rem);
  z-index: 10;
}

.property-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.property-card:hover .property-bg {
  transform: scale(1.05);
}

.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night-70), rgba(10,15,13,0.3), transparent);
  transition: opacity 300ms ease;
}
.property-card:hover .property-overlay {
  background: linear-gradient(to top, var(--night-80), rgba(10,15,13,0.3), transparent);
}

.property-content {
  position: relative;
  z-index: 10;
  padding: 1.5rem 2rem;
  width: 100%;
}

.property-status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.property-status.open    { color: var(--copper); }
.property-status.coming  { color: rgba(245, 240, 232, 0.7); }

.property-name {
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0.75rem 0;
}

.property-desc {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.property-price {
  color: var(--copper);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.property-cta-filled {
  display: inline-block;
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background-color 300ms ease;
}
.property-card:hover .property-cta-filled { background-color: var(--rust); }

.property-cta-outline {
  display: inline-block;
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 300ms ease, color 300ms ease;
}
.property-card:hover .property-cta-outline {
  border-color: var(--rust);
  color: var(--rust);
}

/* =========================================
   Spacer
   ========================================= */
.spacer-12 {
  height: 3rem;
  background-color: var(--night);
}

/* =========================================
   Ten Acres Section
   ========================================= */
.ten-acres-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.ten-acres-body {
  color: rgba(245, 240, 232, 0.9);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ten-acres-quote {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
}

/* =========================================
   How It Feels Section
   ========================================= */
.feels-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.feels-body {
  color: rgba(245, 240, 232, 0.9);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

.feels-keyword {
  color: var(--gold);
}

/* =========================================
   Location Section
   ========================================= */
.location-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.location-list {
  color: rgba(245, 240, 232, 0.9);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.location-list li {
  padding: 0.375rem 0;
}

/* =========================================
   Story Section (From the Beginning)
   ========================================= */
.story-section {
  position: relative;
  min-height: 600px;
  padding: 8rem 1.5rem 12rem;
  display: flex;
  align-items: center;
}

.story-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.story-body {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

/* =========================================
   Book Section (Cream Background)
   ========================================= */
.book-section {
  background-color: var(--cream);
  padding: 6rem 1.5rem 8rem;
}

.book-heading {
  color: var(--night);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.book-subtitle {
  color: var(--moss);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.book-body {
  color: var(--moss);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.book-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* =========================================
   Signup Section
   ========================================= */
.signup-section {
  background-color: var(--night);
}

.signup-inner {
  padding: 4rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.signup-heading {
  color: var(--cream);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.signup-heading-copper {
  color: var(--copper);
  font-weight: 500;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.signup-input {
  flex: 1;
  background-color: rgba(30, 58, 47, 0.5);
  border: 1px solid var(--forest);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: 0.25rem;
  outline: none;
  transition: border-color 150ms;
}
.signup-input::placeholder { color: rgba(245, 240, 232, 0.7); }
.signup-input:focus { border-color: var(--gold); }

.signup-submit {
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 150ms;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.signup-submit:hover { background-color: var(--rust); }
.signup-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-success {
  color: var(--sage);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  display: none;
}

.map-container {
  width: 100%;
  height: 16rem;
  background-color: rgba(30, 58, 47, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(5%);
}

/* =========================================
   Footer
   ========================================= */
footer {
  background-color: var(--night);
  border-top: 1px solid var(--forest);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  height: 1.5rem;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-address {
  color: rgba(138, 171, 127, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-tagline {
  color: rgba(138, 171, 127, 0.7);
  font-size: 0.875rem;
}

.footer-nav-title {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(138, 171, 127, 0.8);
  font-size: 0.875rem;
  transition: color 150ms;
}
.footer-nav a:hover { color: var(--cream); }

.footer-nav-muted {
  color: rgba(138, 171, 127, 0.4);
}

.footer-contact-btn {
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 150ms;
  font-family: inherit;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}
.footer-contact-btn:hover { background-color: var(--rust); }

.footer-contact-wrap {
  grid-column: span 2;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 58, 47, 0.5);
  text-align: center;
}

.footer-copyright {
  color: rgba(138, 171, 127, 0.4);
  font-size: 0.75rem;
}

/* =========================================
   Responsive — Tablet & Desktop
   ========================================= */
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }

  .book-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .signup-form {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .nav-mobile  { display: none; }

  .hero-logo { height: 10rem; }
  .hero-tagline { font-size: 1.25rem; }
  .hero-subtitle { font-size: 1.125rem; white-space: nowrap; }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar-desc  { font-size: 1rem; }
  .pillar-title { font-size: 1.875rem; }

  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landscape-eyebrow,
  .landscape-heading { font-size: 3rem; }

  .ten-acres-heading { font-size: 3rem; white-space: nowrap; }
  .feels-heading     { font-size: 3rem; }
  .location-heading  { font-size: 3rem; white-space: nowrap; }

  .story-section { min-height: 720px; padding: 12rem 1.5rem; }
  .story-heading { font-size: 2.25rem; }

  .book-heading  { font-size: 3rem; }
  .signup-heading { font-size: 3rem; }

  .map-container { height: 20rem; }

  .footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }

  .footer-brand        { grid-column: auto; }
  .footer-contact-wrap { grid-column: auto; }
}

@media (min-width: 1024px) {
  .hero-logo { height: 12rem; }
}

/* =========================================
   GPU Layer (perf hint for animated elements)
   ========================================= */
.gpu-layer {
  will-change: opacity;
  transform: translateZ(0);
}

/* =========================================
   Retreat intro / Amenities / Final CTA
   (home page — themeable via variables)
   ========================================= */
.retreat-section {
  background-color: var(--night);
  padding: 7rem 1.5rem;
  text-align: center;
}
.retreat-inner { max-width: 48rem; margin: 0 auto; }
.retreat-eyebrow {
  color: var(--copper);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.retreat-heading {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.retreat-body {
  color: rgba(var(--cream-rgb), 0.78);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.amenities-section {
  background-color: var(--night);
  padding: 5rem 1.5rem 7rem;
}
.amenities-header { max-width: 52rem; margin: 0 auto 3rem; text-align: center; }
.amenities-heading {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.amenities-subhead {
  color: rgba(var(--cream-rgb), 0.7);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
}
.amenities-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem 2.5rem;
}
@media (max-width: 720px) { .amenities-grid { grid-template-columns: 1fr; } }
.amenity-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(var(--cream-rgb), 0.9);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--edge-50);
}
.amenity-item::before {
  content: '';
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background-color: var(--copper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

.final-cta-section {
  background-color: var(--forest);
  padding: 7rem 1.5rem;
  text-align: center;
}
.final-cta-inner { max-width: 46rem; margin: 0 auto; }
.final-cta-heading {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.final-cta-body {
  color: rgba(var(--cream-rgb), 0.8);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

/* =========================================
   Brand logo (theme-aware: white on dark, black on light)
   ========================================= */
.lynx-logo { display: inline-flex; align-items: center; line-height: 0; }
.lynx-logo img { width: auto; display: block; }
.lynx-logo .ll-black { display: none; }
html[data-theme="light"] .lynx-logo .ll-white { display: none; }
html[data-theme="light"] .lynx-logo .ll-black { display: block; }
.lynx-logo--nav img { height: 3.75rem; }
.lynx-logo--nav-mobile img { height: 3.25rem; }
.lynx-logo--footer img { height: 4rem; }

/* =========================================
   Shared site nav (used by the property home + photos gallery so the
   nav is byte-identical across pages — no shift/flicker when navigating)
   ========================================= */
.prop-nav {
  background-color: var(--night);
  border-bottom: 1px solid var(--forest);
}
.prop-nav .nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.prop-nav-link {
  color: var(--sage);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 150ms;
}
.prop-nav-link:hover { color: var(--cream); }
.prop-nav-book {
  background-color: var(--copper);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background-color 150ms;
}
.prop-nav-book:hover { background-color: var(--rust); }
/* left cluster (logo [+ back-to-listing on the gallery]) */
.prop-nav-left { display: flex; align-items: center; gap: 1.25rem; }
.prop-nav-back { display: inline-flex; align-items: center; gap: 0.4rem; }
.prop-nav-back svg { width: 1.1rem; height: 1.1rem; }
