/* ================================================================
   EGGE 27 — ALPINE LUXE DESIGN SYSTEM
   ================================================================ */

/* Fonts loaded via <link> in HTML to avoid render-blocking @import */

/* ── Smooth Scroll ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --bg:          #F7F4EF;
  --bg-alt:      #EDE9E2;
  --dark:        #1B2A1B;
  --dark-2:      #253525;
  --gold:        #C4955A;
  --gold-dark:   #A87840;
  --gold-light:  #D4AF7A;
  --text:        #1C1C1C;
  --text-soft:   #7A7570;
  --white:       #FFFFFF;
  --border:      rgba(28,28,28,0.08);
  --border-dark: rgba(255,255,255,0.10);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w:       1360px;
  --pad-x:       clamp(20px, 5vw, 80px);
  --section-y:   clamp(80px, 10vw, 140px);
  --radius:      3px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Typography Utilities ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.h-display {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
}
.h-section {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.body-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}
.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ── Sections ───────────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .h-section { color: var(--white); }
.section--dark .body-text { color: rgba(255,255,255,0.65); }
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--white); }

/* ── Divider ────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.divider--center { margin: 28px auto; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  transition: padding 0.45s var(--ease-out), background 0.45s var(--ease-out), box-shadow 0.45s;
}
.nav.is-scrolled {
  padding: 14px var(--pad-x);
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo img {
  height: 44px;
  width: auto;
  transition: filter 0.3s, height 0.45s var(--ease-out);
}
.nav__logo-light { display: none; }
.nav--hero .nav__logo-dark { display: none; }
.nav--hero .nav__logo-light { display: block; height: 85px; width: auto; }
.nav--hero.is-scrolled .nav__logo-dark { display: block; }
.nav--hero.is-scrolled .nav__logo-light { display: none; }

.nav__center {
  display: flex;
  gap: 3px;
}
.nav__lang-btn {
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
}
.nav__lang-btn:hover { color: var(--text); background: var(--border); }
.nav__lang-btn.is-active { color: var(--gold); }
.nav--hero .nav__lang-btn { color: rgba(255,255,255,0.65); }
.nav--hero .nav__lang-btn.is-active { color: var(--gold-light); }
.nav--hero.is-scrolled .nav__lang-btn { color: var(--text-soft); }
.nav--hero.is-scrolled .nav__lang-btn.is-active { color: var(--gold); }

.nav__burger {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
.nav--hero .nav__burger span { background: var(--white); }
.nav--hero.is-scrolled .nav__burger span { background: var(--text); }
.nav--overlay-open .nav__burger span { background: var(--text) !important; }
.nav--overlay-open .nav__lang-btn { color: var(--text-soft) !important; }
.nav--overlay-open .nav__lang-btn.is-active { color: var(--gold) !important; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }

.nav-overlay__links { text-align: center; }
.nav-overlay__links li { overflow: hidden; margin-bottom: 4px; }
.nav-overlay__links a {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.65s var(--ease-out), opacity 0.65s var(--ease-out), color 0.25s;
}
.nav-overlay.is-open .nav-overlay__links a { transform: translateY(0); opacity: 1; }
.nav-overlay__links li:nth-child(1) a { transition-delay: 0.04s; }
.nav-overlay__links li:nth-child(2) a { transition-delay: 0.09s; }
.nav-overlay__links li:nth-child(3) a { transition-delay: 0.14s; }
.nav-overlay__links li:nth-child(4) a { transition-delay: 0.19s; }
.nav-overlay__links li:nth-child(5) a { transition-delay: 0.24s; }
.nav-overlay__links a:hover { color: var(--gold); }

.nav-overlay__contact {
  position: absolute;
  bottom: 48px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.6s 0.35s var(--ease-out);
  text-align: center;
}
.nav-overlay.is-open .nav-overlay__contact { opacity: 1; }

/* ================================================================
   HERO (Homepage)
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../welcomebackground.PNG');
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease-out;
}
.hero__bg.is-loaded { opacity: 0.6; transform: scale(1); }
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.38) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.04) 40%, rgba(0,0,0,0.48) 100%);
}
.hero__content {
  position: relative;
  color: var(--white);
  padding: 0 var(--pad-x);
  max-width: 1000px;
}
.hero__pre {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.4);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.6s, transform 1s 0.6s var(--ease-out);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 11vw, 150px);
  font-weight: 300;
  line-height: 0.92;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 6px rgba(0,0,0,0.3);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 0.85s, transform 1s 0.85s var(--ease-out);
}
.hero__title em { font-style: italic; }
.hero__subtitle {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.4);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 52px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 1.1s, transform 1s 1.1s var(--ease-out);
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 1.3s, transform 1s 1.3s var(--ease-out);
}
.hero.is-ready .hero__pre,
.hero.is-ready .hero__title,
.hero.is-ready .hero__subtitle,
.hero.is-ready .hero__ctas { opacity: 1; transform: translateY(0); }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s 1.8s;
}
.hero.is-ready .hero__scroll { opacity: 1; }
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.4); }
}

.hero__tagline {
  display: none;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.50);
  color: var(--white);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.30);
  border-color: rgba(255,255,255,0.80);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,149,90,0.35);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
.btn--outline-dark {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--outline-dark:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 36px;
  overflow: hidden;
}
.page-hero::before {
  display: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 300;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 24px;
}
.page-hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 480px;
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  background: var(--dark);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 60px 32px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  position: relative;
}
.stats__item:last-child { border-right: none; }
.stats__value {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stats__label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ================================================================
   INTRO SPLIT
   ================================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.intro-split__lead {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}
.intro-split__lead strong { color: var(--gold-dark); font-weight: 600; }
.intro-split__body {
  font-size: 16.5px;
  line-height: 1.82;
  color: var(--text-soft);
}

/* ================================================================
   AMENITIES
   ================================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.amenity-col__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.amenity-col__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  font-size: 14.5px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.amenity-col__list li::before {
  content: '—';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* ================================================================
   LOCATION CARDS
   ================================================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.location-card {
  background: var(--white);
  padding: 44px 36px;
}
.location-card__dist {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.location-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.location-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ================================================================
   DESTINATION CARDS
   ================================================================ */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.destination-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.destination-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.destination-card__icon { font-size: 18px; }
.destination-card__content { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.destination-card__desc { flex: 1; }
.destination-card__link { margin-top: 20px; }
.destination-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.destination-card__desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
}

/* ================================================================
   FLOOR PLAN
   ================================================================ */
.floorplan-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.floorplan-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 110px rgba(0,0,0,0.18);
}
.floorplan-wrap img { width: 100%; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding-top: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  transition: all 0.25s;
}
.filter-btn:hover { border-color: rgba(28,28,28,0.25); color: var(--text); }
.filter-btn.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 36px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 24px 18px;
  font-size: 40px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.lightbox__nav:hover { color: var(--white); }
.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }
.lightbox__info {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ================================================================
   BOOKING
   ================================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.booking-contact {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 44px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.booking-contact__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}
.booking-contact-item {
  margin-bottom: 28px;
}
.booking-contact-item:last-child { margin-bottom: 0; }
.booking-contact-item__label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.booking-contact-item__value {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}
.booking-contact-item__value a:hover { color: var(--gold-light); }

/* Beige variant */
.booking-contact--beige {
  background: var(--bg-alt);
  color: var(--text);
}
.booking-contact--beige .booking-contact__title {
  color: var(--text);
  border-bottom-color: var(--border);
}
.booking-contact--beige .booking-contact-item__label {
  color: var(--gold-dark);
}
.booking-contact--beige .booking-contact-item__value {
  color: var(--text);
}
.booking-contact--beige .booking-contact-item__value a:hover { color: var(--gold-dark); }
.booking-contact--beige div[style*="border-top"] {
  border-top-color: var(--border) !important;
}
.booking-contact--beige div[style*="color:rgba(255,255,255"] {
  color: var(--text-soft) !important;
}

.booking-iframe-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.booking-iframe-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}
.pricing-card {
  background: var(--white);
  padding: 28px 24px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}
.pricing-card__season {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-card__amount,
.pricing-card__unit,
.pricing-card__detail {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-soft);
  white-space: nowrap;
}
.pricing-card__amount {
  margin-bottom: 2px;
}
.pricing-card__unit {
  margin-bottom: 10px;
}
.pricing-card__detail {
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.pricing-card__detail:empty { display: none; }
.pricing-card__unit:empty { display: none; }
.pricing-card__perday {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--text-soft);
  margin-top: auto;
  padding-top: 10px;
}
.pricing-note {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ================================================================
   CONTACT BAND
   ================================================================ */
.contact-band {
  background: var(--dark);
  padding: 64px var(--pad-x);
  text-align: center;
}
.contact-band__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 40px;
}
.contact-band__title em { font-style: italic; color: var(--gold-light); }
.contact-items {
  display: flex;
  gap: 72px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-item__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 8px;
}
.contact-item__value {
  font-size: 19px;
  color: var(--white);
}
.contact-item__value a { transition: color 0.2s; }
.contact-item__value a:hover { color: var(--gold-light); }

/* ================================================================
   GUESTBOOK
   ================================================================ */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.guest-card {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.guest-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 130px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.10;
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.guest-card__text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
}
.guest-card__footer { display: flex; align-items: center; gap: 14px; }
.guest-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.guest-card__name {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}
.guest-card__date { font-size: 12px; color: var(--text-soft); }

/* Guestbook Form */
.guest-form-wrap {
  background: var(--dark-2);
  padding: 80px var(--pad-x);
}
.guest-form {
  max-width: 720px;
  margin: 0 auto;
}
.guest-form__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder { color: rgba(255,255,255,0.28); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}
.form-privacy a { color: var(--gold-light); }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(196,149,90,0.15);
  border: 1px solid rgba(196,149,90,0.3);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 15px;
  margin-top: 16px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}
.footer__main {
  padding: 48px var(--pad-x) 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(0.5);
}
.footer__tagline {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.30);
}
.footer__links-wrap {
  display: flex;
  justify-content: flex-end;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px var(--pad-x);
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

/* ================================================================
   PRIVACY BANNER
   ================================================================ */
.privacy-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(27,42,27,0.97);
  backdrop-filter: blur(8px);
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  flex-wrap: wrap;
}
.privacy-banner.is-visible { transform: translateY(0); }
.privacy-banner.is-hidden { transform: translateY(100%); }
.privacy-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.privacy-banner__text a { color: var(--gold-light); }
.privacy-banner__btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.privacy-banner__btn:hover { background: var(--gold-dark); }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.legal-content a { color: var(--gold-dark); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  transition: color 0.2s;
  margin-bottom: 48px;
}
.back-link:hover { color: var(--text); }

/* ================================================================
   404
   ================================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad-x);
}
.error-page__num {
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 300;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
}
.error-page__text {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 40px;
}
.error-page__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-contact { position: static; }
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--border-dark); }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-bottom: none; }

  .intro-split { grid-template-columns: 1fr; gap: 36px; }
  .amenities-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-grid { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  .footer__main { grid-template-columns: 1fr; text-align: center; }
  .footer__links-wrap { justify-content: center; }
  .footer__links { text-align: center; flex-direction: row; gap: 20px; }
  .footer__logo { display: flex; justify-content: center; }
}

a.book-online-link {
  color: var(--text-soft);
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

@media (max-width: 600px) {
  a.book-online-link {
    color: var(--gold-dark);
    text-decoration: underline;
    pointer-events: auto;
    cursor: pointer;
  }
  .gallery-masonry { grid-template-columns: 1fr; }
  .guest-grid { grid-template-columns: 1fr; }
  .contact-items { flex-direction: column; gap: 36px; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { aspect-ratio: auto; padding: 24px 20px; }
  .hero__tagline { display: none; }
}

/* ── Gallery Loader ───────────────────────────────────────────── */
.gallery-loader {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.gallery-loader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bg-alt);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
