:root {
  --bg: #f4efe8;
  --surface: #fffaf3;
  --surface-2: #eee3d2;
  --text: #171311;
  --muted: #655b51;
  --line: rgba(29, 21, 14, 0.08);
  --accent: #b8956d;
  --accent-strong: #2f261f;
  --dark: #15110e;
  --max: 1200px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 28px 70px rgba(24, 17, 10, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f2eb 0%, #f2ebe1 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .75rem 1rem; z-index: 1000; }
.sticky-booking-bar {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 60; width: min(calc(100% - 1rem), 500px);
  background: rgba(21, 17, 14, 0.9); color: white; backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: .6rem .7rem .6rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: var(--shadow);
}
.sticky-booking-bar span { font-weight: 700; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(244, 239, 232, 0.78); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 1rem; position: relative; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: .02em; }
.brand-mark { font-size: 1.05rem; }
.nav-links { display: flex; gap: 1.25rem; align-items: center; }
.nav-links a { color: var(--muted); }
.nav-cta { color: var(--accent-strong) !important; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .35rem; flex-direction: column; gap: .28rem; }
.menu-toggle span { width: 1.35rem; height: 2px; background: var(--text); display: block; }
.hero { position: relative; min-height: 94svh; display: grid; align-items: end; overflow: clip; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.04); opacity: 0; transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1.01); }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.34) 38%, rgba(0,0,0,.62) 100%),
    radial-gradient(circle at 78% 22%, rgba(214, 183, 139, .28), transparent 28%);
}
.hero-content {
  position: relative; z-index: 1; color: white; padding: 7.5rem 0 5rem;
  display: grid; grid-template-columns: 1.2fr .75fr; gap: 2rem; align-items: end;
}
.hero-copy { max-width: 48rem; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; }
.hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .96; max-width: 10ch; margin: .4rem 0 1rem; }
.hero .hero-card h2, .section h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; margin: .35rem 0 0; }
.lede { max-width: 43rem; font-size: clamp(1.08rem, 2vw, 1.3rem); color: rgba(255,255,255,.9); }
.glass-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
}
.hero-card p { color: rgba(255,255,255,.86); }
.hero-actions, .hero-card-actions, .booking-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .95rem 1.3rem;
  font-weight: 800; border: 1px solid transparent; transition: .18s ease; min-height: 48px;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(180deg, #fff, #efe2cf); color: var(--accent-strong); }
.button-ghost { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.38); }
.button-outline { background: transparent; color: white; border-color: rgba(255,255,255,.35); }
.button-outline-dark { background: transparent; color: var(--accent-strong); border-color: rgba(47,38,31,.18); }
.button-large { min-width: 180px; }
.button-glow {
  box-shadow: 0 0 0 rgba(255, 231, 198, 0.0), 0 10px 24px rgba(234, 197, 144, 0.22);
  animation: glowPulse 2.8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 231, 198, 0.0), 0 10px 24px rgba(234, 197, 144, 0.18); }
  50% { box-shadow: 0 0 22px rgba(255, 225, 176, 0.32), 0 12px 28px rgba(234, 197, 144, 0.28); }
}
.facts {
  display: flex; gap: .7rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 1.75rem 0 0;
}
.facts li {
  padding: .58rem .88rem; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.section { padding: 5.75rem 0; }
.metrics-section { padding-top: 0; margin-top: -2.2rem; position: relative; z-index: 2; }
.metric-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: rgba(255,255,255,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06); border-radius: 28px; padding: 1.1rem; box-shadow: var(--shadow);
}
.metric-strip article { padding: .75rem 1rem; border-radius: 18px; background: rgba(255,255,255,.5); }
.metric-strip strong { display: block; font-size: 1rem; }
.metric-strip span { color: var(--muted); font-size: .95rem; }
.section-soft { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.section-book { background: linear-gradient(180deg, #e7dac7, #f2e9dc); }
.section-heading, .gallery-header { margin-bottom: 2rem; }
.editorial-grid, .split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: start; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.45rem; box-shadow: var(--shadow); }
.card-note { background: #f9f2e8; }
.section-gallery { background: linear-gradient(180deg, #fbf7f1, #f2ebe1); }
.gallery-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.gallery-controls { display: flex; gap: .75rem; }
.gallery-arrow {
  border: 1px solid rgba(0,0,0,.08); background: rgba(255,255,255,.8); color: var(--accent-strong);
  width: 48px; height: 48px; border-radius: 999px; cursor: pointer; box-shadow: var(--shadow);
}
.gallery-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 34vw); gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: .35rem; scrollbar-width: thin;
}
.gallery-card { position: relative; min-height: 420px; border-radius: 28px; overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow); background: #ddd; }
.gallery-card-large { grid-auto-columns: minmax(360px, 48vw); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.65) 100%); }
.gallery-caption { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; z-index: 1; color: white; }
.gallery-caption strong { display: block; font-size: 1.1rem; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.amenity-card { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.68)); }
.video-frame { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #000; aspect-ratio: 16/9; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.faq-list { display: grid; gap: 1rem; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.1rem; }
summary { cursor: pointer; font-weight: 800; }
.booking-panel { background: rgba(255,255,255,.62); border: 1px solid rgba(0,0,0,.08); border-radius: 30px; padding: 2rem; box-shadow: var(--shadow); }
.booking-panel-elevated { display: grid; gap: 1rem; }
.site-footer { border-top: 1px solid var(--line); padding: 2rem 0 7rem; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-grid > div:last-child { display: flex; gap: 1rem; color: var(--muted); }
@media (max-width: 980px) {
  .hero-content, .editorial-grid, .split, .amenity-grid, .metric-strip { grid-template-columns: 1fr; }
  .hero-content { align-items: start; }
  .gallery-scroller { grid-auto-columns: minmax(280px, 72vw); }
}
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute; right: 0; top: calc(100% + .5rem); min-width: 220px; background: rgba(255,250,243,.98);
    border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: .65rem; display: none; flex-direction: column; align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .55rem .7rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 6.4rem 0 4rem; }
  .hero h1 { max-width: 9ch; font-size: clamp(2.7rem, 12vw, 4.4rem); }
  .sticky-booking-bar { width: calc(100% - 1rem); }
}
@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .container { width: min(calc(100% - 1rem), var(--max)); }
  .metric-strip { padding: .75rem; }
  .gallery-header { flex-direction: column; align-items: start; }
  .gallery-scroller { grid-auto-columns: 86vw; }
  .gallery-card { min-height: 360px; }
  .booking-panel { padding: 1.25rem; border-radius: 22px; }
  .button, .button-large { width: 100%; }
  .sticky-booking-bar .button { width: auto; }
}
