:root {
  /* UI/UX Pro Max — Signature Body Studio (Liquid Glass + Dark Luxury) */
  --color-primary: #1c1917;
  --color-accent: #a16207;
  --color-accent-bright: #c9a962;
  --color-on-primary: #ffffff;
  --bg: #0a0908;
  --bg-card: rgba(20, 18, 16, 0.72);
  --bg-glass: rgba(20, 18, 16, 0.55);
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --cream: #f5f0e8;
  --muted: #9a9185;
  --border: rgba(201, 169, 98, 0.22);
  --font-display: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 40px rgba(201, 169, 98, 0.08);
  --glass-blur: blur(16px) saturate(140%);
  --transition: 200ms ease;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(161, 98, 7, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.06), transparent);
}

#canvas-3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Skip link — accessibility first */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* Glassmorphism 2.0 */
.glass-2026 {
  background: rgba(16, 14, 12, 0.52);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10, 9, 8, 0.88);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.logo-wrap { display: flex; align-items: center; text-decoration: none; background: transparent; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 0 12px rgba(201, 169, 98, 0.25));
}

/* Hero — centered cinematic + 3D canvas (load transition, no scroll pin) */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}
.hero-cinematic { isolation: isolate; }
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform-origin: center 50%;
  will-change: transform, filter;
}
.hero-bg-img.hero-ken-active {
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-canvas-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}
.hero-brand-mark {
  display: block;
  position: absolute;
  /* Marcado en foto: ~1/3 desde la izq., alto vertical hasta la camilla */
  left: 36%;
  top: 53%;
  height: min(68vh, 680px);
  width: auto;
  max-width: 44vw;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 65px rgba(201, 169, 98, 0.55));
}
.hero-brand-mark.is-visible {
  opacity: 0.78;
}
.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 213, 163, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.65));
  opacity: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at center 55%, transparent 0%, rgba(10,9,8,0.42) 68%, rgba(10,9,8,0.88) 100%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, rgba(10,9,8,0.65) 0%, rgba(10,9,8,0.28) 42%, rgba(10,9,8,0.88) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 980px;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 7vh, 5rem);
  z-index: 6;
  transform-style: preserve-3d;
}
.hero-content > * {
  transform-origin: center top;
  backface-visibility: hidden;
}
.hero-tag {
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow:
    0 4px 30px rgba(0,0,0,0.5),
    0 0 60px rgba(201, 169, 98, 0.15);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-slogan {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.6rem, 4.5vw, 2.75rem);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  color: #d4cdc2;
  max-width: 720px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.75;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--cream);
  flex-wrap: wrap;
}
.hero-rating strong { color: var(--gold); font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: clamp(1rem, 2vw, 1.25rem); }
.stars.lg { font-size: 1.4rem; }
.hero-btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  padding: clamp(1rem, 2vw, 1.15rem) clamp(1.75rem, 4vw, 2.5rem);
}
/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border: 1px solid var(--border); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.about-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.about-text h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 1rem; }
.about-text p { color: var(--muted); font-weight: 300; }

/* Package */
.package-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.package-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.package-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.package-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.package-main h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.package-tagline { font-style: italic; color: var(--muted); margin-bottom: 1.5rem; }
.package-includes { list-style: none; margin-bottom: 1.5rem; }
.package-includes li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.95rem;
}
.package-includes li::before { content: "✦ "; color: var(--gold); }
.areas-title { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tags span {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.package-cta {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  background: rgba(201,169,98,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.package-cta-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  text-align: center;
}
.package-cta-sub { font-size: 0.85rem; color: var(--muted); text-align: center; }
.package-cta .btn { width: 100%; max-width: 280px; text-align: center; }

.service-img-wrap {
  height: clamp(240px, 32vw, 340px);
  overflow: hidden;
  background: #0f0e0c;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  image-rendering: auto;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.service-body p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.package-results {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.service-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(10,9,8,0.85);
  color: var(--gold);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
}
.service-card { position: relative; }

.video-caption { font-size: 0.8rem; color: var(--muted); text-align: center; padding: 0.75rem; font-style: italic; }

.booking-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.booking-phone-wrap { margin: 1.5rem 0 2rem; }
.booking-phone {
  display: inline-block;
  font-family: "Cinzel", var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--gold);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.booking-phone:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.flyer-preview { width: 100%; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  margin-bottom: 0.75rem;
  opacity: 0.95;
  filter: drop-shadow(0 0 10px rgba(201, 169, 98, 0.2));
}
.footer-slogan { font-family: "Great Vibes", cursive; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.5rem; }

.nav { display: flex; gap: 1.75rem; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }

.ui-hover-line { position: relative; }
.ui-hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.ui-hover-line:hover::after { transform: scaleX(1); }

.btn-gold,
.btn-outline,
.booking-phone { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  animation: btnRipple 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes btnRipple {
  to { transform: scale(28); opacity: 0; }
}

.ui-card-shine { position: relative; overflow: hidden; }
.ui-card-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(201, 169, 98, 0.22) 50%,
    transparent 58%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.ui-card-shine:hover::before { transform: translateX(120%); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.4rem; cursor: pointer; }

.lang-toggle, .lang-link {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-toggle:hover, .lang-link:hover { background: var(--gold); color: var(--bg); }
.lang-link { background: none; text-decoration: none; display: inline; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-gold { background: var(--color-accent); color: var(--color-on-primary); }
.btn-gold:hover { background: var(--gold-light); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,98,0.3); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.center-btn { display: block; width: fit-content; margin: 2rem auto 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.trust-item span:last-child { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

/* Sections */
.section { position: relative; z-index: 1; padding: 6rem 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-weight: 300; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: rgba(201,169,98,0.45);
}
.service-body { padding: 1.5rem; }
.service-link { color: var(--gold); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.service-link:hover { color: var(--gold-light); }

/* Video */
.video-showcase {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.video-text h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.video-text p { color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.video-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.video-tags li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.06);
}
.premium-player-frame {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #0f0e0c;
}
.premium-player-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f0e0c;
}
.premium-player-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.15), rgba(10, 9, 8, 0.55));
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.premium-player-play:hover {
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.05), rgba(10, 9, 8, 0.45));
}
.premium-player-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.55);
  background: rgba(10, 9, 8, 0.65);
  backdrop-filter: blur(8px);
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.premium-player-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--gold-light);
}
.premium-player-play:hover .premium-player-icon {
  transform: scale(1.05);
  border-color: var(--gold);
}
.premium-player-frame.is-playing .premium-player-play {
  opacity: 0;
  pointer-events: none;
}
.video-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* Reviews */
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.big-score {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(201,169,98,0.4); box-shadow: var(--shadow-md); }
.review-card p { font-style: italic; color: var(--muted); margin: 1rem 0; font-weight: 300; line-height: 1.7; }
.review-card footer { font-size: 0.85rem; color: var(--gold); }

/* Booking */
.booking { background: linear-gradient(135deg, rgba(201,169,98,0.06), transparent); }
.booking-visual.premium-player { width: 100%; }
.booking-visual .premium-player-frame { box-shadow: var(--shadow-lg); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.booking-info h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.booking-info > p { color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.booking-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.booking-features strong { color: var(--cream); font-weight: 500; }
.booking-features strong::before { content: "✓ "; color: var(--gold); }
.book-note { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; font-style: italic; }

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  background: var(--bg-card);
}
.media-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.media-frame:hover img { transform: scale(1.03); }
.media-frame-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 9, 8, 0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.booking-card-3d {
  background: linear-gradient(145deg, #1a1815, #0f0e0c);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5), -5px -5px 20px rgba(201,169,98,0.05);
  transition: transform 0.5s;
}
.booking-card-3d:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.booking-card-title { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; margin-bottom: 0.5rem; }
.booking-slots { display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.booking-slots span {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gold);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1.5rem; }
address { font-style: normal; margin-bottom: 1.5rem; }
address p { margin-bottom: 0.5rem; color: var(--muted); }
address a { color: var(--gold); text-decoration: none; }
address a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; filter: grayscale(30%) contrast(1.1); }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}
.footer-logo { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; margin-bottom: 0.5rem; }
.footer p { font-size: 0.8rem; color: var(--muted); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Bento treatment gallery */
.treatments-bento {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(140px, 18vw, 210px);
  gap: 0.85rem;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  grid-column: span 3;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.bento-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.bento-item--wide { grid-column: span 6; }
.bento-item--tall { grid-row: span 2; }
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bento-item:hover img { transform: scale(1.06); }
.bento-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(10, 9, 8, 0.92));
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .hero-bg-img.hero-ken-active { animation: none; }
  .hero-content,
  .hero-content > * { opacity: 1 !important; transform: none !important; }
  .hero-flash { display: none; }
  .hero-canvas-3d { display: none; }
  .hero-brand-mark { display: block; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bento-item:hover,
  .media-frame:hover img,
  .service-card:hover { transform: none; }
}

@media (max-width: 900px) {
  .hero-canvas-3d { display: none; }
  .hero-brand-mark {
    left: 50%;
    top: 36%;
    height: min(40vh, 340px);
    max-width: 72vw;
  }
  .hero-brand-mark.is-visible { opacity: 0.42; }
  .hero-content {
    padding-top: clamp(5.5rem, 14vh, 7rem);
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: clamp(2.15rem, 8.5vw, 3.25rem);
    line-height: 1.08;
  }
  .hero-slogan { font-size: clamp(1.35rem, 5vw, 1.85rem); }
  .hero-sub {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; }
  .hero-scroll { bottom: 1.25rem; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .bento-item,
  .bento-item--wide { grid-column: span 1; }
  .bento-item--tall { grid-row: span 1; }
  .bento-item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1.5rem; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .logo-img { height: 40px; max-width: 180px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .package-grid, .video-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-card-3d { transform: none; }
  .package-cta { margin-top: 1rem; }
}

@media (max-width: 480px) {
  .header { padding: var(--space-sm) var(--space-md); }
  .hero-brand-mark {
    top: 34%;
    height: min(36vh, 280px);
    max-width: 78vw;
  }
  .hero-tag { letter-spacing: 0.14em; font-size: 0.72rem; }
  .hero-rating { font-size: 0.9rem; }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
}
