:root {
  --bg-deep: #0d0a0f;
  --bg-primary: #110e16;
  --bg-card: #18131e;
  --bg-card-hover: #1f1828;
  --plum-dark: #1a0f24;
  --plum-mid: #2d1f3d;
  --plum-light: #4a2d5e;
  --plum-accent: #6b3f7a;
  --gold: #c9a84c;
  --gold-light: #dfc06e;
  --gold-dim: #a08030;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.3);
  --text-primary: #f0e6d6;
  --text-secondary: #b8a898;
  --text-muted: #7a6f65;
  --border-subtle: rgba(201, 168, 76, 0.12);
  --border-medium: rgba(201, 168, 76, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(13, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 10px 24px;
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  color: var(--gold);
  transition: var(--transition);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__toggle:hover { background: var(--bg-card); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 10, 15, 0.88) 0%,
    rgba(26, 15, 36, 0.75) 50%,
    rgba(13, 10, 15, 0.85) 100%
  );
}

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

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--accent {
  color: var(--gold);
  font-style: italic;
}

.hero__tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

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

/* ─── STAT CARDS ─── */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(24, 19, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-medium);
  background: rgba(31, 24, 40, 0.9);
  transform: translateX(-4px);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── HERO SCROLL ─── */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-header__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── CABIN SECTION ─── */
.cabin {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cabin__bg-pattern {
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--plum-mid) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

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

.cabin__image {
  position: relative;
}

.cabin__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.cabin__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.cabin__content { padding: 20px 0; }

.cabin__paragraph {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.cabin__highlights {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 400;
}

.highlight__icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── AMENITIES ─── */
.amenities {
  padding: 120px 0;
  position: relative;
}

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

.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.amenity-card:hover::before { opacity: 1; }

.amenity-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: var(--transition);
}

.amenity-card:hover .amenity-card__icon-wrap {
  background: var(--gold-glow-strong);
  border-color: var(--gold);
}

.amenity-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.amenity-card__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── EXPERIENCE ─── */
.experience {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

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

.experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 10, 15, 0.95) 0%,
    rgba(13, 10, 15, 0.80) 50%,
    rgba(13, 10, 15, 0.60) 100%
  );
}

.experience__content {
  position: relative;
  z-index: 1;
}

.experience__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 64px;
  max-width: 600px;
}

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

.exp-card {
  padding: 36px;
  background: rgba(24, 19, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.exp-card:hover {
  border-color: var(--border-medium);
  background: rgba(24, 19, 30, 0.8);
}

.exp-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.exp-card__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── LOCATION ─── */
.location {
  padding: 120px 0;
}

.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location__detail {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.location__detail:first-child { padding-top: 0; }
.location__detail:last-child { border-bottom: none; }

.location__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.location__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.location__detail-value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
}

.location__link {
  transition: var(--transition);
}

.location__link:hover { color: var(--gold); }

.location__map {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.location__visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.location__visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.location__visual-small {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 55%;
  height: 220px !important;
  border: 4px solid var(--bg-deep);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,15,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item--large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery__item:nth-child(2) { grid-column: 8 / span 3; }
.gallery__item:nth-child(3) { grid-column: 11 / span 2; }
.gallery__item:nth-child(4) { grid-column: 8 / span 5; }
.gallery__item:nth-child(5) { grid-column: 3 / span 5; }

/* ─── CTA / CONTACT ─── */
.cta {
  padding: 120px 0;
  position: relative;
}

.cta__bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, var(--plum-dark) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta__contact-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.cta__contact-item:hover { color: var(--gold); }
.cta__contact-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── FORM ─── */
.cta__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.cta__form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form__success.active { display: block; }

.form__success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.form__success-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 360px;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer__link-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer__link-col a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-glow-strong);
  transform: translateY(-2px);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── MOBILE MENU ─── */
.nav__menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 999;
}

.nav__menu.open .nav__link {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.nav__menu.open .nav__link--cta {
  font-size: 1rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card { flex: 1; min-width: 200px; }

  .cabin__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .experience__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .location__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item:nth-child(2) { grid-column: span 1; }
  .gallery__item:nth-child(3) { grid-column: span 1; }
  .gallery__item:nth-child(4) { grid-column: span 1; }
  .gallery__item:nth-child(5) { grid-column: span 2; }

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

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .hero__container {
    padding: 100px 24px 100px;
  }

  .hero__stats {
    flex-direction: column;
  }

  .stat-card { min-width: auto; }

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--large {
    grid-column: span 1;
  }

  .gallery__item:nth-child(n) {
    grid-column: span 1;
  }

  .gallery__item img {
    height: 220px;
  }

  .cta__form-wrap {
    padding: 32px 24px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .location__visual-small {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 16px;
  }

  .location__visual {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

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

  .hero__headline {
    font-size: 3rem;
  }
}
