:root {
  --black: #0a0a0a;
  --dark: #0f0f0f;
  --card: rgba(10, 12, 16, 0.78);
  --gold: #c9a962;
  --gold-light: #dcc07a;
  --gold-dark: #9a7b3c;
  --green: #3ecf6e;
  --white: #ffffff;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.08);
  --input-line: rgba(255, 255, 255, 0.22);
  --font-ui: 'Jost', 'Montserrat', -apple-system, sans-serif;
  --font-display: 'Montserrat', 'Jost', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }
.gold-text { color: var(--gold); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

/* ── BRAND LOGO ── */
.brand-logo {
  display: block;
  overflow: visible;
}

.brand-logo--preloader { width: 88px; height: 100px; }
.brand-logo--header { width: 46px; height: 52px; }

.logo-aura {
  opacity: 0;
  transform-origin: 40px 48px;
  animation: auraIn 1.2s var(--ease-out) 0.1s forwards;
}

.logo-aura--idle {
  opacity: 0.6;
  animation: auraBreathe 4s ease-in-out infinite;
}

@keyframes auraIn {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes auraBreathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.08); }
}

.logo-orbit {
  fill: none;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transform-origin: 40px 48px;
  animation: orbitDraw 1.4s var(--ease-out) 0.2s forwards, orbitSpin 18s linear 1.6s infinite;
}

.logo-orbit--idle {
  stroke-dashoffset: 0;
  animation: orbitSpin 18s linear infinite;
  opacity: 0.55;
}

@keyframes orbitDraw { to { stroke-dashoffset: 0; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.logo-frame {
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: frameDraw 1s var(--ease-out) 0.5s forwards;
}

.brand-logo--header .logo-frame {
  stroke-dashoffset: 0;
  animation: none;
}

@keyframes frameDraw { to { stroke-dashoffset: 0; } }

.logo-gem {
  opacity: 0;
  transform-origin: 40px 51px;
  animation: gemReveal 0.8s var(--ease-spring) 0.9s forwards;
}

.brand-logo--header .logo-gem {
  opacity: 1;
  animation: gemShine 5s ease-in-out infinite;
}

@keyframes gemReveal {
  from { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes gemShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.logo-facets { opacity: 0; animation: fadeIn 0.5s ease 1.2s forwards; }
.brand-logo--header .logo-facets { opacity: 1; animation: none; }

.logo-crown {
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: crownDraw 0.7s var(--ease-out) 0.7s forwards, crownFloat 3s ease-in-out 1.4s infinite;
}

.brand-logo--header .logo-crown {
  stroke-dashoffset: 0;
  animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownDraw { to { stroke-dashoffset: 0; } }
@keyframes crownFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.logo-jewel {
  opacity: 0;
  animation: jewelPop 0.5s var(--ease-spring) 1.1s forwards, jewelTwinkle 2s ease-in-out 1.6s infinite;
}

.brand-logo--header .logo-jewel {
  opacity: 1;
  animation: jewelTwinkle 2.5s ease-in-out infinite;
}

@keyframes jewelPop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes jewelTwinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.logo-spark { opacity: 0; }
.brand-logo--preloader .logo-spark.s1 { animation: sparkIn 0.4s ease 1.3s forwards, sparkPulse 2s ease-in-out 1.7s infinite; }
.brand-logo--preloader .logo-spark.s2 { animation: sparkIn 0.4s ease 1.4s forwards, sparkPulse 2.3s ease-in-out 1.8s infinite; }
.brand-logo--preloader .logo-spark.s3 { animation: sparkIn 0.4s ease 1.5s forwards, sparkPulse 1.8s ease-in-out 1.9s infinite; }
.brand-logo--preloader .logo-spark.s4 { animation: sparkIn 0.4s ease 1.55s forwards, sparkPulse 2.1s ease-in-out 2s infinite; }
.brand-logo--preloader .logo-spark.s5 { animation: sparkIn 0.4s ease 1.6s forwards, sparkPulse 2.4s ease-in-out 2.1s infinite; }

.brand-logo--header .logo-spark {
  animation: sparkPulse 2.5s ease-in-out infinite;
}
.brand-logo--header .logo-spark.s1 { animation-delay: 0s; }
.brand-logo--header .logo-spark.s2 { animation-delay: 0.5s; }
.brand-logo--header .logo-spark.s3 { animation-delay: 1s; }

@keyframes sparkIn { to { opacity: 1; } }
@keyframes sparkPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}

.logo-pulse { animation: logoPulse 0.6s var(--ease-spring); }
@keyframes logoPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

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

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s, background 0.9s var(--ease-out);
}

.preloader.exiting {
  background: rgba(6, 6, 6, 0);
  pointer-events: none;
}

.preloader.exiting .preloader-inner {
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

.preloader-rays {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201,169,98,0.08) 0%, transparent 55%);
  opacity: 0.6;
  transition: opacity 0.6s;
}

.preloader.exiting .preloader-rays { opacity: 0; }

.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  position: relative; z-index: 1;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.preloader-logo-wrap {
  position: relative;
  animation: logoFloat 2.8s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.preloader-brand {
  font-size: 9px; letter-spacing: 5px; color: var(--gold);
  opacity: 0;
  animation: preloaderBrandIn 0.8s var(--ease-out) 0.2s forwards;
}

@keyframes preloaderBrandIn {
  from { opacity: 0; letter-spacing: 8px; }
  to { opacity: 1; letter-spacing: 5px; }
}

/* ── LANG SWITCH ── */
.lang-switch {
  display: inline-flex;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 2px;
  padding: 2px;
  gap: 0;
}

.lang-pill {
  position: absolute;
  top: 3px; left: 3px;
  height: calc(100% - 6px);
  background: var(--gold);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-spring), width 0.4s var(--ease-spring);
  box-shadow: 0 2px 10px rgba(201,169,98,0.35);
  z-index: 0;
}

.lang-opt {
  position: relative; z-index: 1;
  background: transparent; border: none;
  color: var(--muted);
  padding: 5px 11px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s;
}

.lang-opt.active { color: var(--black); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 0.14s);
}

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

/* ── HEADER ── */
.header {
  position: fixed; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px 48px;
  padding-top: max(22px, env(safe-area-inset-top, 0px));
  background: transparent;
  transition: padding 0.5s var(--ease-out), background 0.5s, backdrop-filter 0.5s, top 0.7s var(--ease-out), opacity 0.5s;
  top: -120px;
  opacity: 0;
  pointer-events: none;
}

.header-nav { display: contents; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  z-index: 101;
  transition: border-color 0.3s, background 0.3s;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

body.nav-open .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle-line:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.header.loaded {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}
.header.scrolled {
  padding: 12px 48px;
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; gap: 28px; align-items: center; }
.nav-left { grid-column: 1; grid-row: 1; justify-content: flex-start; }
.nav-right { grid-column: 3; grid-row: 1; justify-content: flex-end; }

.logo { grid-column: 2; grid-row: 1; }
.nav-toggle { grid-column: 3; grid-row: 1; justify-self: end; }

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  position: relative;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.35s var(--ease-out), color 0.25s;
}

.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav-link:hover span { color: var(--gold); transform: translateY(-2px); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.logo {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  position: relative; justify-self: center;
}

.logo-glow {
  position: absolute; top: -8px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(201,169,98,0.3) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.2); }
}

.logo:hover .brand-logo--header { transform: scale(1.1); transition: transform 0.5s var(--ease-spring); }

.logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 13px; letter-spacing: 2.5px; color: var(--gold);
  font-weight: 600; text-transform: uppercase;
}
.logo-text small {
  font-family: var(--font-ui);
  font-size: 8px; letter-spacing: 3.5px; color: var(--gold-light);
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 130px 24px 180px; text-align: center; overflow: hidden;
}

.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}

.particle {
  position: absolute; bottom: -10px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
  box-shadow: 0 0 6px rgba(201,169,98,0.6);
}

@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center center;
}

.hero-bg-video--mobile { display: none; }

.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.32) 45%, rgba(6,6,6,0.96) 88%, var(--black) 100%);
}

.hero-shine {
  position: absolute; top: 0; left: -50%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  animation: heroShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShine {
  0%, 100% { left: -50%; }
  50% { left: 120%; }
}

.hero-content { position: relative; z-index: 3; max-width: 900px; margin-bottom: 52px; }

.hero-eyebrow {
  font-size: 10px; letter-spacing: 5px; color: var(--gold);
  margin-bottom: 22px; font-weight: 500;
  opacity: 0;
}

@keyframes eyebrowIn {
  from { opacity: 0; letter-spacing: 12px; }
  to { opacity: 1; letter-spacing: 5px; }
}

#hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 700; letter-spacing: 5px;
  line-height: 1.1; margin-bottom: 22px;
  text-transform: uppercase;
}

.title-line { display: block; overflow: hidden; padding: 2px 0; }

.title-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-40deg);
  animation: charReveal 0.7s var(--ease-out) forwards;
}

.char--done {
  opacity: 1; transform: none; animation: none;
}

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

.hero-desc {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82); max-width: 720px;
  margin: 0 auto; line-height: 1.85; font-weight: 400;
  opacity: 0;
}

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

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.scroll-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

body.site-ready .scroll-hint-inner {
  animation: fadeUp 0.65s ease 0.55s forwards;
}

.scroll-hint span { font-size: 8px; letter-spacing: 4px; color: var(--muted); }

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 169, 98, 0.35) 55%, transparent 100%);
  transform-origin: top center;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

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

/* ── BOOKING (Crystal Gate style) ── */
.booking-widget {
  position: relative; z-index: 10;
  width: min(1080px, 94vw);
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-top: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  opacity: 0; transform: translateY(48px);
}

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

body.site-ready .hero-eyebrow { animation: eyebrowIn 0.7s var(--ease-out) 0.12s forwards; }
body.site-ready .hero-desc { animation: fadeUp 0.75s var(--ease-out) 0.38s forwards; }
body.site-ready .booking-widget { animation: widgetEnter 0.85s var(--ease-out) 0.28s forwards; }
body.site-ready .scroll-hint { opacity: 1; }

.booking-tabs-wrap {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.booking-tabs {
  display: flex;
  position: relative;
}

.tab {
  flex: 1; background: transparent; border: none;
  color: rgba(255,255,255,0.45); padding: 18px 12px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; z-index: 1; position: relative;
  transition: color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.tab:hover { color: rgba(255,255,255,0.75); }
.tab.active { color: var(--white); }

.tab-indicator {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--green);
  transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1), width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.booking-body {
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.trip-toggle {
  display: inline-flex;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 999px; padding: 3px;
  margin-bottom: 22px; position: relative;
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
  visibility: visible;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s;
}

.trip-toggle.is-hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking-panels {
  display: grid;
  align-items: end;
}

.booking-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s;
  pointer-events: none;
  visibility: hidden;
}

.booking-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 1;
}

.toggle-pill {
  position: absolute; top: 3px; left: 3px;
  height: calc(100% - 6px);
  background: var(--white); border-radius: 999px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.toggle-btn {
  background: transparent; border: none; color: rgba(255,255,255,0.5);
  padding: 8px 16px; font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px; cursor: pointer; z-index: 1;
  transition: color 0.3s;
  white-space: nowrap;
}

.toggle-btn.active { color: var(--black); }

.booking-form {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 0.85fr 0.85fr auto;
  gap: 20px 18px; align-items: end;
}

.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--input-line);
  border-radius: 0;
  color: var(--white);
  padding: 10px 0;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 400;
  transition: border-color 0.25s;
}

.field input::placeholder {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: rgba(201,169,98,0.65);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233ecf6e' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px;
}

.field input[type="date"] {
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  opacity: 0.6;
  cursor: pointer;
}

.field select option { background: #141414; color: var(--white); }

.field--address {
  position: relative;
  z-index: 20;
}

.field--address.is-open {
  z-index: 30;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  z-index: 40;
}

.address-suggestion {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
}

.address-suggestion:last-child {
  border-bottom: none;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  background: rgba(201, 169, 98, 0.12);
  color: var(--white);
}

.address-suggestion--status {
  cursor: default;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.address-suggestion--status:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
}

.search-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--white); color: var(--black); border: none;
  padding: 0 28px; min-height: 48px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
  white-space: nowrap;
}

.search-btn:hover { background: #f0f0f0; }
.search-btn.is-pressed { opacity: 0.85; transform: scale(0.98); }
.search-btn svg { flex-shrink: 0; }

/* ── SERVICES ── */
.services {
  padding: 130px 48px; text-align: center;
  background: var(--black); position: relative;
}

.services::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 90px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.35;
}

.section-header { margin-bottom: 60px; }

.services h2, .faq h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gold-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 30px;
  transition: width 1.2s var(--ease-out);
}

.gold-line.visible { width: 80px; }

.section-desc {
  font-family: var(--font-ui);
  color: var(--muted); font-size: 13px;
  max-width: 540px; margin: 0 auto; line-height: 1.9;
  font-weight: 400;
}

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1100px; margin: 0 auto 52px;
}

.service-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--line);
  text-align: left; overflow: hidden;
  transition: border-color 0.5s, box-shadow 0.5s;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  border-color: rgba(201,169,98,0.4);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.service-img-wrap { position: relative; overflow: hidden; height: 210px; }

.service-img {
  height: 100%; background-size: cover; background-position: center;
  transition: transform 1s var(--ease-out);
}

.service-card:hover .service-img { transform: scale(1.12); }

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,6,6,0.85) 100%);
}

.service-shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.service-card:hover .service-shine { transform: translateX(100%); }

.service-body { padding: 26px 26px 30px; position: relative; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: rgba(201,169,98,0.1);
  position: absolute; top: 10px; right: 18px;
  transition: color 0.5s, transform 0.5s;
}

.service-card:hover .service-num { color: rgba(201,169,98,0.22); transform: scale(1.05); }

.service-card h3 {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px; transition: color 0.35s;
}

.service-card:hover h3 { color: var(--gold-light); }

.service-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 16px;
}

.service-link {
  font-size: 10px; letter-spacing: 1.2px; color: var(--gold);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.45s, transform 0.45s var(--ease-out);
  display: inline-block;
}

.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

.gold-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #b8954f; color: var(--black);
  padding: 15px 34px; font-size: 11px; font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, opacity 0.3s;
}

.gold-btn:hover {
  background: var(--gold-light);
  opacity: 0.92;
}

.gold-btn svg { transition: transform 0.35s var(--ease-out); }
.gold-btn:hover svg { transform: translateX(6px); }

/* ── STATS ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 80px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1100px; margin: 0 auto;
}

.stat-item {
  text-align: center; padding: 30px 16px;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover { transform: translateY(-2px); }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 700; line-height: 1.1; margin-bottom: 10px;
  color: var(--gold-light);
}

.stat-value {
  display: inline-block;
}

.stat-shimmer {
  background: linear-gradient(
    110deg,
    #d4b76a 0%,
    #fff8e0 22%,
    #f5e6b8 38%,
    #c9a962 52%,
    #fff8e0 68%,
    #d4b76a 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  animation: statShimmer 4.5s ease-in-out infinite;
}

.stat-item:hover .stat-shimmer { animation-duration: 3s; }

@keyframes statShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@supports not (-webkit-background-clip: text) {
  .stat-shimmer {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--gold-light);
    animation: none;
  }
}

.stat-label {
  font-size: 9px; letter-spacing: 3px;
  color: var(--muted); font-weight: 600;
  transition: color 0.5s ease, letter-spacing 0.5s ease;
}

.stat-item:hover .stat-label {
  color: rgba(255,255,255,0.55);
}

/* ── CONTACT MAP ── */
.contact-map {
  padding: 80px 48px 60px;
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.contact-map-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-info .gold-line { margin: 0 0 24px; width: 60px; height: 2px; background: var(--gold); }

.contact-address {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.contact-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(201,169,98,0.45);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.map-open-btn:hover {
  background: rgba(201,169,98,0.12);
  border-color: var(--gold);
  color: var(--white);
}

.map-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  min-height: 260px;
  background: rgba(255,255,255,0.03);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(35%) contrast(1.05) brightness(0.85);
}

/* ── FAQ ── */
.faq { padding: 130px 48px; max-width: 760px; margin: 0 auto; text-align: center; }
.faq-list { text-align: left; margin-top: 52px; }

.faq-item {
  border: 1px solid var(--line); margin-bottom: 10px;
  background: rgba(255,255,255,0.012);
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
  overflow: hidden;
}

.faq-item:hover { border-color: rgba(201,169,98,0.22); transform: translateX(4px); }

.faq-item.is-open {
  border-color: rgba(201,169,98,0.4);
  background: rgba(201,169,98,0.04);
  transform: translateX(0);
}

.faq-trigger {
  width: 100%; padding: 24px 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.7px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: none; border: none; color: var(--white);
  font-family: inherit; text-align: left; transition: color 0.35s;
}

.faq-item.is-open .faq-trigger { color: var(--gold-light); }

.faq-chevron { flex-shrink: 0; color: var(--gold); transition: transform 0.5s var(--ease-out); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }

.faq-panel > p {
  overflow: hidden; padding: 0 28px;
  font-size: 13px; color: var(--muted); line-height: 1.9;
  transition: padding 0.5s var(--ease-out);
}

.faq-item.is-open .faq-panel > p { padding: 0 28px 24px; }

/* ── FOOTER ── */
.footer {
  padding: 80px 48px 40px;
  background: var(--dark); border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1100px; margin: 0 auto 52px;
}

.footer-col h4 {
  font-size: 9px; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px;
}

.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 12px;
  transition: color 0.35s, padding-left 0.35s var(--ease-out);
}

.footer-col a:hover { color: var(--white); padding-left: 8px; }

.footer-tagline p { font-size: 14px; color: var(--muted); line-height: 2; font-style: italic; }
.footer-tagline em { color: var(--gold); font-style: normal; }

.footer-bottom {
  text-align: center; font-size: 10px;
  color: rgba(255,255,255,0.22);
  padding-top: 30px; border-top: 1px solid var(--line);
  max-width: 1100px; margin: 0 auto; letter-spacing: 0.6px;
}

.footer-credit {
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.18);
}

.footer-credit a {
  color: rgba(201,169,98,0.55);
  transition: color 0.3s;
}

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

/* ── WHATSAPP ── */
.whatsapp {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200; box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: transform 0.45s var(--ease-spring);
}

.whatsapp:hover { transform: scale(1.12) rotate(-5deg); }
.whatsapp svg { width: 28px; height: 28px; color: white; position: relative; z-index: 1; }

.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.8s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-video,
  .hero-bg-video--desktop,
  .hero-bg-video--mobile { display: none; }
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center/cover no-repeat;
  }
  .reveal { opacity: 1; transform: none; }
  .booking-widget { opacity: 1; transform: none; }
  .title-line .char { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-desc, .scroll-hint { opacity: 1; animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top, 0px));
  }

  .header.scrolled {
    padding: 10px 16px;
    padding-top: max(10px, env(safe-area-inset-top, 0px));
  }

  .logo {
    grid-column: 1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-self: start;
  }

  .logo-text { align-items: flex-start; }
  .logo-text strong { font-size: 11px; letter-spacing: 2px; }
  .logo-text small { font-size: 7px; letter-spacing: 2.5px; }
  .brand-logo--header { width: 38px; height: 43px; }
  .logo-glow { width: 58px; height: 58px; top: -4px; }

  .nav-toggle {
    display: flex;
    grid-column: 2;
    justify-self: end;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: fixed;
    inset: 0;
    padding: calc(80px + env(safe-area-inset-top, 0px)) 28px 40px;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease-out), visibility 0.35s, transform 0.35s var(--ease-out);
    overflow-y: auto;
  }

  body.nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

  .nav-right {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .nav-link { font-size: 15px; }

  .hero {
    min-height: auto;
    padding: calc(88px + env(safe-area-inset-top, 0px)) 16px 32px;
    justify-content: flex-start;
  }

  .hero-content { margin-bottom: 24px; max-width: 100%; }

  #hero-title {
    font-size: clamp(26px, 7.5vw, 38px);
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .title-line { overflow: visible; }
  .title-line .char { opacity: 1; transform: none; animation: none; }

  .hero-desc {
    font-size: 10px;
    letter-spacing: 0.6px;
    line-height: 1.75;
    padding: 0 4px;
  }

  .hero-eyebrow { margin-bottom: 14px; letter-spacing: 3px; }

  .hero-bg-video--desktop { display: none; }
  .hero-bg-video--mobile { display: block; object-position: center 40%; }

  .booking-widget {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    border-radius: 6px;
    transform: translateY(24px);
    overflow: visible;
  }

  body.site-ready .booking-widget {
    animation: widgetEnterMobile 0.7s var(--ease-out) 0.18s forwards;
  }

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

  body.site-ready .hero-eyebrow { animation-delay: 0.05s; }
  body.site-ready .hero-desc { animation-delay: 0.2s; }
  .scroll-hint { display: none !important; }

  .preloader { display: none; }

  .booking-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .tab-indicator { display: none; }

  .tab {
    flex: unset;
    min-width: 0;
    padding: 12px 6px;
    font-size: 8.5px;
    letter-spacing: 0.4px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tab.active::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px 2px 0 0;
    transition: opacity 0.45s ease;
  }

  .booking-panels { display: grid; }

  .booking-panel {
    grid-area: 1 / 1;
    display: grid;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    pointer-events: none;
  }

  .booking-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .booking-body { padding: 16px 16px 20px; }

  .toggle-btn { padding: 8px 12px; font-size: 9px; }

  .booking-form { grid-template-columns: 1fr; gap: 14px; }
  .search-btn { grid-column: 1 / -1; justify-content: center; width: 100%; min-height: 46px; }

  .services { padding: 80px 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 50px 20px; gap: 8px 12px; }
  .stat-item { padding: 20px 10px; }
  .stat-num { font-size: clamp(36px, 9vw, 48px); }
  .stat-label { font-size: 8px; letter-spacing: 2px; }
  .faq { padding: 80px 20px; }
  .faq-trigger { padding: 20px 18px; font-size: 10px; }
  .faq-panel > p { padding: 0 18px; }
  .faq-item.is-open .faq-panel > p { padding: 0 18px 20px; }

  .footer { padding: 60px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .contact-map { padding: 60px 20px 40px; }
  .contact-map-inner { grid-template-columns: 1fr; gap: 28px; }
  .map-wrap { min-height: 220px; }

  .service-grid { grid-template-columns: 1fr; max-width: 440px; }

  body.nav-open .whatsapp { display: none; }

  .whatsapp {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 600px) {
  .booking-form { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .services h2, .faq h2 { letter-spacing: 2px; }
}
