/* ============================================================
   NIGHT & RAIN — Joshua Tree Vacation Rentals
   Brand: Warm Ivory · Sandstone · Charcoal Ink · Midnight Blue · Desert Gold
   Type: Cormorant Garamond (display) · Montserrat (body)
   Immersive, scroll-driven, editorial / boutique-luxury
   ============================================================ */

:root {
  --ivory: #F6F2EA;
  --sand: #DCCBB3;
  --ink: #1F2123;
  --moon-gray: #A7A29B;
  --midnight: #1E2F40;
  --gold: #B79D6B;
  --gold-soft: #cdb789;
  --ink-80: rgba(31, 33, 35, .8);

  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --max: 1240px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(.95rem, .9rem + .2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.04; margin: 0; letter-spacing: .01em; }
.eyebrow {
  font-family: var(--body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.1rem;
}
.lede { font-size: clamp(1rem, .95rem + .4vw, 1.2rem); color: var(--ink-80); max-width: 60ch; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(4.5rem, 11vh, 9rem) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border: 1px solid transparent; cursor: pointer;
  transition: all .4s var(--ease);
}
.btn-solid { background: var(--midnight); color: var(--ivory); }
.btn-solid:hover { background: #16242f; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--ivory); }
.btn-light { background: transparent; color: var(--ivory); border-color: rgba(246,242,234,.55); }
.btn-light:hover { background: var(--ivory); color: var(--midnight); border-color: var(--ivory); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gut);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-top: .9rem; padding-bottom: .9rem;
  box-shadow: 0 1px 0 rgba(31,33,35,.08);
}
.brand { display: block; line-height: 0; position: relative; z-index: 70; }
.brand .logo { height: 50px; width: auto; display: block; }
.brand .logo-dark { display: none; }
.scrolled .brand .logo-light { display: none; }
.scrolled .brand .logo-dark { display: block; }
.nav { display: flex; align-items: center; gap: 1.5rem; white-space: nowrap; }
.nav a { font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory); transition: color .5s var(--ease); }
.scrolled .nav a { color: var(--ink); }
.nav a.nav-cta { border: 1px solid rgba(246,242,234,.5); padding: .6rem 1.2rem; }
.scrolled .nav a.nav-cta { border-color: var(--gold); }
.nav a:hover { color: var(--gold); }
.nav-toggle { display: none; }
/* mobile-only persistent Book button (next to hamburger); hidden on desktop */
.header-cta { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--ivory); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,38,.55) 0%, rgba(20,28,38,.25) 38%, rgba(20,28,38,.75) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 6.4rem); font-weight: 500;
  max-width: 16ch; margin: .5rem 0 1.4rem; text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lede { color: rgba(246,242,234,.92); margin-bottom: 2.4rem; }
.hero .eyebrow { color: var(--gold-soft); }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(246,242,234,.75); display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* twinkle accents over hero */
.stars { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, #fff8, transparent),
    radial-gradient(1.5px 1.5px at 70% 16%, var(--gold-soft), transparent),
    radial-gradient(1px 1px at 42% 30%, #fff7, transparent),
    radial-gradient(1.5px 1.5px at 86% 36%, #fff6, transparent),
    radial-gradient(1px 1px at 30% 12%, #fff7, transparent);
  animation: tw 5s ease-in-out infinite alternate; opacity: .8; }
@keyframes tw { from { opacity: .5; } to { opacity: .95; } }

/* ---------- story ---------- */
.story { text-align: center; }
.story h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 18ch; margin: 0 auto 1.5rem; }
.story .lede { margin: 0 auto; }
.divider-moon { width: 46px; height: 46px; margin: 0 auto 1.6rem; color: var(--gold); }

/* ---------- stays ---------- */
.stays { background: var(--ivory); }
.section-head { max-width: var(--max); margin: 0 auto clamp(2.5rem,5vw,4rem); padding: 0 var(--gut); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.stay {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem); max-width: var(--max); margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gut);
}
.stay:nth-child(even) .stay-media { order: 2; }
.stay-media { position: relative; overflow: hidden; aspect-ratio: 4/3.2; }
.stay-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.stay:hover .stay-media img { transform: scale(1.05); }
.stay-media .tag {
  position: absolute; top: 1rem; left: 1rem; background: color-mix(in srgb, var(--midnight) 85%, transparent);
  color: var(--ivory); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; padding: .5rem .9rem; backdrop-filter: blur(4px);
}
.stay-body .kicker { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.stay-body h3 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: .6rem; }
.stay-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 0 0 1.3rem; padding: 0; list-style: none;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moon-gray); }
.stay-meta li { display: flex; align-items: center; gap: .45rem; }
.stay-body p { color: var(--ink-80); margin: 0 0 1.8rem; max-width: 46ch; }
.stay-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- why ---------- */
.why { background: var(--midnight); color: var(--ivory); position: relative; }
.why .eyebrow { color: var(--gold-soft); }
.why h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 3.5rem; }
.why-item .icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 1.2rem; }
.why-item h3 { font-size: 1.5rem; margin-bottom: .6rem; color: var(--ivory); }
.why-item p { color: rgba(246,242,234,.72); margin: 0; font-size: .95rem; }

/* ---------- area ---------- */
.area { position: relative; min-height: 80svh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.area-media { position: absolute; inset: 0; z-index: 0; }
.area-media img { width: 100%; height: 100%; object-fit: cover; }
.area-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(20,28,38,.85) 100%); }
.area-inner { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vh, 6rem); }
.area h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 16ch; margin-bottom: 1rem; }
.area .lede { color: rgba(246,242,234,.9); }

/* ---------- final CTA + footer ---------- */
.cta { text-align: center; background: var(--sand); }
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); max-width: 16ch; margin: 0 auto 1rem; }
.cta p { color: var(--ink-80); max-width: 48ch; margin: 0 auto 2.2rem; }

/* reviews */
.reviews .section-head { margin-bottom: 2rem; }
.reviews-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; background: var(--ivory); border: 1px solid var(--sand); border-radius: 99px; padding: .4rem; max-width: 460px; margin: 0 auto 2.5rem; }
.rv-tab { flex: 1; border: 0; background: transparent; padding: .7rem 1.2rem; border-radius: 99px; font-family: var(--body); font-size: .82rem; letter-spacing: .04em; color: var(--ink-80); cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease); white-space: nowrap; }
.rv-tab strong { color: var(--gold); font-weight: 600; }
.rv-tab.is-active { background: var(--midnight); color: var(--ivory); }
.rv-tab.is-active strong { color: var(--gold-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: var(--max); margin: 0 auto; }
.rv-card { background: var(--ivory); border: 1px solid var(--sand); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; }
.rv-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.rv-avatar { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--midnight); color: var(--ivory); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.2rem; }
.rv-name { font-weight: 600; font-size: .95rem; color: var(--ink); margin: 0; }
.rv-date { font-size: .78rem; color: var(--moon-gray); margin: .1rem 0 0; }
.rv-stars { color: #f5a623; font-size: .95rem; letter-spacing: .1em; margin-bottom: .7rem; }
.rv-stars .star { color: var(--sand); } .rv-stars .star.on { color: #f5a623; }
.rv-text { color: var(--ink-80); font-size: .92rem; line-height: 1.6; margin: 0 0 .6rem; }
.rv-readmore { align-self: flex-start; border: 0; background: none; padding: 0; color: var(--moon-gray); text-decoration: underline; font-size: .82rem; cursor: pointer; margin-bottom: .8rem; }
.rv-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; border-top: 1px solid var(--sand); }
.rv-badge { font-size: .72rem; font-weight: 600; letter-spacing: .04em; padding: .25rem .6rem; border-radius: 6px; }
.rv-airbnb { background: #fff0f1; color: #e0565f; }
.rv-vrbo { background: #eef3fb; color: #2f6fd0; }
.rv-stay { font-size: .74rem; color: var(--moon-gray); text-align: right; }
.reviews-more { text-align: center; margin-top: 2rem; }

/* lead-capture popup */
.lead-pop { position: fixed; inset: 0; z-index: 10000; background: rgba(10,14,20,.6); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 1.2rem; opacity: 0; transition: opacity .35s var(--ease); }
.lead-pop.in { opacity: 1; }
.lp-card { position: relative; width: min(440px, 100%); background: var(--ivory); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(10,14,20,.4); transform: translateY(14px) scale(.98); transition: transform .35s var(--ease); }
.lead-pop.in .lp-card { transform: none; }
.lp-close { position: absolute; top: .8rem; right: 1rem; width: 34px; height: 34px; border: 0; background: transparent; color: var(--moon-gray); font-size: 1.6rem; line-height: 1; cursor: pointer; z-index: 2; }
.lp-close:hover { color: var(--ink); }
.lp-body, .lp-success { padding: 2.4rem 2rem 2rem; text-align: center; }
.lp-eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 .6rem; }
.lp-card h3 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin: 0 0 .6rem; }
.lp-sub { color: var(--ink-80); font-size: .94rem; line-height: 1.5; margin: 0 auto 1.4rem; max-width: 34ch; }
.lp-form { display: flex; flex-direction: column; gap: .6rem; }
.lp-form input { border: 1px solid var(--sand); border-radius: 9px; background: #fff; padding: .85rem 1rem; font-family: var(--body); font-size: .92rem; color: var(--ink); }
.lp-form input:focus { outline: none; border-color: var(--gold); }
.lp-form .btn { margin-top: .3rem; justify-content: center; }
.lp-error { color: #c0392b; font-size: .8rem; margin: 0; }
.lp-fine { color: var(--moon-gray); font-size: .72rem; margin: .6rem 0 0; }
.lp-code { margin: 0 auto 1.4rem; border: 1px dashed var(--gold); border-radius: 10px; background: #fff; padding: 1rem; font-family: var(--display); font-size: 1.6rem; letter-spacing: .15em; color: var(--ink); }
@media (max-width: 480px) { .lp-body, .lp-success { padding: 2rem 1.3rem 1.6rem; } }
.email-capture { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-capture input { flex: 1 1 220px; border: 1px solid var(--ink); background: transparent; padding: 1rem 1.1rem; font-family: var(--body); font-size: .9rem; color: var(--ink); }
.email-capture input::placeholder { color: var(--moon-gray); }

.site-footer { background: var(--ink); color: var(--ivory); padding: clamp(3.5rem, 8vh, 5.5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-col .contact-line { display: flex; align-items: center; gap: .6rem; }
.footer-col .contact-line svg { width: 15px; height: 15px; flex: none; opacity: .8; }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.1rem; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(246,242,234,.25); border-radius: 50%; color: rgba(246,242,234,.78); padding: 0; transition: border-color .3s var(--ease), color .3s var(--ease); }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-grid .wordmark { color: var(--ivory); display: inline-block; margin-bottom: 1rem; }
.footer-col h4 { font-family: var(--body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.1rem; }
.footer-col a { display: block; color: rgba(246,242,234,.78); font-size: .9rem; padding: .3rem 0; }
.footer-col a:hover { color: var(--gold); }
.footer-fine { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(246,242,234,.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .74rem; color: rgba(246,242,234,.55); letter-spacing: .04em; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; } .reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } .scroll-cue::after, .stars { animation: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
/* nav collapses to hamburger earlier so 5 links + CTA never wrap */
@media (max-width: 1024px) {
  /* blur creates a containing block that traps the fixed nav — remove it on mobile so the drawer fills the screen */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--ivory); }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: var(--midnight); z-index: 65;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem; padding: 2rem;
    box-shadow: -20px 0 60px rgba(10,14,20,.4);
    transform: translateX(100%); transition: transform .45s var(--ease); }
  .nav.open { transform: none; }
  /* persistent Book button beside the hamburger */
  .header-cta { display: inline-flex; align-items: center; margin-left: auto; margin-right: .8rem;
    background: var(--gold); color: var(--midnight); font-family: var(--body); font-size: .68rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; padding: .6rem 1rem; border-radius: 7px; }
  .nav a, .scrolled .nav a { color: var(--ivory); font-size: 1rem; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; z-index: 70; background: none; border: 0; cursor: pointer; padding: 6px; }
  .nav-toggle span { width: 26px; height: 2px; background: var(--ivory); transition: .4s var(--ease); }
  .scrolled .nav-toggle span { background: var(--ink); }
  .nav-toggle.open span { background: var(--ivory); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 860px) {
  .brand .logo { height: 42px; }
  .stay { grid-template-columns: 1fr; gap: 1.5rem; }
  .stay:nth-child(even) .stay-media { order: 0; }
  .stay-media { aspect-ratio: 16/11; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (min-width: 561px) and (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STAY DETAIL PAGES
   ============================================================ */
/* top bar (clears the fixed header) */
.stay-topbar { padding-top: clamp(5.5rem, 9vh, 6.5rem); }
.stay-topbar .back { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--moon-gray); display: inline-block; transition: color .3s var(--ease); }
.stay-topbar .back:hover { color: var(--ink); }

/* photo collage */
.photo-collage { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; aspect-ratio: 2 / 1; margin: 1rem auto 0; border-radius: 16px; overflow: hidden; }
.pc-main, .pc-cell { position: relative; display: block; border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden; background: var(--sand); }
.pc-main { height: 100%; }
.pc-main img, .pc-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter .4s var(--ease), transform .6s var(--ease); }
.pc-main:hover img, .pc-cell:hover img { filter: brightness(1.06); transform: scale(1.02); }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.pc-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: .5rem; background: rgba(20,28,38,.5); color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; transition: background .3s var(--ease); }
.pc-more:hover .pc-overlay { background: rgba(20,28,38,.68); }

/* two-column body */
.stay-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; margin: clamp(2.5rem, 6vh, 4rem) auto; }
.stay-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 0 0 .4rem; }
.stay-loc { color: var(--ink-80); font-size: 1rem; margin: 0 0 1rem; }
.stay-facts { display: flex; flex-wrap: wrap; align-items: center; list-style: none; padding: 0; margin: 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moon-gray); }
.stay-facts li:not(:last-child)::after { content: "·"; margin: 0 .8rem; color: var(--moon-gray); }
.stay-divider { height: 1px; background: var(--sand); margin: 2.2rem 0; }
.stay-section h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 1.1rem; }
.description p { color: var(--ink-80); font-size: 1.06rem; margin: 0 0 1rem; }
.description p:first-child { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.amenities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem 2rem; }
.amenities li { display: flex; align-items: center; gap: .8rem; font-size: 1rem; color: var(--ink); padding: .35rem 0; }
.amenities li::before { content: ""; width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); flex: none; }
.detail-list { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .7rem 1.5rem; font-size: .95rem; max-width: 440px; }
.detail-list dt { color: var(--moon-gray); letter-spacing: .06em; text-transform: uppercase; font-size: .72rem; align-self: center; }
.detail-list dd { margin: 0; color: var(--ink); }

/* sticky booking card */
.booking-rail { position: sticky; top: 96px; }
.booking-card { border: 1px solid var(--sand); border-radius: 16px; padding: 1.4rem 1.4rem 1rem; background: #fff; box-shadow: 0 14px 44px rgba(20,28,38,.1); }
.bc-head { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin: 0 0 .2rem; }
.bc-sub { color: var(--ink-80); font-size: .88rem; margin: 0 0 1rem; }
.booking-card iframe { display: block; width: 100%; min-height: 760px; border: 0; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(10,14,20,.94); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 1.4rem; right: 1.8rem; width: 46px; height: 46px; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.8rem; line-height: 1; border-radius: 50%; cursor: pointer; transition: background .3s var(--ease); }
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; cursor: pointer; transition: background .3s var(--ease); }
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 1.5rem; } .lb-next { right: 1.5rem; }
.lb-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .05em; }

/* other stays */
.more-stays { text-align: center; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; max-width: var(--max); margin-left: auto; margin-right: auto; }
.more-card { position: relative; aspect-ratio: 4/3; overflow: hidden; color: var(--ivory); display: flex; align-items: flex-end; }
.more-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.more-card:hover img { transform: scale(1.06); }
.more-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(20,28,38,.8)); }
.more-card span { position: relative; z-index: 2; padding: 1.2rem; font-family: var(--display); font-size: 1.5rem; }

@media (max-width: 860px) {
  .more-grid { grid-template-columns: 1fr; }
  /* stack: booking card moves up under the photos/title */
  .stay-layout { grid-template-columns: 1fr; gap: 0; }
  .stay-main { order: 2; }
  .booking-rail { order: 1; position: static; margin-bottom: 2.5rem; }
  .photo-collage { aspect-ratio: 3 / 2; }
  .pc-grid { display: none; }
  .photo-collage { grid-template-columns: 1fr; }
  .pc-main::after { content: "View all photos"; position: absolute; bottom: 1rem; right: 1rem; background: rgba(20,28,38,.6); color: #fff; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .5rem .9rem; border-radius: 99px; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: .5rem; } .lb-next { right: .5rem; }
}

/* ============================================================
   MANAGEMENT SERVICES PAGE
   ============================================================ */
.ms-hero { position: relative; min-height: 76svh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.ms-hero .bg { position: absolute; inset: 0; z-index: 0; }
.ms-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.ms-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,38,.55) 0%, rgba(20,28,38,.3) 40%, rgba(20,28,38,.85) 100%); }
.ms-hero .inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 7vh, 5rem); width: 100%; }
.ms-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin: .4rem 0 1rem; }
.ms-hero .lede { font-family: var(--display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); color: rgba(246,242,234,.92); max-width: 46ch; margin: 0 0 1.8rem; }

.ms-prompts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.ms-prompt { background: var(--ivory); border: 1px solid var(--sand); border-radius: 14px; padding: 2.2rem; }
.ms-prompt p:not(.eyebrow) { color: var(--ink-80); margin: 0 0 1.6rem; }

.ms-values { background: var(--sand); }
.ms-values .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.ms-value h3 { font-size: 1.5rem; margin: 0 0 .7rem; }
.ms-value p { color: var(--ink-80); font-size: .98rem; }

.ms-help h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ms-help p { color: var(--ink-80); max-width: 60ch; font-size: 1.06rem; margin: 0 0 1.8rem; }

.ms-options { background: var(--midnight); color: var(--ivory); }
.ms-options .eyebrow { color: var(--gold-soft); }
.ms-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.ms-option { background: rgba(246,242,234,.05); border: 1px solid rgba(246,242,234,.14); border-radius: 14px; padding: 2rem; }
.ms-num { font-family: var(--display); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.ms-option h3 { font-size: 1.4rem; margin: 0 0 .8rem; color: var(--ivory); }
.ms-option p { color: rgba(246,242,234,.78); font-size: .95rem; margin: 0 0 .8rem; }
.ms-option ul { list-style: none; padding: 0; margin: 0; }
.ms-option li { display: flex; gap: .7rem; font-size: .92rem; color: rgba(246,242,234,.82); padding: .4rem 0; }
.ms-option li::before { content: ""; width: 6px; height: 6px; margin-top: .5rem; border: 1px solid var(--gold); transform: rotate(45deg); flex: none; }

.ms-why-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 2.5rem; }
.ms-why-list li { display: flex; align-items: center; gap: .8rem; font-size: 1.02rem; color: var(--ink); padding: .5rem 0; border-bottom: 1px solid var(--sand); }
.ms-why-list li::before { content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex: none; }

.ms-handle { background: var(--ivory); }
.ms-handle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.ms-card { background: #fff; border: 1px solid var(--sand); border-radius: 14px; padding: 2rem; }
.ms-card h3 { font-size: 1.4rem; margin: 0 0 .7rem; }
.ms-card p { color: var(--ink-80); font-size: .95rem; margin: 0; }

.ms-faq-list { max-width: 760px; margin: 2rem auto 0; }
.ms-faq-list details { border-bottom: 1px solid var(--sand); padding: 1.2rem 0; }
.ms-faq-list summary { font-family: var(--display); font-size: 1.3rem; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ms-faq-list summary::-webkit-details-marker { display: none; }
.ms-faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; line-height: 1; }
.ms-faq-list details[open] summary::after { content: "–"; }
.ms-faq-list details p { color: var(--ink-80); margin: 1rem 0 0; font-size: 1rem; max-width: 64ch; }

.ms-contact { background: var(--midnight); color: var(--ivory); text-align: center; }
.ms-contact .eyebrow { color: var(--gold-soft); }
.ms-contact h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ivory); margin: 0 auto .8rem; }
.ms-contact p { color: rgba(246,242,234,.82); max-width: 48ch; margin: 0 auto 2rem; }
.ms-contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light { border: 1px solid rgba(246,242,234,.5); color: var(--ivory); padding: .9rem 1.8rem; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 860px) {
  .ms-prompts, .ms-values .wrap, .ms-options-grid, .ms-handle-grid, .ms-why-list { grid-template-columns: 1fr; }
}

/* ============================================================
   THINGS TO DO PAGE
   ============================================================ */
.td-rows { display: flex; flex-direction: column; gap: clamp(3rem, 8vh, 6rem); }
.td-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.td-row:nth-child(even) .td-media { order: 2; }
.td-media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; background: var(--sand); }
.td-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.td-row:hover .td-media img { transform: scale(1.04); }
.td-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: .3rem 0 .8rem; }
.td-body > p { color: var(--ink-80); font-size: 1.05rem; margin: 0 0 1.2rem; max-width: 46ch; }
.td-list { list-style: none; padding: 0; margin: 0; }
.td-list li { position: relative; padding: .55rem 0 .55rem 1.6rem; color: var(--ink); font-size: 1rem; border-bottom: 1px solid var(--sand); }
.td-list li::before { content: ""; position: absolute; left: 0; top: 1rem; width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); }
.td-list li.td-soft { color: var(--moon-gray); font-style: italic; }
.td-list li.td-soft::before { border-color: var(--moon-gray); }

@media (max-width: 860px) {
  .td-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .td-row:nth-child(even) .td-media { order: 0; }
}

/* ============================================================
   ABOUT PAGE (image hero + overview + facts card + highlights)
   ============================================================ */
.stay-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.stay-hero .bg { position: absolute; inset: 0; z-index: 0; }
.stay-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.stay-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,38,.45) 0%, rgba(20,28,38,.2) 45%, rgba(20,28,38,.82) 100%); }
.stay-hero .inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 7vh, 5rem); width: 100%; }
.stay-hero h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin: .4rem 0 .6rem; }
.stay-hero .tagline { font-family: var(--display); font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: rgba(246,242,234,.92); margin: 0; max-width: 48ch; }

.overview { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.overview .body p { color: var(--ink-80); font-size: 1.08rem; margin: 0 0 1.1rem; }
.overview .body p:first-child { font-family: var(--display); font-size: clamp(1.4rem,2.6vw,1.9rem); line-height: 1.35; color: var(--ink); }
.facts-card { background: var(--ivory); border: 1px solid var(--sand); border-radius: 14px; padding: 1.8rem 2rem; }
.facts-card h3 { font-size: 1.4rem; margin: 0 0 1.2rem; }
.facts-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .7rem 1.2rem; font-size: .92rem; }
.facts-card dt { color: var(--moon-gray); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; align-self: center; }
.facts-card dd { margin: 0; color: var(--ink); text-align: right; }

.highlights { background: var(--midnight); color: var(--ivory); }
.highlights .eyebrow { color: var(--gold-soft); }
.highlights ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem 2rem; }
.highlights li { display: flex; align-items: center; gap: .8rem; font-size: 1rem; padding: .6rem 0; border-bottom: 1px solid rgba(246,242,234,.12); }
.highlights li::before { content: ""; width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg); flex: none; }

@media (max-width: 860px) {
  .overview { grid-template-columns: 1fr; gap: 2rem; }
}
