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

:root {
  --cream: #F8F4EE;
  --warm-white: #FDFAF6;
  --charcoal: #1A1814;
  --deep: #0F0D0A;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #9A7A45;
  --muted: #7A7570;
  --border: rgba(201,169,110,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo img { height: 36px; filter: brightness(0) invert(1); transition: filter 0.4s; }
nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
nav.scrolled .nav-cta { border-color: var(--charcoal); color: var(--charcoal); }
nav.scrolled .nav-cta:hover { background: var(--charcoal); color: white; }
  button.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    appearance: none;
    background: transparent;
    border: none;
    padding: 8px;
    margin: -8px;
  }
  button.nav-hamburger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  button.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: white; transition: background 0.3s; }
  nav.scrolled button.nav-hamburger span { background: var(--charcoal); }

/* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
  }
  #hero:focus {
    outline: none;
  }
  #hero:focus-visible {
    box-shadow: inset 0 0 0 3px var(--gold);
  }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.35) 0%,
    rgba(10,8,5,0.2) 40%,
    rgba(10,8,5,0.65) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 120px; left: 60px; right: 60px;
  max-width: 800px;
  animation: heroIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.hero-eyebrow-chip {
  display: inline-block;
  padding: 11px 20px 11px 18px;
  max-width: 100%;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15, 13, 10, 0.78);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--deep);
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-dark); color: white; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
  .hero-dots {
    position: absolute; bottom: 40px; left: 60px;
    display: flex; gap: 10px;
    align-items: center;
  }
  button.hero-dot {
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 28px;
    height: 2px;
    min-height: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }
  button.hero-dot:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
  }
  button.hero-dot.active {
    background: var(--gold);
    width: 48px;
  }
.hero-scroll {
  position: absolute; bottom: 36px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* ── SECTION SHARED ── */
.section-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content:''; width:30px; height:1px; background:var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }
.section-lead {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--muted); max-width: 580px;
}
.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* ── INTRO / STORY ── */
#story {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.story-visual {
  position: relative;
}
.story-visual img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.story-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 140px; height: 140px;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.story-badge-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.story-badge-text {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  text-align: center; max-width: 80px;
}
.story-text { padding-left: 20px; }
.story-quote {
  font-family: var(--font-display);
  font-size: 22px; font-style: italic;
  font-weight: 300; line-height: 1.6;
  color: var(--charcoal);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.story-cta { margin-top: 44px; }

/* ── STATS BAR ── */
#stats {
  background: var(--charcoal);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal);
  position: relative;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stat-item {
  background: var(--charcoal);
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(201,169,110,0.15);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 54px; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
/* Numeric stats: sans + tabular figures so 1/4/9 don’t read like I/A/g in display serif */
.stat-num-figures {
  font-family: var(--font-body);
  font-weight: 400;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.02em;
}
.stat-num-figures .stat-num-digits {
  letter-spacing: 0.07em;
}
.stat-num-figures .stat-num-suffix {
  font-weight: 300;
  margin-left: 0.06em;
  opacity: 0.88;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── ACCOMMODATIONS ── */
#accommodations {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.acc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.acc-header-right {
  display: flex; flex-direction: column; gap: 12px;
}
.acc-header-right p {
  font-size: 14px; line-height: 1.8; color: var(--muted);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.room-card img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.room-card:hover img { transform: scale(1.06); }
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, rgba(10,8,5,0.1) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.room-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 28px;
}
.room-type {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: white; line-height: 1.2;
  margin-bottom: 8px;
}
.room-desc {
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.room-card:hover .room-desc { max-height: 60px; }

/* ── FEATURES ── */
#features {
  background: var(--cream);
  padding: 120px 60px;
}
.features-inner { max-width: 1300px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 80px; }
.features-header .section-tag { justify-content: center; }
.features-header .section-tag::before { display: none; }
.features-header .section-title { max-width: 500px; margin: 0 auto 20px; }
.features-header .section-lead { margin: 0 auto; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-item {
  background: white;
  padding: 40px 28px;
  transition: background 0.3s;
}
.feature-item:hover { background: var(--charcoal); }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.feature-item:hover .feature-icon { border-color: var(--gold); }
.feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-name {
  font-size: 13px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 8px;
  transition: color 0.3s;
}
.feature-item:hover .feature-name { color: white; }
.feature-desc {
  font-size: 12px; line-height: 1.7;
  color: var(--muted); transition: color 0.3s;
}
.feature-item:hover .feature-desc { color: rgba(255,255,255,0.5); }

/* ── CONTACT (on-page) ── */
#contact {
  padding: 120px 60px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.contact-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
#contact .section-lead strong {
  color: var(--charcoal);
  font-weight: 500;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
  padding-top: 8px;
}
.contact-block-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-hours-lead {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.contact-hours-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.contact-hours-list li span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.contact-details-block .location-contacts {
  margin-top: 0;
}
.contact-address-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}
.contact-address-block strong {
  color: var(--charcoal);
  font-weight: 500;
}
.contact-book-btn {
  margin-top: 28px;
}

/* ── LOCATION ── */
#location {
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.location-map-placeholder {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}
.location-map-placeholder iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}
.location-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.location-tag {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s;
}
.location-tag:hover { border-color: var(--gold); color: var(--gold-dark); }
.location-address {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.location-address p {
  font-size: 14px; line-height: 2;
  color: var(--muted);
}
.location-address strong { color: var(--charcoal); font-weight: 500; }
.location-contacts {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.location-contact a {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--charcoal);
  text-decoration: none; transition: color 0.3s;
}
.location-contact a:hover { color: var(--gold-dark); }
.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ── NEWS ── */
  #highlights {
  background: var(--cream);
  padding: 100px 60px;
}
.news-inner { max-width: 1300px; margin: 0 auto; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.news-card { background: white; overflow: hidden; }
.news-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s; display: block; }
.news-card:hover img { transform: scale(1.04); }
.news-card-body { padding: 28px 24px; }
.news-date { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.news-title { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--charcoal); line-height: 1.4; }

/* ── BOOK CTA ── */
#book-cta {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 500px;
}
#book-cta img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.book-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,5,0.72);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px;
}
.book-cta-overlay .section-tag { justify-content: center; color: var(--gold-light); }
.book-cta-overlay .section-tag::before { background: var(--gold-light); }
.book-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; color: white;
  line-height: 1.15; margin-bottom: 16px;
}
.book-cta-title em { font-style: italic; color: var(--gold-light); }
.book-cta-sub { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 44px; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-brand img { height: 32px; opacity: 0.8; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
  letter-spacing: 0.02em;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-social { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    color: rgba(255,255,255,0.45);
  }
.footer-social a:hover { border-color: var(--gold); }
  .footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.4);
    stroke: rgba(255,255,255,0.4);
    transition: fill 0.3s, stroke 0.3s;
  }
  .footer-social a:hover svg {
    fill: var(--gold);
    stroke: var(--gold);
  }

/* ── BOOK TOUR OVERLAY ── */
.book-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.book-tour-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.book-tour-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.book-tour-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 720px);
  overflow: auto;
  background: var(--warm-white);
  box-shadow: 0 40px 100px rgba(15, 13, 10, 0.35), 0 0 0 1px var(--border);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.book-tour-overlay.is-open .book-tour-dialog {
  transform: translateY(0) scale(1);
}
.book-tour-dialog-inner {
  padding: 44px 40px 36px;
}
.book-tour-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 0;
  z-index: 2;
}
.book-tour-close:hover {
  color: var(--charcoal);
  background: rgba(201, 169, 110, 0.12);
}
.book-tour-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.book-tour-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.book-tour-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.book-tour-lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}
.book-tour-alert {
  font-size: 13px;
  line-height: 1.5;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.book-tour-alert.is-success {
  background: rgba(201, 169, 110, 0.12);
  color: var(--charcoal);
  border-color: var(--gold);
}
.book-tour-alert.is-error {
  background: rgba(120, 40, 40, 0.06);
  color: #5c2a2a;
  border-color: rgba(120, 40, 40, 0.25);
}
.book-tour-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.book-tour-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.book-tour-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-tour-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-tour-input {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: white;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.book-tour-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}
.book-tour-textarea {
  resize: vertical;
  min-height: 88px;
}
.book-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.book-tour-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.book-tour-btn-primary {
  background: var(--gold);
  color: var(--deep);
}
.book-tour-btn-primary:hover:not(:disabled) {
  background: var(--gold-dark);
  color: white;
}
.book-tour-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.book-tour-btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
}
.book-tour-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
@media (max-width: 540px) {
  .book-tour-grid2 {
    grid-template-columns: 1fr;
  }
  .book-tour-dialog-inner {
    padding: 40px 24px 28px;
  }
}

/* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
  position: fixed; bottom: 36px; right: 36px; z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300;
  color: white; text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  #story, #location { padding: 80px 40px; gap: 60px; }
  #contact { padding: 80px 40px; }
    #accommodations, #features, #highlights, footer { padding-left: 40px; padding-right: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
    button.nav-hamburger { display: flex; }
  #story { grid-template-columns: 1fr; }
  .story-text { padding-left: 0; }
  .story-badge { right: 20px; bottom: -20px; width: 110px; height: 110px; }
  .story-badge-num { font-size: 32px; }
  #stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .acc-header { grid-template-columns: 1fr; gap: 30px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .contact-panel { gap: 48px; }
  #location { grid-template-columns: 1fr; padding: 80px 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  nav { padding: 0 24px; }
  .hero-content { left: 24px; right: 24px; bottom: 80px; }
  .hero-eyebrow-chip {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 10px 14px 10px 12px;
  }
  .hero-dots { left: 24px; }
  .hero-scroll { display: none; }
    #story, #accommodations, #features, #contact, #highlights, #location { padding: 64px 24px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; }
  #stats { padding: 40px 24px; }
  .stat-item { padding: 32px 20px; }
    .contact-panel { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 24px 32px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .acc-header { margin-bottom: 40px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--charcoal);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── MOBILE MENU (FOCUSABLE WHEN OPEN) ── */
.mobile-menu {
  visibility: hidden;
}
.mobile-menu.open {
  visibility: visible;
}

/* ── ROOM CARDS: SHOW COPY WITHOUT HOVER (TOUCH) ── */
@media (hover: none) {
  .room-card .room-desc {
    max-height: 80px;
    margin-top: 8px;
  }
}
.room-card:focus-within .room-desc {
  max-height: 80px;
  margin-top: 8px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide img {
    transform: scale(1) !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll-line {
    animation: none !important;
  }
  .book-tour-overlay,
  .book-tour-dialog {
    transition: none !important;
  }
  .book-tour-overlay.is-open .book-tour-dialog {
    transform: none !important;
  }
  .hero-eyebrow-chip {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 13, 10, 0.92);
  }
}
