:root {
  --bg: #0E0D0B;
  --bg-alt: #14120D;
  --bg-card: #17150F;
  --bg-darker: #080706;
  --text: #EDE6D6;
  --text-dim: rgba(237, 230, 214, .68);
  --text-dimmer: rgba(237, 230, 214, .55);
  --text-faint: rgba(237, 230, 214, .45);
  --gold: #C9A96A;
  --gold-light: #E4CE9C;
  --gold-italic: #D8BE8A;
  --border: rgba(201, 169, 106, .3);
  --border-soft: rgba(237, 230, 214, .16);
  --border-softer: rgba(237, 230, 214, .1);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
::selection { background: var(--gold); color: var(--bg); }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; }
em { font-style: italic; color: var(--gold-italic); }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1300px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.section { padding: clamp(84px, 13vh, 170px) 0; background: var(--bg); }

/* ---- Kicker / rule ---- */
.kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; font-weight: 500; color: var(--gold); }
.kicker--center { justify-content: center; }
.kicker .rule { flex: 0 0 36px; height: 1px; background: var(--gold); }
.hero__content .kicker .rule { flex: 0 0 44px; }

/* ---- Buttons ---- */
.btn { display: inline-block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: 15px 30px; border-radius: 100px; transition: background .35s, color .35s, border-color .35s; }
.btn--lg { padding: 17px 34px; }
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-light); color: var(--bg); }
.btn--ghost { border: 1px solid var(--gold); color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--bg); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 60px);
  background: rgba(14, 13, 11, 0); border-bottom: 1px solid transparent;
  transition: background .5s ease, border-color .5s ease, padding .5s ease;
}
.nav.is-scrolled { background: rgba(14, 13, 11, .86); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom-color: rgba(201, 169, 106, .25); padding-top: 15px; padding-bottom: 15px; }
.nav__logo { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: .18em; text-transform: uppercase; color: var(--text); }
.nav__logo:hover { color: var(--text); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__links a:not(.nav__cta) { color: rgba(237, 230, 214, .75); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; transition: color .3s; }
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__cta { border: 1px solid var(--gold); color: var(--gold); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; padding: 11px 22px; border-radius: 100px; transition: background .35s, color .35s; }
.nav__cta:hover { background: var(--gold); color: var(--bg); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; z-index: 70; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
.mobile-menu { position: fixed; inset: 0; z-index: 55; background: rgba(14,13,11,.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; transform: translateY(-100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { color: var(--text); font-size: 15px; letter-spacing: .2em; text-transform: uppercase; }
.mobile-menu .nav__cta { border: 1px solid var(--gold); color: var(--gold); padding: 12px 28px; border-radius: 100px; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ---- Hero ---- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--bg); }
.hero__bg { position: absolute; inset: -10% 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.14); }
.hero__scrim { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 42%, rgba(14,13,11,.4), rgba(14,13,11,.92)); }
.hero__content { position: absolute; left: 0; right: 0; top: 46%; transform: translateY(-50%); text-align: center; padding: 0 clamp(20px, 4vw, 60px); }
.hero__title { font-size: clamp(3rem, 10vw, 9rem); line-height: .92; letter-spacing: -.015em; font-weight: 300; }
.hero__desc { margin: 24px auto 0; max-width: 48ch; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: rgba(237, 230, 214, .8); font-weight: 300; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.bookbar { position: absolute; left: clamp(20px, 4vw, 60px); right: clamp(20px, 4vw, 60px); bottom: clamp(20px, 3.5vh, 34px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201, 169, 106, .4); border-radius: 100px; background: rgba(14, 13, 11, .55); backdrop-filter: blur(8px); }
.bookbar__field { flex: 1; padding: 17px 26px; text-align: center; border-right: 1px solid rgba(201, 169, 106, .28); }
.bookbar__label { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.bookbar__value { font-size: 14px; color: var(--text); }
.bookbar__cta { background: var(--gold); color: var(--bg); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: 17px 30px; border-radius: 100px; margin: 5px; white-space: nowrap; transition: background .35s; }
.bookbar__cta:hover { background: var(--gold-light); color: var(--bg); }

@media (max-width: 700px) {
  .bookbar { flex-wrap: wrap; border-radius: 20px; }
  .bookbar__field { border-right: none; border-bottom: 1px solid rgba(201,169,106,.2); flex: 1 1 50%; }
}

/* ---- Reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Section head ---- */
.section__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; padding-bottom: clamp(36px, 5vh, 60px); border-bottom: 1px solid var(--border-soft); margin-bottom: clamp(36px, 5vh, 60px); }
.section__head--split { align-items: end; }
.section__head h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.01em; }
.section__note { margin: 0; max-width: 32ch; font-size: 16px; line-height: 1.7; color: var(--text-dim); font-weight: 300; }

.lead { margin: 0 0 30px; font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.22; text-wrap: pretty; }
.body { margin: 0 0 22px; max-width: 56ch; font-size: 18px; line-height: 1.8; color: var(--text-dim); font-weight: 300; }
.signoff { margin: 0; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--text); }
.subhead { margin: 0 0 20px; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; font-family: var(--sans); }
.fact-check { color: var(--gold); cursor: help; }

/* ---- Story ---- */
.story__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.story__media { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/5; background: #1a1813; margin-top: 40px; }
.story__media img { width: 100%; height: 112%; object-fit: cover; transform: translateY(-5%) scale(1.06); will-change: transform; }

@media (max-width: 920px) {
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__media { margin-top: 0; }
}

/* ---- The House ---- */
.house { background: var(--bg); }
.room-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding: clamp(48px, 7vh, 90px) 0; border-bottom: 1px solid var(--border-soft); }
.room-row:last-child { border-bottom: none; padding-bottom: 0; }
.room-row--reverse .room-row__media { order: -1; }
.room-row__num { font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 3.2rem); color: var(--border); line-height: 1; margin-bottom: 10px; }
.room-row__text h3 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 500; margin-bottom: 18px; }
.room-row__text p { margin: 0 0 22px; max-width: 46ch; font-size: 19px; line-height: 1.75; color: var(--text-dim); font-weight: 300; }
.room-row__media { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 7/5; background: #1a1813; }
.room-row__media img { width: 100%; height: 114%; object-fit: cover; transform: translateY(-6%) scale(1.06); will-change: transform; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--border-soft); padding: 7px 13px; border-radius: 100px; }

@media (max-width: 920px) {
  .room-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .room-row--reverse .room-row__media { order: 0; }
}

/* ---- Gallery: mosaic carousel ---- */
/* Arrows sit as real flex siblings of the track (not absolutely overlapping
   the images), so align-items:center gives true vertical centering and the
   gap gives them dedicated breathing room instead of a cramped overlap. */
.mosaic-carousel { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.mosaic-carousel__track {
  flex: 1 1 auto; min-width: 0; display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.mosaic-carousel__track::-webkit-scrollbar { display: none; }
.mosaic-page { flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; grid-auto-flow: dense; }

.mosaic__item { display: block; width: 100%; padding: 0; border: none; background: #1a1813; position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; }
.mosaic__item--tall { grid-row: span 2; aspect-ratio: auto; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.mosaic__item:hover img { transform: scale(1.05); }

.mosaic-carousel__arrow {
  flex: 0 0 auto;
  width: 50px; height: 50px; border-radius: 50%; background: rgba(14, 13, 11, .7);
  border: 1px solid var(--border); color: var(--gold); font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, opacity .3s;
}
.mosaic-carousel__arrow:hover { background: var(--gold); color: var(--bg); }
.mosaic-carousel__arrow.is-disabled { opacity: .3; pointer-events: none; }

@media (max-width: 920px) { .mosaic-page { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 560px) {
  .mosaic-carousel { gap: 10px; }
  .mosaic-carousel__arrow { width: 38px; height: 38px; font-size: 19px; }
}

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,7,6,.96); display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: none; border: 1px solid rgba(201,169,106,.4); color: var(--gold); border-radius: 50%; width: 46px; height: 46px; font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--gold); color: var(--bg); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; font-size: 13px; letter-spacing: .08em; color: var(--text-dimmer); }

@media (max-width: 600px) {
  .lightbox__prev, .lightbox__next { width: 38px; height: 38px; font-size: 18px; }
  .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } .lightbox__close { top: 12px; right: 12px; }
}

/* ---- Chalet / Facts ---- */
.chalet { background: var(--bg-alt); }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--border-soft); margin-bottom: clamp(48px, 7vh, 80px); }
.stat { padding: 34px 16px 30px; border-bottom: 1px solid var(--border-soft); border-right: 1px solid var(--border-soft); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--gold-light); }
.stat__label { margin-top: 10px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dimmer); }

@media (max-width: 920px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.chalet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.sleep-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--border-soft); font-family: var(--serif); font-size: 20px; }
.sleep-row span:last-child { font-family: var(--sans); font-size: 13px; color: var(--text-dimmer); letter-spacing: .04em; align-self: center; }
.sleep-row--last { border-bottom: 1px solid var(--border-soft); }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.amenity-grid div { padding: 14px 0; border-top: 1px solid var(--border-soft); font-size: 14px; color: rgba(237,230,214,.85); font-weight: 300; }
.fine-print { margin: 24px 0 0; font-size: 13px; line-height: 1.7; color: var(--text-dimmer); font-weight: 300; }

@media (max-width: 920px) { .chalet__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---- Location ---- */
.location__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.location__map { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; background: #1a1813; }
.location__map img { width: 100%; height: 112%; object-fit: cover; transform: translateY(-5%) scale(1.06); }
.map-pin { position: absolute; top: 38%; left: 44%; width: 16px; height: 16px; }
.map-pin__dot { position: absolute; inset: 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(14,13,11,.85); }
.map-pin__ring { position: absolute; inset: 0; border-radius: 50%; background: rgba(201,169,106,.5); animation: pulseRing 2.6s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }

.loc-row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--border-soft); font-size: 15px; }
.loc-row span:last-child { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); align-self: center; }
.loc-row--last { border-bottom: 1px solid var(--border-soft); }

@media (max-width: 920px) { .location__grid { grid-template-columns: 1fr; } }

/* ---- Apres & After Hours ---- */
.apres { position: relative; height: clamp(360px, 48vh, 520px); overflow: hidden; background: var(--bg); }
.apres__bg { position: absolute; inset: -12% 0; will-change: transform; }
.apres__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.16); }
.apres__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,13,11,.7), rgba(14,13,11,.45) 45%, rgba(14,13,11,.8)); }
.apres__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 clamp(20px, 4vw, 60px); }
.apres__content .kicker { margin-bottom: 0; }
.apres__title { margin: 22px 0 0; max-width: 20ch; font-size: clamp(2rem, 5vw, 4.6rem); line-height: 1.06; font-weight: 300; }

/* ---- What to Do ---- */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.activity-card { padding: 30px 26px; border: 1px solid var(--border-soft); border-radius: 6px; background: var(--bg-card); }
.activity-card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; }
.activity-card p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text-dim); font-weight: 300; }

.welcome-packet { display: flex; gap: 22px; align-items: flex-start; padding: 30px; border: 1px dashed var(--border); border-radius: 6px; background: repeating-linear-gradient(135deg, rgba(201,169,106,.04) 0 12px, transparent 12px 24px); }
.welcome-packet__icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; border: 1px solid rgba(201,169,106,.5); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); }
.welcome-packet h3 { font-size: 1.3rem; margin-bottom: 8px; }
.welcome-packet p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text-dim); font-weight: 300; max-width: 60ch; }

@media (max-width: 920px) { .activity-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .activity-grid { grid-template-columns: 1fr; } .welcome-packet { flex-direction: column; } }

/* ---- Reserve ---- */
.reserve__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.rate-label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.rate-value { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.rate-value small { font-size: 13px; font-family: var(--sans); color: var(--text-dimmer); }
.rate-value--sm { font-family: var(--sans); font-size: 15px; }
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; max-width: 460px; }
.detail-row > div { padding: 14px 0; border-top: 1px solid var(--border-soft); }

.booking-card { max-width: 420px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: clamp(20px, 2.2vw, 30px); box-shadow: 0 40px 90px -50px rgba(0,0,0,.8); }
.booking-card__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.booking-card__title { font-family: var(--serif); font-size: 24px; color: var(--text); }
.booking-card__rating { font-size: 13px; color: var(--gold); }
#booking-iframe { display: block; margin: 20px auto 0; border-radius: 10px; max-width: 100%; }
.booking-card__foot { margin-top: 18px; display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 12px; color: var(--text-dimmer); font-weight: 300; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #1E8A5B; display: inline-block; }
.license-note { max-width: 420px; margin: 16px auto 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); text-align: center; }

@media (max-width: 920px) { .reserve__grid { grid-template-columns: 1fr; } .detail-row { grid-template-columns: 1fr 1fr; } }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.review-card { padding: 30px 26px; border: 1px solid var(--border-soft); border-radius: 6px; background: var(--bg-card); display: flex; flex-direction: column; }
.review-card__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 14px; }
.review-card p { margin: 0 0 20px; font-family: var(--sans); font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text); flex: 1; }
.review-card__author { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dimmer); }

@media (max-width: 1100px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer { background: var(--bg-darker); color: #EFE9DE; padding: clamp(32px, 5vh, 48px) 0; border-top: 1px solid rgba(201,169,106,.2); }
.footer__bottom { display: flex; justify-content: center; align-items: center; font-size: 12px; letter-spacing: .08em; color: rgba(239,233,222,.45); }
