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

:root {
  --cream: #f5f0e8;
  --dark: #1a1a18;
  --mid: #4a4540;
  --gold: #b89a6a;
  --light-gold: #d4b896;
  --white: #fdfcf9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
  gap: 2rem;
}
nav.site-nav.scrolled {
  background: rgba(26,26,24,0.97);
  padding: 0.9rem 3rem;
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--light-gold); }

/* ── HERO (home — full screen) ── */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ── HERO (sub-page — shorter) ── */
.hero-page {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.62) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 820px;
}
.hero-sup {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--light-gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.38);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.85; }
}

.hero-dots {
  position: absolute;
  bottom: 2.2rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--light-gold); }

/* ── STATS STRIP ── */
.stats {
  background: var(--dark);
  padding: 2rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; color: #fff; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  color: var(--light-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

/* ── SECTION BASICS ── */
.section-pad { padding: 7rem 3rem; }
.section-pad-sm { padding: 5rem 3rem; }

.section-sup {
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.8rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--mid);
  max-width: 680px;
}

/* ── INTRO 2-COL ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.intro-image { aspect-ratio: 4/5; overflow: hidden; }
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.intro-image:hover img { transform: scale(1.04); }

/* ── FEATURE CARDS ── */
.cards-section { background: var(--white); padding: 7rem 3rem; }
.cards-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; text-decoration: none; }
.card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.card:hover img { transform: scale(1.06); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: #fff;
}
.card-tag { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--light-gold); margin-bottom: 0.5rem; }
.card-title { font-size: 1.45rem; font-weight: 400; line-height: 1.2; }
.card-title em { font-style: italic; }
.card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.68); margin-top: 0.45rem; line-height: 1.5; }

/* ── FULL-BLEED QUOTE ── */
.full-bleed {
  position: relative;
  height: 82vh;
  min-height: 480px;
  overflow: hidden;
}
.fb-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.fb-slide.active { opacity: 1; }
.full-bleed-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
}
.full-bleed-text { text-align: center; color: #fff; max-width: 720px; padding: 2rem; }
.full-bleed-text blockquote {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-style: italic; line-height: 1.45; margin-bottom: 1.4rem;
}
.full-bleed-text cite { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--light-gold); }
.fb-arrows { position: absolute; bottom: 2rem; right: 3rem; display: flex; gap: 1rem; }
.fb-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.45); background: transparent;
  color: #fff; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.fb-arrow:hover { background: rgba(255,255,255,0.14); }

/* ── SPACES GRID ── */
.spaces-wrap { max-width: 1200px; margin: 0 auto; }
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
  margin-top: 4rem;
}
.space-image { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.4rem; }
.space-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.space-image:hover img { transform: scale(1.04); }
.space-tag { font-size: 0.59rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.space-name { font-size: 1.35rem; font-weight: 400; margin-bottom: 0.65rem; }
.space-name em { font-style: italic; }
.space-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.76; }

/* ── GALLERY SECTION ── */
.gallery-section { background: var(--dark); padding: 6rem 0 4rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; padding: 0 3rem; }
.gallery-header .section-sup { color: var(--light-gold); }
.gallery-header .section-title { color: #fff; margin: 0 auto; }
.gallery-header .section-title em { color: var(--light-gold); }
.gallery-viewer {
  position: relative;
  width: 100%; height: 70vh; min-height: 360px;
  overflow: hidden; background: #000;
  margin-bottom: 1.5rem; cursor: pointer;
}
.gallery-big {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.7s ease;
}
.gallery-big.active { opacity: 1; }
.gallery-prev, .gallery-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.38); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; width: 52px; height: 52px; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.gallery-prev:hover, .gallery-next:hover { background: rgba(0,0,0,0.7); }
.gallery-prev { left: 1.5rem; }
.gallery-next { right: 1.5rem; }
.gallery-counter {
  position: absolute; bottom: 1rem; right: 1.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.68rem;
  letter-spacing: 0.15em; pointer-events: none;
}
.gallery-thumbs {
  display: flex; gap: 5px; overflow-x: auto; padding: 0 3rem 4px;
  scrollbar-width: thin; scrollbar-color: var(--gold) rgba(255,255,255,0.08);
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,0.07); }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold); }
.gallery-thumb {
  flex: 0 0 118px; height: 74px;
  background-size: cover; background-position: center;
  cursor: pointer; opacity: 0.44; transition: opacity 0.3s;
  border: 2px solid transparent;
}
.gallery-thumb.active { opacity: 1; border-color: var(--light-gold); }
.gallery-thumb:hover { opacity: 0.8; }

/* ── AMENITIES ── */
.amenities-section { background: var(--white); padding: 7rem 3rem; }
.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 2rem; margin-top: 4rem; }
.amenity-group h3 {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gold);
}
.amenity-list { list-style: none; }
.amenity-list li {
  font-size: 0.87rem; color: var(--mid); padding: 0.32rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.amenity-list li::before { content: '—'; color: var(--light-gold); font-size: 0.68rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 4rem 3rem 2rem;
  color: rgba(255,255,255,0.58);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem;
}
.footer-logo { font-size: 1.1rem; letter-spacing: 0.26em; text-transform: uppercase; color: #fff; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.48); }
.footer-nav { display: flex; gap: 2.2rem; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--light-gold); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.66rem; flex-wrap: wrap; gap: 1rem;
}
.footer-loc { letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.6rem; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96);
  z-index: 1000; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none; opacity: 0.65;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 52px; height: 52px; cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav.site-nav { padding: 1.1rem 1.5rem; }
  nav.site-nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.62rem; }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .section-pad { padding: 5rem 1.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { aspect-ratio: 4/3; }
  .spaces-grid { grid-template-columns: 1fr; gap: 3rem; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .stats { gap: 2rem; padding: 2rem 1.5rem; }
  .hero-dots { display: none; }
}
@media (max-width: 560px) {
  .amenities-grid { grid-template-columns: 1fr; }
}
