/* ============================================================
   ALVA ALPINE LUXURY RETREAT — Main Stylesheet
   Color Palette:
     --green:       #50563F  (Sage / Olive)
     --dark-green:  #363A2A  (Deep Forest)
     --black:       #020D10  (Near Black)
     --white:       #FFFFFF
     --cream:       #F2F2DC  (Warm Cream / Light Green from palette)
     --gold:        #B89A6A  (Accent)
     --mid-green:   #9AA57A  (Mid Sage)
============================================================ */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:       #50563F;
  --dark-green:  #363A2A;
  --black:       #020D10;
  --white:       #FFFFFF;
  --cream:       #F2F2DC;
  --cream-dark:  #E8E8CC;
  --gold:        #B89A6A;
  --gold-light:  #CDB38C;
  --mid-green:   #9AA57A;
  --text-body:   #2A2E20;
  --text-muted:  #6B7055;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;

  --section-pad: 120px;
  --container-w: 1240px;
  --radius:      2px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-spacing {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--black);
  color: var(--white);
}

.section--olive {
  background-color: var(--dark-green);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label--light {
  color: var(--gold-light);
}

.br-desktop { display: block; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  opacity: 1;
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn--outline:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--white);
  opacity: 1;
}

.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.18em;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease;
}

.btn--ghost:hover::after {
  background: var(--white);
}

.btn--ghost:hover { opacity: 1; }

.btn--text {
  background: none;
  border: none;
  padding: 0;
  color: var(--dark-green);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease-out);
}

.btn--text:hover {
  gap: 16px;
  opacity: 1;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.65rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===================== LOADER ===================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader__bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
}

.loader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loader__logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--mid-green);
  line-height: 1;
  opacity: 0;
  padding-right: 0.45em; /* compensate letter-spacing on last char */
  animation: loaderFadeIn 0.8s 0.3s var(--ease-out) forwards;
}

.loader__line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loaderLine 0.9s 0.8s var(--ease-out) forwards;
}

.loader__sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: loaderFadeIn 0.6s 1.2s ease forwards;
}

.loader__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
}

.loader__progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loaderProgress 1.8s 0.3s var(--ease-out) forwards;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderLine {
  to { width: 180px; }
}

@keyframes loaderProgress {
  to { width: 100%; }
}

.loader.loader--hidden {
  animation: loaderHide 0.7s 0.2s var(--ease-in) forwards;
  pointer-events: none;
}

@keyframes loaderHide {
  to { opacity: 0; transform: translateY(-8px); }
}

/* ===================== NAVIGATION ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(2, 13, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  transition: padding 0.4s ease;
  gap: 24px;
}

.site-header.scrolled .nav {
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  opacity: 1;
  flex-shrink: 0;
  text-align: center;
}

.nav__logo:hover { opacity: 0.8; }

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--white);
  opacity: 1;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.nav__menu-btn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--gold);
  opacity: 1;
}

.mobile-menu__cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero__img.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,13,16,0.35) 0%,
    rgba(2,13,16,0.1) 40%,
    rgba(2,13,16,0.6) 75%,
    rgba(2,13,16,0.88) 100%
  );
}

.hero__overlay--gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(54,58,42,0.3) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.hero__meta-item i {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero__meta-sep {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 8px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(80,86,63,0.12);
  padding: 36px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 40px;
  text-align: center;
}

.trust-bar__award {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-green);
  letter-spacing: 0.04em;
}

.trust-bar__label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(80,86,63,0.18);
  flex-shrink: 0;
}

/* ===================== PHILOSOPHY ===================== */
.philosophy {
  background: var(--cream);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.philosophy__headline em {
  font-style: italic;
}

.philosophy__body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.philosophy__img-frame {
  position: relative;
  overflow: hidden;
}

.philosophy__img-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.philosophy__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease-out);
}

.philosophy__img-frame:hover .philosophy__img {
  transform: scale(1.03);
}

.philosophy__img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(2,13,16,0.7);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
}

.philosophy__img-caption span {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ===================== EXPERIENCE ===================== */
.experience {
  background: var(--black);
}

.experience__header {
  text-align: center;
  margin-bottom: 72px;
}

.experience__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.01em;
}

.experience__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.experience__card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 44px 36px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.experience__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.experience__card:hover {
  background: rgba(184,154,106,0.05);
  border-color: rgba(184,154,106,0.15);
  transform: translateY(-4px);
}

.experience__card:hover::before {
  transform: scaleX(1);
}

.experience__card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.8;
}

.experience__card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.experience__card-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
}

/* ===================== NUMBERS ===================== */
.numbers {
  background: var(--cream);
  padding: 80px 0;
}

.numbers__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.numbers__item {
  text-align: center;
  padding: 20px 30px;
}

.numbers__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--dark-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.numbers__unit {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  margin-bottom: 12px;
}

.numbers__desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.numbers__divider {
  width: 1px;
  height: 100px;
  background: rgba(80,86,63,0.18);
}

/* ===================== ROOMS ===================== */
.rooms {
  background: var(--cream);
}

.rooms__header {
  text-align: center;
  margin-bottom: 64px;
}

.rooms__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.rooms__headline em {
  font-style: italic;
}

.rooms__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.rooms__showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(2,13,16,0.12);
}

.room-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 380px;
}

.room-card__img-wrap--sm {
  height: 200px;
}

.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.room-card:hover .room-card__img {
  transform: scale(1.04);
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(2,13,16,0.35) 100%);
}

.room-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 600;
}

.room-card__badge--alt {
  background: var(--dark-green);
  color: var(--white);
}

.room-card__content {
  padding: 28px 28px 24px;
  border-top: 1px solid rgba(80,86,63,0.08);
}

.room-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark-green);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.room-card__area {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.room-card__features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.room-card__features li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-card__features li i {
  color: var(--gold);
  font-size: 0.65rem;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(80,86,63,0.1);
}

.room-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.room-card__price-from {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.room-card__price-value {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark-green);
  line-height: 1;
}

.room-card__price-unit {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.rooms__side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rooms__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(80,86,63,0.07);
  border-left: 3px solid var(--gold);
}

.rooms__cta-bar p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===================== WELLNESS ===================== */
.wellness {
  background: var(--dark-green);
}

.wellness__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wellness__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.wellness__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.wellness__body {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 28px;
}

.wellness__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.wellness__list li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 300;
}

.wellness__list li i {
  color: var(--gold);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.wellness__img-stack {
  position: relative;
}

.wellness__img--main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.wellness__img-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  border: 4px solid var(--dark-green);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.wellness__img--small {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-green);
  letter-spacing: 0.01em;
}

.testimonials__headline em {
  font-style: italic;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 2px solid var(--gold);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(2,13,16,0.08);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark-green);
  letter-spacing: 0.06em;
}

.testimonial-card__origin {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(80,86,63,0.25);
  background: transparent;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.testimonials__btn:hover {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.testimonials__dots {
  display: flex;
  gap: 10px;
}

.testimonials__dot {
  width: 6px;
  height: 6px;
  background: rgba(80,86,63,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--black);
}

.faq__header {
  text-align: center;
  margin-bottom: 72px;
}

.faq__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.01em;
}

.faq__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq__item:first-of-type {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq__question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; }

.faq__item[open] .faq__question {
  color: var(--gold-light);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding-bottom: 28px;
}

.faq__answer p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

/* ===================== RESERVATION ===================== */
.reservation {
  position: relative;
  overflow: hidden;
  background: var(--dark-green);
}

.reservation__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reservation__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.4);
}

.reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,13,16,0.88);
}

.reservation .container {
  position: relative;
  z-index: 1;
}

.reservation__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-pad) 0 60px;
}

.reservation__content {
  text-align: center;
  margin-bottom: 56px;
}

.reservation__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.reservation__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.reservation__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

/* Form */
.reservation__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.form__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.form__input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}

.form__input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B89A6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__select option {
  background: var(--black);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 90px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}

.form__privacy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
  margin-top: 6px;
}

/* Success State */
.reservation__success {
  text-align: center;
  padding: 60px 20px;
  color: var(--white);
}

.reservation__success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.reservation__success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.reservation__success p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Direct Contact */
.reservation__direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 40px 0 var(--section-pad);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px;
}

.reservation__direct-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 44px;
}

.reservation__direct-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.reservation__direct-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reservation__direct-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.reservation__direct-value {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

a.reservation__direct-value:hover {
  color: var(--gold-light);
  opacity: 1;
}

.reservation__direct-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
  display: block;
}

.footer__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s ease;
}

.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

.footer__nav-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__nav ul li a:hover {
  color: var(--white);
  opacity: 1;
}

.footer__award-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__award-list li {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p,
.footer__legal {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.footer__legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up      { transform: translateY(40px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  :root { --section-pad: 90px; }

  .nav__links, .nav__cta { display: none; }
  .nav__menu-btn { display: flex; }
  .mobile-menu { display: flex; }

  .nav {
    padding: 22px 24px;
    justify-content: space-between;
  }

  .philosophy__grid,
  .wellness__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .wellness__img-accent {
    display: none;
  }

  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms__showcase {
    grid-template-columns: 1fr;
  }

  .rooms__side-stack {
    flex-direction: row;
  }

  .numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .numbers__divider { display: none; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .container { padding: 0 20px; }

  .hero__content { padding: 0 20px 60px; }
  .hero__scroll-hint { display: none; }

  .hero__headline { font-size: clamp(2.4rem, 8vw, 3rem); }

  .hero__cta-group { flex-direction: column; align-items: flex-start; }

  .hero__meta { flex-direction: column; gap: 8px; }
  .hero__meta-sep { display: none; }

  .trust-bar__inner { gap: 20px 0; }
  .trust-bar__item { padding: 12px 20px; }
  .trust-bar__divider { display: none; }

  .experience__grid { grid-template-columns: 1fr; }

  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .testimonials__track {
    grid-template-columns: 1fr;
  }

  .testimonial-card { display: none; }
  .testimonial-card:first-child { display: block; }

  .form__row { grid-template-columns: 1fr; }

  .reservation__direct {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .reservation__direct-sep { display: none; }
  .reservation__direct-item { padding: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .rooms__cta-bar { flex-direction: column; gap: 14px; text-align: center; }

  .rooms__side-stack { flex-direction: column; }

  .br-desktop { display: none; }

  .philosophy__img { height: 340px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.2rem; }

  .numbers__grid { grid-template-columns: 1fr; }

  .trust-bar__inner { flex-direction: column; }
}
