/* LUCA Amsterdam — Motion Redesign
   System: Cormorant Garamond (display italic) · Marcellus (body) · DM Sans (UI)
   Palette: cream / dark / gold whisper
   Easing: cubic-bezier(0.16, 1, 0.3, 1)
*/

:root {
  --cream: #F6F3EC;
  --cream-2: #EDE7D9;
  --dark: #1A1714;
  --dark-2: #0E0C0A;
  --gold: #C9A86C;
  --gold-line: rgba(201, 168, 108, 0.35);
  --tan: #C4A882;
  --mute: #6B635A;
  --line: rgba(26, 23, 20, 0.12);
  --line-dark: rgba(246, 243, 236, 0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --body: "Marcellus", Georgia, serif;
  --ui: "DM Sans", system-ui, sans-serif;
}

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

html, body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

::selection { background: var(--gold); color: var(--dark); }

/* ─────────────────────────────  NAV  ───────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  font-family: var(--ui);
  color: var(--cream);
  transition: padding .6s var(--ease), background .5s var(--ease), color .5s var(--ease);
  mix-blend-mode: normal;
}

.nav.is-scrolled {
  padding: 16px 48px;
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
}

.nav__logo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .4s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--cream);
  transition: right .8s var(--ease);
}

.nav__links a:hover::after { right: 0; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 18px;
  letter-spacing: 0;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.5;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 18px;
  line-height: 1;
  filter: grayscale(0.6);
  transition: opacity .4s var(--ease), filter .4s var(--ease), transform .4s var(--ease);
}

.lang-toggle button:hover { opacity: 0.9; filter: grayscale(0.2); }
.lang-toggle button.is-active {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(201, 168, 108, 0.4));
  transform: scale(1.05);
}

.lang-toggle__divider {
  color: var(--cream);
  opacity: 0.25;
  font-size: 11px;
}

.nav__book {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--cream);
  padding: 12px 22px;
  cursor: pointer;
  transition: background .6s var(--ease), color .6s var(--ease);
  display: inline-block;
}

.nav__book:hover { background: var(--cream); color: var(--dark); }

/* ─────────────────────────────  HERO  ───────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--dark);
  color: var(--cream);
}

.hero__motion {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.hero__motion-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero__motion-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  filter: blur(40px);
  opacity: 0.35;
  mix-blend-mode: screen;
  will-change: transform;
  z-index: 1;
}

.hero__motion-layer--a {
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(201, 168, 108, 0.45), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(196, 168, 130, 0.35), transparent 70%);
  animation: drift-a 32s var(--ease-soft) infinite alternate;
}

.hero__motion-layer--b {
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(246, 243, 236, 0.18), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 108, 0.25), transparent 70%);
  animation: drift-b 44s var(--ease-soft) infinite alternate;
}

.hero__motion-layer--c {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(246, 243, 236, 0.12), transparent 50%);
  background-size: 80% 80%;
  background-position: center;
  animation: drift-c 26s var(--ease-soft) infinite alternate;
}

@keyframes drift-a {
  0%   { transform: translate(-4%, -2%) scale(1.05) rotate(0deg); }
  100% { transform: translate(6%, 4%) scale(1.15) rotate(8deg); }
}
@keyframes drift-b {
  0%   { transform: translate(3%, -3%) scale(1.1) rotate(0deg); }
  100% { transform: translate(-5%, 5%) scale(1.2) rotate(-6deg); }
}
@keyframes drift-c {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%  { opacity: 0.8; }
  100% { transform: translate(2%, -3%) scale(1.1); opacity: 0.4; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(14, 12, 10, 0.55) 70%, rgba(14, 12, 10, 0.85) 100%),
    linear-gradient(180deg, rgba(14, 12, 10, 0.4) 0%, transparent 30%, rgba(14, 12, 10, 0.6) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

.particle {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(246, 243, 236, 0.55), rgba(246, 243, 236, 0) 70%);
  filter: blur(8px);
  will-change: transform, opacity;
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
  }
  10% { opacity: var(--peak, 0.6); }
  50% {
    transform: translate(var(--drift, 40px), -50vh) scale(1.1);
    opacity: var(--peak, 0.6);
  }
  90% { opacity: 0; }
  100% {
    transform: translate(calc(var(--drift, 40px) * 2), -110vh) scale(1.5);
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
  text-align: center;
  will-change: transform, opacity;
}

.hero__eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 1.4s var(--ease) 0.3s forwards;
}

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 18ch;
}

.hero__title .word {
  display: inline;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: rise-in 1.6s var(--ease) forwards;
}

.hero__title .word:nth-child(1) { animation-delay: 0.5s; }
.hero__title .word:nth-child(2) { animation-delay: 0.7s; }
.hero__title .word:nth-child(3) { animation-delay: 0.9s; }
.hero__title .word:nth-child(4) { animation-delay: 1.1s; }

.hero__title .word--gold {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  font-family: var(--body);
  font-size: 17px;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 236, 0.7);
  max-width: 44ch;
  margin-top: 36px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 1.4s var(--ease) 1.3s forwards;
}

.hero__cta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 24px 44px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 12px 40px rgba(201, 168, 108, 0.25);
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 1.4s var(--ease) 1.55s forwards;
  will-change: transform;
}

.hero__cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(201, 168, 108, 0.35);
}

.hero__cta-arrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  transition: transform .5s var(--ease);
}

.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }

.hero__cta-aux {
  margin-top: 20px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
  opacity: 0;
  animation: rise-in 1.4s var(--ease) 1.8s forwards;
}

/* Hero meta */
.hero__meta {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 48px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.55);
  z-index: 4;
}

.hero__meta-block { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-block strong { color: var(--cream); font-weight: 400; letter-spacing: 0.3em; }

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  background-size: 100% 200%;
  animation: scroll-pulse 2.4s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ─────────────────────────────  SECTION COMMON  ───────────────────────────── */

.section {
  padding: 160px 48px;
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: end;
}

.section__kicker {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.section__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-top: 24px;
  max-width: 14ch;
}

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

.section__lede {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 48ch;
}

/* ─────────────────────────────  EXPERIENCES  ───────────────────────────── */

.experiences { background: var(--cream); }

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

.exp-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  isolation: isolate;
  display: block;
  text-decoration: none;
}

.exp-card__motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1.6s var(--ease), opacity 1.2s var(--ease);
  transform: scale(1.04);
  opacity: 0.85;
}

.exp-card:hover .exp-card__motion { transform: scale(1.12); opacity: 1; }

/* Per-card motion layers */
.exp-card__motion::before,
.exp-card__motion::after {
  content: "";
  position: absolute;
  inset: -20%;
  background-repeat: no-repeat;
  filter: blur(28px);
  mix-blend-mode: screen;
  opacity: 0.7;
  will-change: transform;
}

/* Sauna — warm amber heat */
.exp-card--sauna {
  background: radial-gradient(ellipse at 50% 80%, #5a2e15 0%, #2a140a 50%, #0d0604 100%);
}
.exp-card--sauna .exp-card__motion { background-color: #2a140a; }
.exp-card--sauna .exp-card__motion::before {
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(255, 140, 50, 0.4), transparent 65%),
    radial-gradient(ellipse at 70% 40%, rgba(201, 168, 108, 0.3), transparent 70%);
  animation: ember 18s var(--ease-soft) infinite alternate;
}
.exp-card--sauna .exp-card__motion::after {
  background-image: radial-gradient(circle at 50% 90%, rgba(255, 90, 20, 0.25), transparent 60%);
  animation: ember 24s var(--ease-soft) infinite alternate-reverse;
  filter: blur(50px);
}

/* Massage — deep warm rose-gold */
.exp-card--massage {
  background: radial-gradient(ellipse at 40% 50%, #4a2a26 0%, #25140f 50%, #0c0604 100%);
}
.exp-card--massage .exp-card__motion { background-color: #25140f; }
.exp-card--massage .exp-card__motion::before {
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(220, 140, 110, 0.3), transparent 65%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 108, 0.25), transparent 70%);
  animation: ember 22s var(--ease-soft) infinite alternate;
}
.exp-card--massage .exp-card__motion::after {
  background-image: radial-gradient(circle at 50% 50%, rgba(220, 130, 90, 0.2), transparent 60%);
  animation: ember 30s var(--ease-soft) infinite alternate-reverse;
  filter: blur(50px);
}

/* Privé — warm metallic gold/cream daylight */
.exp-card--prive {
  background: radial-gradient(ellipse at 60% 30%, #3a3128 0%, #1f1a14 50%, #0d0a08 100%);
}
.exp-card--prive .exp-card__motion { background-color: #1f1a14; }
.exp-card--prive .exp-card__motion::before {
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(246, 243, 236, 0.35), transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(201, 168, 108, 0.35), transparent 70%);
  animation: daylight 28s var(--ease-soft) infinite alternate;
}
.exp-card--prive .exp-card__motion::after {
  background-image: radial-gradient(circle at 50% 20%, rgba(246, 243, 236, 0.3), transparent 65%);
  animation: daylight 36s var(--ease-soft) infinite alternate-reverse;
  filter: blur(50px);
}

@keyframes ember {
  0%   { transform: translate(-3%, 2%) scale(1.05) rotate(-3deg); }
  100% { transform: translate(4%, -3%) scale(1.18) rotate(5deg); }
}
@keyframes daylight {
  0%   { transform: translate(-2%, -2%) scale(1.05); }
  100% { transform: translate(3%, 3%) scale(1.15); }
}

/* Card overlays */
.exp-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.15) 0%, rgba(14, 12, 10, 0.45) 60%, rgba(14, 12, 10, 0.85) 100%);
  pointer-events: none;
}

.exp-card__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

.exp-card__steam {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.exp-card__steam .particle { filter: blur(12px); }

.exp-card__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--cream);
}

.exp-card__num {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

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

.exp-card__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  transition: transform 1s var(--ease);
}

.exp-card:hover .exp-card__name { transform: translateY(-6px); }

.exp-card__meta {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 12px;
}

.exp-card__cta {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  text-decoration: none;
}

.exp-card:hover .exp-card__cta { opacity: 1; transform: translateY(0); }

.exp-card__cta-arrow {
  width: 24px;
  height: 1px;
  background: var(--gold);
  position: relative;
}
.exp-card__cta-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg) translate(-2px, 2px);
}

/* ─────────────────────────────  RITUAL  ───────────────────────────── */

.ritual {
  background: var(--cream-2);
  position: relative;
}

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

.ritual__media {
  aspect-ratio: 4/5;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.ritual__media .exp-card__motion {
  background: radial-gradient(ellipse at 50% 60%, #3a2820 0%, #1a120c 50%, #0a0604 100%);
}
.ritual__media .exp-card__motion::before {
  background-image:
    radial-gradient(ellipse at 40% 50%, rgba(201, 168, 108, 0.5), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(246, 243, 236, 0.25), transparent 60%);
  animation: ember 30s var(--ease-soft) infinite alternate;
}
.ritual__media .exp-card__veil {
  background: linear-gradient(180deg, transparent 0%, rgba(14,12,10,0.7) 100%);
}
.ritual__media .exp-card__grain { opacity: 0.05; }
.ritual__media .exp-card__steam { z-index: 3; }

.ritual__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.ritual__item {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: baseline;
  transition: padding-left .8s var(--ease);
}

.ritual__item:last-child { border-bottom: 1px solid var(--line); }
.ritual__item:hover { padding-left: 16px; }

.ritual__num {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.ritual__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 8px;
}

.ritual__desc {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
}

/* ─────────────────────────────  PHILOSOPHY  ───────────────────────────── */

.philosophy {
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 168, 108, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(196, 168, 130, 0.1), transparent 50%);
  pointer-events: none;
  animation: drift-a 60s var(--ease-soft) infinite alternate;
}

.philosophy .section__kicker { color: var(--gold); }
.philosophy .section__title { color: var(--cream); }
.philosophy .section__title em { color: var(--gold); }
.philosophy .section__lede { color: rgba(246, 243, 236, 0.65); }

.philosophy__quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
  position: relative;
  z-index: 2;
}

.philosophy__quote em { color: var(--gold); }

.philosophy__attribution {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 48px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────  VISIT  ───────────────────────────── */

.visit { background: var(--cream); }

.visit__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.visit__media {
  aspect-ratio: 1;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.visit__media .exp-card__motion {
  background: radial-gradient(ellipse at 60% 40%, #2a2018 0%, #14100c 50%, #050402 100%);
}
.visit__media .exp-card__motion::before {
  background-image:
    radial-gradient(ellipse at 50% 60%, rgba(246, 243, 236, 0.35), transparent 60%),
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 108, 0.35), transparent 60%);
  animation: daylight 40s var(--ease-soft) infinite alternate;
}
.visit__media .exp-card__veil {
  background: linear-gradient(180deg, rgba(14,12,10,0.1) 0%, rgba(14,12,10,0.5) 100%);
}

.visit__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.visit__detail { border-top: 1px solid var(--line); padding-top: 24px; }

.visit__detail-label {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.visit__detail-value {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  color: var(--dark);
}

.visit__detail-aux {
  font-family: var(--body);
  font-size: 15px;
  color: var(--mute);
  margin-top: 6px;
}

.visit__cta {
  align-self: flex-start;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark);
  border: none;
  padding: 22px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .6s var(--ease);
  text-decoration: none;
  display: inline-block;
}

.visit__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .8s var(--ease);
}

.visit__cta:hover { color: var(--dark); }
.visit__cta:hover::before { transform: translateY(0); }
.visit__cta span { position: relative; z-index: 1; }

/* ─────────────────────────────  FOOTER  ───────────────────────────── */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 48px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-dark);
}

.footer__logo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.footer__tag {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(246, 243, 236, 0.55);
  margin-top: 12px;
  max-width: 28ch;
  line-height: 1.5;
}

.footer__col h4 {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(246, 243, 236, 0.7);
  text-decoration: none;
  transition: color .5s var(--ease);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.4);
}

/* ─────────────────────────────  REVEAL  ───────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ─────────────────────────────  FLOATING BOOK FAB  ───────────────────────────── */

.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 60;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 20px 32px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 50px rgba(14, 12, 10, 0.35), 0 0 0 1px rgba(201, 168, 108, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease), background .4s var(--ease);
}

.fab.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab:hover { background: var(--cream); }

.fab__dot {
  width: 6px;
  height: 6px;
  background: var(--dark);
  border-radius: 50%;
  animation: fab-pulse 2.4s var(--ease) infinite;
}

@keyframes fab-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* ─────────────────────────────  RESPONSIVE  ───────────────────────────── */

@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav__links { display: none; }
  .section { padding: 100px 24px; }
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .experience-grid { grid-template-columns: 1fr; }
  .ritual__inner, .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__meta { padding: 0 24px; bottom: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
  .footer { padding: 60px 24px 24px; }
}