/* =====================================================
   Carmel Reflections — Shared Styles
   ===================================================== */

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

:root {
  --ink: #141210;
  --charcoal: #242220;
  --mid: #5c5854;
  --warm: #f7f4ef;
  --stone: #ede9e2;
  --gold: #c4a35a;
  --gold-dim: #a8894a;
  --border: rgba(196,163,90,0.2);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; }

/* =====================================================
   NAV
   ===================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: all 0.4s ease;
}
/* When the page has a dark hero, nav text starts white. On sub-pages with light hero,
   nav text starts dark. We use the .nav-light modifier on <body> for sub-pages. */
nav.scrolled,
body.nav-light nav {
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.4s;
}
nav.scrolled .nav-logo,
body.nav-light .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-links a,
body.nav-light .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 1px;
}
.nav-cta:hover { background: var(--gold-dim) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
nav.scrolled .nav-toggle,
body.nav-light .nav-toggle { color: var(--ink); }

/* =====================================================
   HERO (homepage)
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.78) 0%, rgba(14,12,10,0.08) 50%, rgba(14,12,10,0.4) 100%),
              url('Exterior1.png') center/cover no-repeat;
}
.hero-content {
  position: relative;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.22,0.6,0.36,1) 0.4s forwards;
}
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem,5.5vw,5.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: #e8d5a8; }
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dim); }

.btn-outline {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-outline-dark {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.3s;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: white; border-color: var(--ink); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s both;
}
.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.35);
  animation: scrollPulse 2.2s infinite;
}

/* =====================================================
   SUB-PAGE HEADER (used on gallery/amenities/etc.)
   ===================================================== */
.page-header {
  padding: 9rem 3rem 4rem;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; }
.page-header p {
  font-size: 0.92rem;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.8;
}

/* =====================================================
   QUICK FACTS
   ===================================================== */
.quick-facts {
  background: var(--ink);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fact {
  flex: 1;
  min-width: 110px;
  max-width: 175px;
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.fact:last-child { border-right: none; }
.fact-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fact-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 8rem 3rem;
}
.stacked-images { position: relative; height: 580px; }
.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 86%;
  object-fit: cover;
  border-radius: 2px;
}
.img-inset {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 50%;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--warm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem,3.5vw,3.2rem);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }
.body-text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 520px;
}
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.stat-item span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* =====================================================
   SLEEPING CALLOUT
   ===================================================== */
.sleeping-callout {
  background: var(--stone);
  padding: 3rem;
  border-top: 1px solid var(--border);
}
.sleeping-callout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sleep-unit {
  background: var(--warm);
  padding: 2rem 1.8rem;
}
.sleep-unit-name {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.sleep-unit-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.sleep-unit-desc {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section {
  background: var(--stone);
  padding: 7rem 3rem;
}
.gallery-section.no-top-padding { padding-top: 4rem; }

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-tabs {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gtab {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--sans);
  white-space: nowrap;
}
.gtab:hover { color: var(--ink); }
.gtab.active { color: var(--gold); border-bottom-color: var(--gold); }

.gallery-panel {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
}
.gallery-panel.active { display: grid; }

.p-exterior   { grid-template-columns: 1.5fr 1fr; grid-template-rows: 260px 260px; gap: 10px; }
.p-exterior .gh { grid-row: 1/3; }
.p-living     { grid-template-columns: repeat(3,1fr); grid-template-rows: 270px 270px; gap: 10px; }
.p-living .gw { grid-column: span 2; }
.p-kitchen    { grid-template-columns: repeat(3,1fr); grid-template-rows: 270px 270px; gap: 10px; }
.p-dining     { grid-template-columns: repeat(3,1fr); grid-template-rows: 280px; gap: 10px; }
.p-bedrooms   { grid-template-columns: repeat(3,1fr); grid-template-rows: 260px 260px 260px; gap: 10px; }
.p-bedrooms .gh { grid-row: 1/3; }
.p-bathrooms  { grid-template-columns: repeat(3,1fr); grid-template-rows: 300px 300px; gap: 10px; }
.p-bathrooms .gw { grid-column: span 2; }
.p-outdoor    { grid-template-columns: repeat(3,1fr); grid-template-rows: 270px 270px; gap: 10px; }
.p-outdoor .gw { grid-column: span 2; }

.g-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.g-item:hover img { transform: scale(1.055); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
}

/* =====================================================
   AMENITIES
   ===================================================== */
.amenities-section { padding: 7rem 3rem; }
.amenities-section.no-top-padding { padding-top: 4rem; }

.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.amenity {
  background: var(--warm);
  padding: 2rem 1.6rem;
  transition: background 0.3s;
}
.amenity:hover { background: var(--stone); }
.amenity-icon { font-size: 1.3rem; margin-bottom: 0.7rem; display: block; }
.amenity-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.amenity-desc {
  font-size: 0.73rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =====================================================
   HIGHLIGHT STRIP
   ===================================================== */
.highlight-strip {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.highlight-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.highlight-strip:hover img { transform: scale(1); }
.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,12,10,0.72) 0%, rgba(14,12,10,0.2) 60%);
  display: flex;
  align-items: center;
  padding: 0 5rem;
}
.highlight-text { max-width: 540px; }
.highlight-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem,3.5vw,3.4rem);
  font-weight: 400;
  color: white;
  line-height: 1.18;
  margin-bottom: 1.2rem;
}
.highlight-text h2 em { font-style: italic; color: #e8d5a8; }
.highlight-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
}

/* =====================================================
   LOCATION
   ===================================================== */
.location-section {
  background: var(--charcoal);
  padding: 7rem 3rem;
}
.location-section.no-top-padding { padding-top: 4rem; }
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-section .section-title { color: white; }
.location-section .body-text { color: rgba(255,255,255,0.55); }
.location-section .eyebrow { color: var(--gold); }
.location-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.location-point {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.location-point::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.map-frame {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(25%) contrast(1.05);
}

/* =====================================================
   RATES
   ===================================================== */
.rates-section {
  background: var(--stone);
  padding: 7rem 3rem;
}
.rates-section.no-top-padding { padding-top: 4rem; }
.rates-inner { max-width: 900px; margin: 0 auto; }
.rates-inner .body-text { margin-bottom: 3.5rem; }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.rate-card {
  background: var(--warm);
  padding: 2.4rem 2rem;
}
.rate-season {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.rate-price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.rate-unit {
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}
.rate-notes { font-size: 0.75rem; color: var(--mid); }
.rate-notes li {
  list-style: none;
  padding: 0.2rem 0;
  display: flex;
  gap: 0.6rem;
}
.rate-notes li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.direct-callout {
  background: var(--ink);
  color: white;
  padding: 1.4rem 2rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.direct-callout p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.direct-callout strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

/* Platform booking buttons (Airbnb / VRBO) */
.platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem;
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
}
.platform-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.platform-btn .platform-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.platform-btn .platform-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.platform-btn .platform-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section {
  background: var(--stone);
  padding: 7rem 3rem;
}
.reviews-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.reviews-inner .section-title { margin-bottom: 0.5rem; }
.reviews-meta {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}
.reviews-meta strong {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.review-card {
  background: var(--warm);
  padding: 2.6rem 2.5rem 2.2rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}
.review-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.review-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.review-attribution strong {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.review-attribution span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (max-width: 960px) {
  .reviews-section { padding: 5rem 1.5rem; }
  .review-card { padding: 2rem 1.6rem 1.8rem; }
  .review-quote { font-size: 1rem; }
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { padding: 7rem 3rem; }
.contact-section.no-top-padding { padding-top: 4rem; }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.cdetail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.cdetail-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 65px;
  flex-shrink: 0;
}
.cdetail-val {
  font-size: 0.85rem;
  color: var(--mid);
}
.cdetail-val a { color: var(--mid); text-decoration: none; }
.cdetail-val a:hover { color: var(--gold); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.fgroup label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
.fgroup input,
.fgroup textarea,
.fgroup select {
  background: var(--stone);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--gold);
  background: var(--warm);
}
.fgroup textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--ink);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--gold); }
.form-note {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 0.8rem;
  text-align: center;
}
.form-success {
  display: none;
  background: #f0f7ee;
  border: 1px solid #a5d6a7;
  border-radius: 2px;
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  color: #2e7d32;
  margin-top: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--ink);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: white;
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,12,10,0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}
.lb-caption {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  opacity: 0.5;
  background: none;
  border: none;
  font-family: var(--serif);
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.8rem 1.1rem;
  transition: background 0.25s;
  border-radius: 1px;
}
.lb-prev { left: 2rem; }
.lb-next { right: 2rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.15); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: .7; transform: scaleY(.6); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s cubic-bezier(.22,.6,.36,1), transform .85s cubic-bezier(.22,.6,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled, body.nav-light nav { padding: .9rem 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(247,244,239,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--mid) !important; }
  .nav-toggle { display: block; }

  .hero { padding: 0 1.5rem 4rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }
  .stacked-images { height: 320px; }
  .sleeping-callout-inner { grid-template-columns: 1fr; }

  .p-exterior, .p-living, .p-kitchen, .p-dining, .p-bedrooms, .p-bathrooms, .p-outdoor {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .p-exterior .gh, .p-bedrooms .gh, .p-living .gw, .p-bathrooms .gw, .p-outdoor .gw {
    grid-row: 1; grid-column: 1;
  }
  .g-item { aspect-ratio: 4/3; }

  .amenities-top { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }

  .highlight-overlay { padding: 0 2rem; }

  .location-inner { grid-template-columns: 1fr; gap: 3rem; }

  .rates-grid { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr; }
  .direct-callout { flex-direction: column; align-items: flex-start; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 1.5rem; text-align: center; }

  .gallery-section, .amenities-section, .location-section, .rates-section, .contact-section {
    padding: 5rem 1.5rem;
  }
  .gallery-section.no-top-padding,
  .amenities-section.no-top-padding,
  .location-section.no-top-padding,
  .rates-section.no-top-padding,
  .contact-section.no-top-padding { padding-top: 2.5rem; }
  .sleeping-callout { padding: 2rem 1.5rem; }
}
