/* === QUAKER CABINS — DESIGN SYSTEM === */

:root {
  --color-void: #0a0a0b;
  --color-charcoal: #131316;
  --color-slate: #1e1e23;
  --color-stone: #2c2d35;
  --color-mist: #8a8b99;
  --color-silver: #c8c9d4;
  --color-ivory: #f0ede8;
  --color-white: #ffffff;
  --color-gold: #CC5F01;
  --color-gold-light: #E67A22;
  --color-gold-dim: rgba(204, 95, 1, 0.15);
  --color-gold-subtle: rgba(204, 95, 1, 0.06);
  --color-overlay-bottom: rgba(5, 5, 6, 0.85);

  --shadow-gold: 0 0 40px rgba(204, 95, 1, 0.12);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);

  --alpha-white-01: rgba(255,255,255,0.01);
  --alpha-white-015: rgba(255,255,255,0.015);
  --alpha-white-02: rgba(255,255,255,0.02);
  --alpha-white-03: rgba(255,255,255,0.03);
  --alpha-white-04: rgba(255,255,255,0.04);
  --alpha-white-05: rgba(255,255,255,0.05);
  --alpha-white-06: rgba(255,255,255,0.06);
  --alpha-white-08: rgba(255,255,255,0.08);
  --alpha-white-18: rgba(255,255,255,0.18);
  --alpha-white-40: rgba(255,255,255,0.4);

  --alpha-void-30: rgba(5,5,6,0.3);
  --alpha-void-40: rgba(5,5,6,0.4);
  --alpha-void-50: rgba(5,5,6,0.5);
  --alpha-void-60: rgba(5,5,6,0.6);
  --alpha-void-85: rgba(5,5,6,0.85);
  --alpha-void-88: rgba(5,5,6,0.88);
  --alpha-void-95: rgba(10,10,11,0.95);

  --alpha-black-20: rgba(0,0,0,0.2);
  --alpha-black-30: rgba(0,0,0,0.3);
  --alpha-black-40: rgba(0,0,0,0.4);
  --alpha-black-50: rgba(0,0,0,0.5);
  --alpha-black-60: rgba(0,0,0,0.6);
  --alpha-black-55: rgba(0,0,0,0.55);
  --alpha-black-70: rgba(0,0,0,0.7);
  --alpha-black-80: rgba(0,0,0,0.8);
  --alpha-black-90: rgba(0,0,0,0.9);
  --alpha-black-94: rgba(0,0,0,0.94);

  --alpha-gold-02: rgba(204,95,1,0.02);
  --alpha-gold-03: rgba(204,95,1,0.03);
  --alpha-gold-04: rgba(204,95,1,0.04);
  --alpha-gold-05: rgba(204,95,1,0.05);
  --alpha-gold-08: rgba(204,95,1,0.08);
  --alpha-gold-10: rgba(204,95,1,0.1);
  --alpha-gold-12: rgba(204,95,1,0.12);
  --alpha-gold-30: rgba(204,95,1,0.3);
  --alpha-gold-45: rgba(204,95,1,0.45);
  --alpha-gold-90: rgba(204,95,1,0.9);

  --navbar-bg-void: rgba(10, 10, 11, 0.95);
  --navbar-bg-charcoal: rgba(19, 19, 22, 0.95);
  --navbar-bg-slate: rgba(30, 30, 35, 0.95);

  --scroll-top-bg-void: rgba(10, 10, 11, 0.9);
  --scroll-top-bg-charcoal: rgba(19, 19, 22, 0.9);
  --scroll-top-bg-slate: rgba(30, 30, 35, 0.9);

  --hero-scroll-line: linear-gradient(to bottom, rgba(204,95,1,0.9), transparent);

  --faq-bg-dot-1: rgba(204,95,1,0.03);
  --faq-bg-dot-2: rgba(204,95,1,0.02);

  --form-field-bg: rgba(255,255,255,0.03);
  --form-field-border: rgba(255,255,255,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  --navbar-height: 96px;
  --navbar-height-scrolled: 72px;
  --navbar-padding: clamp(1.5rem, 5vw, 5rem);

  --transition-base: 300ms ease;
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --color-void: #f5f5f7;
  --color-charcoal: #ffffff;
  --color-slate: #f0f0f2;
  --color-stone: #e4e4e8;
  --color-mist: #6b6b78;
  --color-silver: #3a3a44;
  --color-ivory: #1a1a22;
  --color-white: #0a0a0b;

  --color-overlay-bottom: rgba(245, 245, 247, 0.85);

  --alpha-white-01: rgba(0,0,0,0.01);
  --alpha-white-015: rgba(0,0,0,0.015);
  --alpha-white-02: rgba(0,0,0,0.02);
  --alpha-white-03: rgba(0,0,0,0.03);
  --alpha-white-04: rgba(0,0,0,0.04);
  --alpha-white-05: rgba(0,0,0,0.05);
  --alpha-white-06: rgba(0,0,0,0.06);
  --alpha-white-08: rgba(0,0,0,0.08);
  --alpha-white-18: rgba(0,0,0,0.18);
  --alpha-white-40: rgba(0,0,0,0.4);

  --alpha-void-30: rgba(245,245,247,0.3);
  --alpha-void-40: rgba(245,245,247,0.4);
  --alpha-void-50: rgba(245,245,247,0.5);
  --alpha-void-60: rgba(245,245,247,0.6);
  --alpha-void-85: rgba(245,245,247,0.85);
  --alpha-void-88: rgba(245,245,247,0.88);
  --alpha-void-95: rgba(245,245,247,0.95);

  --navbar-bg-void: rgba(245, 245, 247, 0.95);
  --navbar-bg-charcoal: rgba(255, 255, 255, 0.95);
  --navbar-bg-slate: rgba(240, 240, 242, 0.95);

  --scroll-top-bg-void: rgba(245, 245, 247, 0.9);
  --scroll-top-bg-charcoal: rgba(255, 255, 255, 0.9);
  --scroll-top-bg-slate: rgba(240, 240, 242, 0.9);

  --hero-scroll-line: linear-gradient(to bottom, rgba(204,95,1,0.9), transparent);

  --faq-bg-dot-1: rgba(204,95,1,0.03);
  --faq-bg-dot-2: rgba(204,95,1,0.02);

  --form-field-bg: rgba(0,0,0,0.03);
  --form-field-border: rgba(0,0,0,0.12);
}

[data-theme="light"] .cabins__card-overlay {
  color: #f0ede8;
}

[data-theme="light"] .hero .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

[data-theme="light"] .hero .btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--alpha-gold-08);
}

[data-theme="light"] .navbar__link {
  color: #1a1a22;
  text-shadow: 0 1px 8px rgba(255,255,255,0.4);
}

[data-theme="light"] .navbar:not(.navbar--scrolled) .navbar__links {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

[data-theme="light"] .navbar--scrolled .navbar__link {
  color: #1a1a22;
  text-shadow: none;
}

[data-theme="light"] .navbar--scrolled .navbar__link:hover {
  color: #0a0a0b;
}

[data-theme="light"] .theme-toggle {
  background: #e8b800;
  color: #ffffff;
}

[data-theme="light"] .theme-toggle:hover {
  background: #f0cc40;
  color: #ffffff;
}

[data-theme="light"] .navbar__cta {
  background: var(--color-gold);
  color: var(--color-void);
  box-shadow: 0 4px 20px rgba(204,95,1,0.25);
}

[data-theme="light"] .navbar__cta:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 28px rgba(230,122,34,0.35);
  color: var(--color-void);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ivory);
  background-color: var(--color-charcoal);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background 400ms ease, color 400ms ease;
}

section[id],
div[id] {
  scroll-margin-top: 100px;
}

/* ── SPLASH ── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.splash__logo {
  height: 160px;
  width: auto;
  opacity: 0;
  animation: splashLogoIn 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.splash__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 240px;
}

.splash__loader-bar {
  height: 3px;
  width: 0%;
  background: var(--color-gold-light);
  border-radius: 2px;
  align-self: flex-start;
  transition: width 100ms linear;
}

.splash__loader-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  font-weight: 500;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  background: linear-gradient(to bottom, var(--alpha-void-50) 0%, transparent 100%);
  transition: height 400ms ease, background 400ms ease;
  padding: 0.75rem 0 0.5rem;
}

.navbar--scrolled {
  backdrop-filter: blur(16px) saturate(180%);
  height: var(--navbar-height-scrolled);
  border-bottom: 1px solid var(--color-gold-dim);
}

.navbar--scrolled.navbar--bg-void     { background: var(--navbar-bg-void); }
.navbar--scrolled.navbar--bg-charcoal { background: var(--navbar-bg-charcoal); }
.navbar--scrolled.navbar--bg-slate   { background: var(--navbar-bg-slate); }

.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--navbar-padding);
  position: relative;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 80px;
  width: auto;
  transition: height 400ms ease;
}

.navbar--scrolled .navbar__logo img {
  height: 56px;
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar:not(.navbar--scrolled) .navbar__links {
  background: var(--alpha-white-04);
  border-radius: 8px;
  padding: 0.4rem 1rem;
}

  .navbar__link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  transition: color 300ms ease;
  text-shadow: 0 1px 6px var(--alpha-black-80);
  font-weight: 500;
}

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

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

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

.navbar__link--active {
  color: var(--color-gold);
}

.navbar__link--active::after {
  transform: scaleX(1);
}

.navbar--scrolled .navbar__link {
  color: var(--color-silver);
  text-shadow: none;
}

.navbar--scrolled .navbar__link:hover {
  color: var(--color-ivory);
}

.navbar--scrolled .navbar__link--active {
  color: var(--color-gold);
}

.navbar__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  margin-left: 0.75rem;
  border: none;
  background: var(--color-gold);
  color: var(--color-void);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 300ms ease;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--alpha-gold-30);
}

.navbar__cta:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 28px var(--alpha-gold-45);
  transform: translateY(-1px);
  color: var(--color-void);
}

/* ── THEME TOGGLE ── */

.theme-toggle {
  background: #5b8def;
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 250ms ease;
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 768px) {
  .theme-toggle {
    border-radius: 8px;
  }
}

.theme-toggle:hover {
  background: #7aa5f5;
  color: #ffffff;
}

.theme-toggle .material-icons {
  font-size: 24px;
}

/* ── NAVBAR HAMBURGER ── */

.navbar__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: var(--alpha-void-30);
  border: none;
  border-radius: 8px;
  padding: 0;
  z-index: 1001;
  margin-left: 0.35rem;
}

.navbar__hamburger .material-icons {
  font-size: 24px;
  color: var(--color-ivory);
}

@keyframes navFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar--loaded .navbar__logo {
  animation: navFadeUp 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar--loaded .navbar__links li {
  animation: navFadeUp 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar--loaded .navbar__links li:nth-child(1) { animation-delay: 0.1s; }
.navbar--loaded .navbar__links li:nth-child(2) { animation-delay: 0.2s; }
.navbar--loaded .navbar__links li:nth-child(3) { animation-delay: 0.3s; }
.navbar--loaded .navbar__cta { animation: navFadeUp 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.4s; }

/* ── SIDENAV ── */
.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  pointer-events: none;
  z-index: 1050;
  transition: background 400ms ease;
}

.sidenav-overlay.is-open {
  background: var(--alpha-black-70);
  pointer-events: all;
}

.sidenav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: var(--color-slate);
  border-left: 1px solid var(--color-gold-dim);
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  box-shadow: -8px 0 32px var(--alpha-black-50);
  overflow: hidden;
}

.sidenav.is-open {
  transform: translateX(0);
}

.sidenav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.sidenav__logo {
  height: 64px;
  width: auto;
}

.sidenav__close {
  background: none;
  border: none;
  color: var(--color-silver);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.sidenav__close .material-icons {
  font-size: 24px;
  color: var(--color-silver);
  transition: color 250ms ease;
}

.sidenav__close:hover .material-icons {
  color: var(--color-gold);
}

.sidenav__divider {
  height: 1px;
  flex-shrink: 0;
  background: var(--color-gold-dim);
}

.sidenav__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.sidenav__link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-ivory);
  text-decoration: none;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--alpha-white-05);
  transition: padding-left 250ms ease, color 250ms ease;
  opacity: 0;
  transform: translateX(16px);
  font-weight: 400;
}

.sidenav__link:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.sidenav__link .material-icons {
  font-size: 20px;
  color: var(--color-gold);
  opacity: 0.7;
}

.sidenav__link:hover .material-icons {
  opacity: 1;
}

.sidenav__link.navbar__link--active {
  color: var(--color-gold);
}

.sidenav.is-open .sidenav__link {
  animation: slideInLink 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sidenav.is-open .sidenav__link:nth-child(1) { animation-delay: 0.1s; }
.sidenav.is-open .sidenav__link:nth-child(2) { animation-delay: 0.2s; }
.sidenav.is-open .sidenav__link:nth-child(3) { animation-delay: 0.3s; }
.sidenav.is-open .sidenav__link:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLink {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.sidenav__cta {
  display: block;
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-void);
  text-align: center;
  padding: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 250ms ease;
  margin-top: auto;
}

.sidenav__cta:hover {
  background: var(--color-gold-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #0a0a0b;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
  animation: heroZoom 14s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 95vw);
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem clamp(3rem, 5vh, 5rem);
  flex: 0 1 auto;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px var(--alpha-black-90);
  font-weight: 600;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 3px 24px var(--alpha-black-80);
  letter-spacing: -0.02em;
}

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

.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #e8e6e0;
  max-width: 640px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 12px var(--alpha-black-80);
  line-height: 1.7;
}

.hero__price {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-gold-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px var(--alpha-black-80);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 1;
  transition: opacity 500ms ease;
}

.hero__scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--hero-scroll-line);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero-animate {
  opacity: 0;
  transform: translateY(18px);
}

.page-loaded .hero-animate {
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 300ms ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-void);
  box-shadow: 0 4px 20px var(--alpha-gold-30);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 28px var(--alpha-gold-45);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid var(--alpha-white-40);
  color: var(--color-white);
  background: var(--alpha-white-05);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--alpha-gold-08);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── SECTION HEADERS (shared pattern) ── */
.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

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

.section__desc {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

/* ── CABINS ── */
.cabins {
  background: var(--color-charcoal);
  padding: clamp(5rem, 12vh, 10rem) var(--navbar-padding);
}

.cabins__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.cabins__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cabins__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.cabins__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-mist);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.cabins__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.cabins__card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  transition: all 400ms ease;
  background: var(--color-slate);
  border: 1px solid var(--alpha-white-04);
}

.cabins__card:hover {
  border-color: var(--color-gold-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cabins__card-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-stone);
}

.cabins__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.cabins__card:hover .cabins__card-image img {
  transform: scale(1.05);
}

.cabins__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alpha-black-55);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 400ms ease;
}

.cabins__card:hover .cabins__card-overlay {
  opacity: 1;
}

.cabins__card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cabins__card-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  opacity: 0.8;
}

.cabins__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 0.4rem;
  line-height: 1.15;
  text-shadow: 0 0 20px var(--alpha-gold-10);
}

.cabins__card-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-mist);
  line-height: 1.6;
  flex: 1;
  font-weight: 300;
}

@media (max-width: 640px) {
  .cabins {
    padding: clamp(3.5rem, 8vh, 5rem) var(--navbar-padding);
  }

  .cabins__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cabins__card-image {
    aspect-ratio: 16 / 10;
  }

  .cabins__card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .cabins__card-body h3 {
    font-size: 1.2rem;
  }
}

/* ── CRAFTSMANSHIP ── */
.crafts {
  background: var(--color-slate);
  padding: clamp(5rem, 12vh, 10rem) var(--navbar-padding);
  position: relative;
  overflow: hidden;
}

.crafts__glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, var(--alpha-gold-05) 0%, transparent 70%);
  pointer-events: none;
}

.crafts__reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.crafts__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.crafts__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vh, 5rem);
}

.crafts__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.crafts__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.08;
  margin-bottom: 1rem;
}

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

.crafts__desc {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats */
.crafts__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto clamp(4rem, 8vh, 6rem);
}

.crafts__stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--alpha-white-02);
  border: 1px solid var(--alpha-white-04);
  border-radius: 4px;
  transition: border-color 400ms ease, background 400ms ease;
  transition-delay: calc(var(--i, 0) * 100ms);
}

.crafts__stat.is-visible {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.crafts__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.crafts__stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: var(--color-gold);
  margin-left: 0.15rem;
}

.crafts__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Showcase */
.crafts__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto clamp(4rem, 8vh, 6rem);
  align-items: center;
}

.crafts__showcase-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--color-ivory);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.crafts__showcase-text h3 em {
  font-style: italic;
  color: var(--color-gold-light);
  font-weight: 300;
}

.crafts__showcase-text p {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.crafts__values {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.crafts__values li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.crafts__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.crafts__value-icon .material-icons {
  font-size: 16px;
  color: var(--color-gold);
}

.crafts__showcase-image {
  position: relative;
}

.crafts__showcase-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.crafts__image-border {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--color-gold-dim);
  border-radius: 4px;
  z-index: 0;
}

.crafts__showcase-image.is-visible img {
  animation: craftsImgReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes craftsImgReveal {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* Process */
.crafts__process {
  max-width: 1000px;
  margin: 0 auto;
}

.crafts__process-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--color-ivory);
  text-align: center;
  margin-bottom: 2.5rem;
}

.crafts__process-title em {
  font-style: italic;
  color: var(--color-gold-light);
  font-weight: 300;
}

.crafts__process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.crafts__step {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--alpha-white-04);
  border-radius: 4px;
  background: var(--alpha-white-01);
  transition: all 500ms ease;
  transition-delay: calc(var(--i, 0) * 120ms);
}

.crafts__step.is-visible {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
  transform: translateY(-3px);
}

.crafts__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--alpha-gold-12);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.crafts__step.is-visible .crafts__step-num {
  color: var(--color-gold);
  transition: color 600ms ease;
  transition-delay: 300ms;
}

.crafts__step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: 0.5rem;
}

.crafts__step p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-mist);
  line-height: 1.6;
  font-weight: 300;
}

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

  .crafts__showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .crafts__process-steps {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ── */
.faq {
  background: var(--color-charcoal);
  padding: clamp(5rem, 10vh, 8rem) var(--navbar-padding);
  position: relative;
  border-bottom: 1px solid var(--color-gold-dim);
}

.faq__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, var(--alpha-gold-03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--alpha-gold-02) 0%, transparent 50%);
  pointer-events: none;
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

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

.faq__desc {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

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

.faq__item {
  border: 1px solid var(--alpha-white-05);
  border-radius: 4px;
  background: var(--alpha-white-015);
  overflow: hidden;
  transition: border-color 400ms ease, background 400ms ease;
}

.faq__item.is-open {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ivory);
  text-align: left;
  line-height: 1.4;
}

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

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-dim);
  border-radius: 50%;
  transition: transform 400ms ease, background 400ms ease, border-color 400ms ease;
}

.faq__icon .material-icons {
  font-size: 18px;
  color: var(--color-gold);
}

.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--alpha-gold-10);
  border-color: var(--color-gold);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-mist);
  line-height: 1.7;
  font-weight: 300;
}

.is-open .faq__answer-inner {
  padding-bottom: 1.5rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--color-slate);
  padding: clamp(5rem, 10vh, 8rem) var(--navbar-padding);
  border-bottom: 1px solid var(--color-gold-dim);
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

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

.contact__desc {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

.contact__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact__field {
  position: relative;
}

.contact__field label {
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-mist);
  font-weight: 400;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left top;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  background: var(--form-field-bg);
  border: 1px solid var(--form-field-border);
  border-radius: 4px;
  padding: 1.3rem 1rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-ivory);
  outline: none;
  width: 100%;
  transition: border-color 300ms ease, background 300ms ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: transparent;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--color-gold);
  background: var(--color-gold-subtle);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CC5F01' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact__field select option {
  background: var(--color-charcoal);
  color: var(--color-ivory);
}

.contact__field:focus-within label,
.contact__field input:not(:placeholder-shown) + label,
.contact__field textarea:not(:placeholder-shown) + label,
.contact__field.is-floating label {
  top: 0.35rem;
  font-size: 0.6rem;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

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

.contact__privacy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-mist);
  line-height: 1.5;
  font-weight: 300;
}

.contact__submit {
  align-self: flex-start;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--color-void);
}

.footer__main {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 4rem) var(--navbar-padding) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer__brand p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-mist);
  line-height: 1.7;
  font-weight: 300;
  margin: 1rem 0;
}

.footer__logo {
  height: 50px;
  width: auto;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.footer__tagline .material-icons {
  font-size: 1rem;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: 1rem;
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-mist);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color 300ms ease;
  font-weight: 300;
}

.footer__links a .material-icons {
  font-size: 1rem;
  color: var(--color-gold);
  opacity: 0.5;
}

.footer__links a:hover {
  color: var(--color-ivory);
}

.footer__contact ul li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-mist);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-weight: 300;
  line-height: 1.5;
}

.footer__contact a {
  color: inherit;
  text-decoration: none;
}

.footer__contact a:hover {
  color: var(--color-gold-light);
}

.footer__contact .material-icons {
  font-size: 1rem;
  color: var(--color-gold);
  opacity: 0.6;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid var(--alpha-white-04);
  padding: 1.5rem var(--navbar-padding);
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-mist);
  font-weight: 300;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__content {
    width: 100%;
    padding: 0 1.5rem;
    padding-bottom: clamp(4rem, 10vh, 6rem);
    margin: 0;
    justify-content: flex-end;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    margin-bottom: 0.75rem;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero__price {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 0.5rem;
  }

  .hero__sub {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero__ctas .btn {
    flex: 1;
    min-width: 130px;
    max-width: 200px;
    padding: 0.8rem 1.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   LUNA PAGE — COMPONENTES EXCLUSIVOS
   ═══════════════════════════════════════════════════ */

/* ── LUNA HERO OVERRIDES ── */
.hero--luna .hero__content {
  padding-bottom: clamp(5rem, 12vh, 8rem);
}

.hero--luna .hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.hero--luna .hero__sub {
  max-width: 620px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}

@media (min-width: 1200px) {
  .hero--luna .hero__content {
    width: min(1000px, 92vw);
  }
}

/* ── STATS BAR ── */
.luna-stats {
  background: var(--color-slate);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--alpha-white-04);
}

.luna-stat {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--alpha-white-04);
}

.luna-stat:last-child { border-right: none; }

@media (max-width: 768px) {
  .luna-stat { flex: 1 1 45%; max-width: none; border-right: none; }
  .luna-stat:nth-child(odd) { border-right: 1px solid var(--alpha-white-04); }
}

@media (max-width: 480px) {
  .luna-stat { flex: 1 1 45%; max-width: none; border-right: none; }
  .luna-stat:nth-child(odd) { border-right: 1px solid var(--alpha-white-04); }
}

.luna-stat__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
}

.luna-stat__label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 0.4rem;
  display: block;
  font-weight: 500;
}

/* ── LUNA SECTIONS ── */
.luna-section {
  padding: clamp(4rem, 8vh, 7rem) var(--navbar-padding);
}

.luna-section--alt {
  background: var(--color-slate);
}

.luna-section--dark {
  background: var(--color-charcoal);
}

.luna-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.luna-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.luna-about__image {
  position: relative;
}

.luna-about__image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.luna-about__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-slate);
  border: 1px solid var(--color-gold-dim);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.luna-about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.luna-about__badge span {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 0.25rem;
  display: block;
}

.luna-about__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.luna-about__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.luna-about__bullets li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.luna-about__bullets li .material-icons {
  font-size: 1rem;
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .luna-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .luna-about__badge { bottom: 0.75rem; right: 0.75rem; }
  .luna-about__badge strong { font-size: 1.3rem; }
  .luna-about__image img { height: 320px; }
  .luna-about__bullets { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .luna-about__image img { height: 240px; }
}

/* ── USE CASES ── */
.luna-use__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.luna-use__card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--alpha-white-05);
  border-radius: 4px;
  background: var(--alpha-white-015);
  transition: all 400ms ease;
}

.luna-use__card:hover {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
  transform: translateY(-3px);
}

.luna-use__card .material-icons {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) scale(1);
  font-size: 4.5rem;
  color: var(--color-gold);
  opacity: 0.06;
  pointer-events: none;
  transition: transform 500ms ease, opacity 500ms ease;
  z-index: 0;
}

.luna-use__card:hover .material-icons {
  opacity: 0.15;
  transform: translateY(-50%) scale(1.15);
}

.luna-use__card h3,
.luna-use__card p {
  position: relative;
  z-index: 1;
}

.luna-use__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: 0.4rem;
}

.luna-use__card p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-mist);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 768px) {
  .luna-use__grid { grid-template-columns: 1fr; }
}

/* ── GALLERY ── */
.luna-gallery {
  padding: clamp(4rem, 8vh, 7rem) var(--navbar-padding);
  background: var(--color-charcoal);
}

.luna-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.luna-gallery__item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-landscape {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-portrait {
  grid-column: span 1;
  grid-row: span 2;
}

.luna-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 400ms ease;
  display: block;
}

.luna-gallery__item:hover img {
  transform: scale(1.07);
  filter: brightness(0.75);
}

.luna-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: var(--alpha-black-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease, background 400ms ease;
  gap: 0.4rem;
}

.luna-gallery__item:hover .luna-gallery__item-overlay {
  opacity: 1;
  background: var(--alpha-black-40);
}

.luna-gallery__item-overlay .material-icons {
  font-size: 2rem;
  color: var(--color-ivory);
  text-shadow: 0 2px 12px var(--alpha-black-60);
  transition: transform 400ms ease;
}

.luna-gallery__item:hover .luna-gallery__item-overlay .material-icons {
  transform: scale(1.15);
}

.luna-gallery__item-overlay span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ivory);
  opacity: 0.7;
}

.luna-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 400ms ease;
  pointer-events: none;
}

.luna-gallery__item:hover::after {
  border-color: var(--alpha-gold-30);
}

@media (max-width: 768px) {
  .luna-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-landscape {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-portrait {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .luna-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-landscape,
  .gallery-portrait {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ── TURNKEY ── */
.luna-turnkey {
  text-align: center;
  background: var(--color-slate);
  padding: clamp(3.5rem, 7vh, 5rem) var(--navbar-padding);
  border-bottom: 1px solid var(--alpha-white-04);
}

.luna-turnkey__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.luna-turnkey__desc {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.luna-turnkey__inner {
  max-width: 1100px;
}

.luna-turnkey__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}

.luna-turnkey__card {
  background: var(--alpha-white-02);
  border: 1px solid var(--alpha-white-06);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  transition: border-color 400ms ease, background 400ms ease;
}

.luna-turnkey__card:hover {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.luna-turnkey__card-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--alpha-white-06);
}

.luna-turnkey__card-title .material-icons {
  font-size: 1.15rem;
  color: var(--color-gold-light);
}

.luna-turnkey__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.luna-turnkey__card-list li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-silver);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-weight: 300;
  line-height: 1.4;
}

.luna-turnkey__card-list li .material-icons {
  font-size: 0.9rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .luna-turnkey__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .luna-turnkey__cards {
    grid-template-columns: 1fr;
  }
}

.luna-turnkey__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-dim);
  border-radius: 4px;
  padding: 0.75rem 1.25rem;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.luna-turnkey__badge .material-icons {
  font-size: 1.1rem;
  color: var(--color-gold);
}


/* ── TECH SPECS ── */
.luna-techspecs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.luna-techspecs__category {
  background: var(--alpha-white-02);
  border: 1px solid var(--alpha-white-08);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.75rem;
  transition: border-color 400ms ease, background 400ms ease;
}

.luna-techspecs__category:hover {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.luna-techspecs__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--alpha-white-08);
}

.luna-techspecs__heading .material-icons {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.luna-techspecs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.luna-techspecs__list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-silver);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.luna-techspecs__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .luna-techspecs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .luna-techspecs__category {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* ── COMPARE (Choose Your Luna) ── */
.luna-compare__header-group {
  text-align: center;
}

.luna-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 860px;
}

.luna-compare__card {
  background: var(--alpha-white-02);
  border: 1px solid var(--alpha-white-06);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 400ms ease, background 400ms ease;
}

.luna-compare__card:hover {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.luna-compare__card--premium {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
  position: relative;
}

.luna-compare__card--premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 6px 6px 0 0;
}

.luna-compare__header {
  margin-bottom: 1.5rem;
}

.luna-compare__eyebrow {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.luna-compare__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-ivory);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.luna-compare__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-gold-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 250ms ease;
  font-weight: 500;
}

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

.luna-compare__link .material-icons {
  font-size: 1rem;
}

.luna-compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.luna-compare__list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-silver);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.luna-compare__list li .material-icons {
  font-size: 1rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.luna-compare__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.luna-compare__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
  background: var(--alpha-gold-10);
  border: 1px solid var(--color-gold-dim);
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  align-self: flex-start;
}

.luna-compare__card-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.luna-compare__btn {
  align-self: flex-start;
}

.luna-compare__note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-mist);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}

.luna-compare__disclaimer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-mist);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .luna-compare {
    grid-template-columns: 1fr;
  }

  .luna-compare__card {
    padding: 1.5rem 1.25rem;
  }
}

/* ── PREMIUM PACKAGE CARD ── */
.pkg-card {
  background: var(--alpha-white-02);
  border: 1px solid var(--alpha-white-06);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 400ms ease, background 400ms ease;
}

.pkg-card:hover {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
}

.pkg-card-premium {
  border-color: var(--color-gold-dim);
  background: var(--color-gold-subtle);
  position: relative;
}

.pkg-card-premium::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 6px 6px 0 0;
}

.pkg-avail-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  font-weight: 600;
  background: var(--alpha-gold-10);
  border: 1px solid var(--color-gold-dim);
  border-radius: 4px;
  padding: 0.3rem 0.65rem;
  margin: 0;
}

.pkg-card-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.pkg-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-ivory);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pkg-card-name-gold {
  color: var(--color-gold-light);
}

.pkg-ask-price {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.pkg-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  flex: 1;
}

.pkg-feat-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-silver);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.pkg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.pkg-dot-prem {
  background: var(--color-gold);
}

.pkg-blur {
  filter: blur(3px);
  user-select: none;
  pointer-events: none;
}

.pkg-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-void);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--alpha-gold-30);
  transition: all 300ms ease;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.pkg-cta-btn:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 28px var(--alpha-gold-45);
  transform: translateY(-1px);
}

.pkg-cta-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-mist);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  margin-top: 1rem;
}

/* ── LIGHTBOX ── */
.luna-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--alpha-black-94);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.luna-lightbox.active {
  display: flex;
}

.luna-lightbox img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.luna-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--color-ivory);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 300ms ease;
  line-height: 1;
  background: none;
  border: none;
  z-index: 2;
}

.luna-lightbox__close:hover { opacity: 1; }

.luna-lightbox__nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 2;
}

.luna-lightbox__prev,
.luna-lightbox__next {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  background: #f0ede8;
  border: none;
  color: #1a1a22;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms ease;
  flex-shrink: 0;
}

.luna-lightbox__prev:hover,
.luna-lightbox__next:hover {
  background: #ffffff;
}

.luna-lightbox__counter {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-mist);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ── HERO SLIDESHOW ── */
.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
}

.hero__slide--active {
  opacity: 1;
}

/* ── LUNA FADE (scroll reveal) ── */
.luna-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.luna-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.luna-fade--d1 { transition-delay: 0.1s; }
.luna-fade--d2 { transition-delay: 0.2s; }
.luna-fade--d3 { transition-delay: 0.3s; }
.luna-fade--d4 { transition-delay: 0.4s; }
.luna-fade--d5 { transition-delay: 0.5s; }

/* ── VIDEO ── */
.luna-video__wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--alpha-black-50);
}

.luna-video__wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.luna-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── SCROLL PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 5000;
  pointer-events: none;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width 50ms linear;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease;
  box-shadow: 0 4px 16px var(--alpha-black-30);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.scroll-top .material-icons {
  font-size: 22px;
}

.scroll-top--bg-void {
  background: var(--scroll-top-bg-void);
  border-color: var(--color-gold-dim);
  color: var(--color-ivory);
}

.scroll-top--bg-charcoal {
  background: var(--scroll-top-bg-charcoal);
  border-color: var(--color-gold-dim);
  color: var(--color-ivory);
}

.scroll-top--bg-slate {
  background: var(--scroll-top-bg-slate);
  border-color: var(--color-gold-dim);
  color: var(--color-ivory);
}

.scroll-top:hover .material-icons {
  color: var(--color-gold-light);
}

/* ── FACEBOOK SHARE ── */

.share-fb {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  box-shadow: 0 4px 16px var(--alpha-black-30);
  background: #1877F2;
  color: #fff;
}

.share-fb.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.share-fb:hover {
  transform: translateY(-2px);
  background: #166FE5;
}

.share-fb .material-icons {
  font-size: 22px;
}

#shareTwitter {
  bottom: 9rem;
  background: #000;
}
#shareTwitter:hover {
  background: #222;
}
#shareTwitter svg {
  display: block;
}

/* ── COOKIE BANNER ── */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-void);
  border-top: 1px solid var(--alpha-white-06);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 24px var(--alpha-black-40);
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar__text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-mist);
  line-height: 1.5;
  flex: 1;
}

.cookie-bar__text a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 250ms ease;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn--accept {
  background: var(--color-gold);
  color: var(--color-void);
}

.cookie-btn--reject {
  background: var(--alpha-white-08);
  color: var(--color-silver);
}

@media (max-width: 480px) {
  .cookie-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ── PRIVACY ── */
.hero--privacy {
  height: 70dvh;
  min-height: 400px;
}

.hero--privacy .hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.hero--privacy .hero__sub {
  max-width: 620px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--color-mist);
}

.hero--privacy .hero__content {
  padding-bottom: clamp(4rem, 10vh, 6rem);
}

.hero--privacy .hero__ctas .btn .material-icons {
  font-size: 1rem;
}

.hero__privacy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, var(--alpha-gold-04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, var(--alpha-gold-02) 0%, transparent 50%);
  pointer-events: none;
}

.privacy__section {
  max-width: 800px;
  margin: 0 auto;
}

.privacy__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.privacy__text strong {
  color: var(--color-ivory);
  font-weight: 500;
}

.privacy__text a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color 250ms ease;
}

.privacy__text a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.privacy__subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--alpha-white-06);
  font-weight: 600;
}

.privacy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.privacy__list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 300;
}

.privacy__list li .material-icons {
  font-size: 1rem;
  color: var(--color-gold);
  opacity: 0.6;
}

/* ── LANDSCAPE / SHORT VIEWPORT FIXES ── */

/* Short viewport: mobile & tablet landscape */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    justify-content: center;
    height: auto;
    min-height: 100dvh;
    padding: 3.5rem 0 1.5rem;
  }

  .hero__content {
    padding-bottom: 1.5rem;
  }

  .hero__eyebrow {
    font-size: 0.55rem;
    margin-bottom: 0.35rem;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }

  .hero__price {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 0.4rem;
  }

  .hero__sub {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    max-width: 400px;
    line-height: 1.5;
  }

  .hero__ctas {
    gap: 0.5rem;
  }

  .hero__ctas .btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.55rem;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* Medium viewport: tablet landscape */
@media (orientation: landscape) and (min-height: 601px) and (max-height: 800px) {
  .hero__headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .hero__content {
    padding-bottom: clamp(2rem, 4vh, 3rem);
  }

  .hero__sub {
    margin-bottom: 1rem;
  }
}

/* Always apply in landscape: reduce hero padding-bottom on detail pages */
@media (orientation: landscape) {
  .hero--luna .hero__content,
  .hero--privacy .hero__content {
    padding-bottom: clamp(2rem, 4vh, 3rem);
  }

  /* Reduce vertical padding across all sections in landscape */
  .luna-section {
    padding: clamp(2.5rem, 5vh, 4rem) var(--navbar-padding);
  }

  .luna-turnkey {
    padding: clamp(2rem, 4vh, 3.5rem) var(--navbar-padding);
  }

  .faq {
    padding: clamp(2.5rem, 5vh, 4rem) var(--navbar-padding);
  }

  .contact {
    padding: clamp(2.5rem, 5vh, 4rem) var(--navbar-padding);
  }

  .footer {
    padding: clamp(2rem, 4vh, 3.5rem) var(--navbar-padding);
  }

  .cabins {
    padding: clamp(2.5rem, 5vh, 4rem) var(--navbar-padding);
  }

  .craftsmanship {
    padding: clamp(2.5rem, 5vh, 4rem) var(--navbar-padding);
  }

  /* About section: keep 2-column but reduce gaps */
  .luna-about__grid {
    gap: 2rem;
  }

  .luna-about__image img {
    height: 320px;
  }
}

/* Short viewport: reduce more aggressively */
@media (orientation: landscape) and (max-height: 600px) {
  .luna-about__grid {
    gap: 1.5rem;
  }

  .luna-about__image img {
    height: 220px;
  }

  .luna-about__bullets {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .luna-gallery__grid {
    grid-auto-rows: 160px;
  }

  .luna-turnkey__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ── TABLET PORTRAIT (768px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero: narrower content width for tablet */
  .hero__content {
    width: min(780px, 92vw);
  }

  .hero__headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
  }

  .hero__sub {
    max-width: 520px;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
  }

  /* Luna/meadow hero specific */
  .hero--luna .hero__headline {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }

  .hero--luna .hero__content,
  .hero--privacy .hero__content {
    padding-bottom: clamp(4rem, 8vh, 6rem);
  }

  /* Stats: 3 columns instead of 6 or 2 */
  .luna-stat {
    flex: 1 1 30%;
    max-width: none;
  }
  .luna-stat:nth-child(4) {
    border-left: none;
  }

  /* About: tighter 2-column */
  .luna-about__grid {
    gap: 2rem;
  }

  .luna-about__image img {
    height: 360px;
  }

  .luna-about__bullets {
    gap: 0.5rem 1rem;
  }

  /* Gallery: 3 columns */
  .luna-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-landscape {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-portrait {
    grid-column: span 1;
    grid-row: span 2;
  }

  /* Turnkey: 3 columns */
  .luna-turnkey__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  /* Compare: side by side still fits */
  .luna-compare {
    gap: 1rem;
  }

  /* Section padding proportional */
  .luna-section {
    padding: clamp(3rem, 6vh, 5rem) var(--navbar-padding);
  }

  /* Footer: 5-column might be tight, use 4 */
  .footer__grid {
    max-width: 960px;
    gap: 2rem;
  }
}

/* ── TABLET LANDSCAPE / SMALL LAPTOP (1025px – 1366px) ── */
@media (min-width: 1025px) and (max-width: 1366px) {
  .hero__content {
    width: min(960px, 92vw);
  }

  .hero__headline {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  }

  .hero--luna .hero__headline {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
  }

  .hero--luna .hero__content,
  .hero--privacy .hero__content {
    padding-bottom: clamp(4rem, 8vh, 6rem);
  }

  .luna-section {
    padding: clamp(3.5rem, 7vh, 5.5rem) var(--navbar-padding);
  }

  .luna-about__image img {
    height: 380px;
  }
}

/* ── FORM OVERLAY (loader + success) ── */
.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.form-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.form-overlay__content {
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  max-width: 480px;
  width: 92%;
}
.form-loader h3,
.form-success h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.form-loader p,
.form-success p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.6;
}
.form-loader .material-icons {
  font-size: 3.5rem;
  color: var(--color-gold);
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.form-success .material-icons {
  font-size: 4rem;
  color: #4ade80;
  margin-bottom: 1.5rem;
}
.form-success .btn {
  margin-top: 1.5rem;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-success__downloads {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.btn--download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  min-width: 120px;
  border: none;
  cursor: pointer;
}
.btn--download:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}
.btn--download .material-icons {
  font-size: 1.2rem;
  color: inherit;
  animation: none;
  margin: 0;
}

/* ── FOOTER BROCHURE ── */
.footer-brochure {
  padding: 1.5rem 0;
}
.footer-brochure__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.footer-brochure__text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.footer-brochure__text h3 .material-icons {
  color: var(--color-gold);
  font-size: 1.3rem;
}
.footer-brochure__text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-brochure__form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.footer-brochure__form input {
  width: 240px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 0;
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.footer-brochure__form input:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.1);
}
.footer-brochure__form input::placeholder {
  color: rgba(255,255,255,0.35);
}
.footer-brochure__form .btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  min-width: auto;
}
@media (max-width: 768px) {
  .footer-brochure__inner {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .footer-brochure__text h3 {
    font-size: 1.1rem;
    justify-content: center;
  }
  .footer-brochure__text p {
    font-size: 0.85rem;
  }
  .footer-brochure__form {
    width: 100%;
    max-width: 360px;
  }
  .footer-brochure__form input {
    flex: 1;
  }
}
@media (max-width: 480px) {
  .footer-brochure__form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-brochure__form input {
    border-right: 1px solid rgba(255,255,255,0.15);
    width: 100%;
  }
  .footer-brochure__form .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .btn--download {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* ── DISABLED BUTTON STATE ── */
.btn[disabled],
.footer-brochure__form .btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
