/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --surface: #16161a;
  --text: #f4f1ea;
  --text-muted: #a39e93;
  --gold: #cda86a;
  --gold-soft: #e8d5ab;
  --violet: #6a6ccb;
  --line: rgba(244,241,234,0.12);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
}

.aurora-bg{
  position: fixed; inset: 0; z-index: 0;
  width: 100vw; height: 100vh;
  opacity: .55; pointer-events: none;
}

.mouse-glow{
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 560px; height: 560px; border-radius: 50%;
  pointer-events: none; will-change: transform;
  background: radial-gradient(circle, rgba(205,168,106,.45) 0%, rgba(106,108,203,.22) 42%, transparent 72%);
  filter: blur(50px);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .6s ease;
}
.mouse-glow.visible{ opacity: .85; }
@media (hover: none), (pointer: coarse){
  .mouse-glow{ display: none; }
}

a{ color: inherit; text-decoration: none; }
em{ font-style: italic; color: var(--gold-soft); }

::selection{ background: var(--gold); color: #0a0a0c; }

/* ===================== PRELOADER ===================== */
.preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader.done{ opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo{
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: .3em;
  color: var(--text);
  display: flex;
}
.preloader-logo span{
  opacity: 0;
  transform: translateY(16px);
  animation: preloaderLetter .6s ease forwards;
}
.preloader-logo span:nth-child(1){ animation-delay: .05s; }
.preloader-logo span:nth-child(2){ animation-delay: .1s; }
.preloader-logo span:nth-child(3){ animation-delay: .15s; }
.preloader-logo span:nth-child(4){ animation-delay: .2s; }
.preloader-logo span:nth-child(5){ animation-delay: .25s; }
.preloader-logo span:nth-child(6){ animation-delay: .3s; }
.preloader-logo span:nth-child(7){ animation-delay: .35s; }
@keyframes preloaderLetter{ to{ opacity: 1; transform: translateY(0); } }
.preloader-bar{
  width: 180px; height: 1px; background: var(--line); overflow: hidden;
}
.preloader-bar span{
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  animation: preloaderBar 1.4s .4s ease forwards;
}
@keyframes preloaderBar{ to{ width: 100%; } }

/* ===================== CUSTOM CURSOR ===================== */
.cursor, .cursor-dot{
  position: fixed; top: 0; left: 0; z-index: 9998;
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%);
}
.cursor{
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor.hovered{
  width: 64px; height: 64px;
  background: rgba(205,168,106,0.1);
}
.cursor-dot{
  width: 4px; height: 4px; background: var(--gold);
}
@media (hover: none), (pointer: coarse){
  .cursor, .cursor-dot{ display: none; }
  body{ cursor: auto; }
}

/* ===================== PROGRESS BAR ===================== */
.progress-bar{
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  z-index: 999;
}

/* ===================== DOTS NAV ===================== */
.dots-nav{
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  z-index: 500;
  display: flex; flex-direction: column; gap: 18px;
}
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--text-muted);
  position: relative;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.dot::after{
  content: attr(data-label);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; color: var(--text-muted);
  opacity: 0; transition: opacity .25s ease;
}
.dot:hover::after{ opacity: 1; }
.dot.active{
  background: var(--gold); border-color: var(--gold); transform: scale(1.3);
}
@media (max-width: 900px){ .dots-nav{ display: none; } }

/* ===================== TOP NAV ===================== */
.topnav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  padding: 22px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.topnav.scrolled{
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-color: var(--line);
}
.topnav-inner{
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand{
  font-family: var(--serif); font-size: clamp(13px, 1.6vw, 19px); letter-spacing: .1em;
  white-space: nowrap;
}
.brand.small{ font-size: clamp(12px, 2vw, 15px); }
.topnav-links{ display: flex; gap: 36px; }
.topnav-links a{
  font-size: 13px; letter-spacing: .04em; color: var(--text-muted);
  position: relative; padding-bottom: 4px;
  transition: color .3s ease;
}
.topnav-links a::after{
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s ease;
}
.topnav-links a:hover{ color: var(--text); }
.topnav-links a:hover::after{ width: 100%; }
@media (max-width: 800px){ .topnav-links{ display: none; } }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; border-radius: 999px; font-size: 13px; letter-spacing: .04em;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-ghost{
  border: 1px solid var(--line); color: var(--text);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-soft); }
.btn-solid{
  background: var(--text); color: var(--bg); font-weight: 500;
  overflow: hidden; position: relative;
}
.btn-solid span{ position: relative; z-index: 1; }
.btn-solid::before{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.btn-solid:hover::before{ transform: scaleX(1); }
.btn-text{
  font-size: 13px; color: var(--text-muted); border-bottom: 1px solid var(--line);
  padding-bottom: 2px; transition: color .3s ease, border-color .3s ease;
}
.btn-text:hover{ color: var(--gold-soft); border-color: var(--gold-soft); }

/* ===================== SHARED ===================== */
.block{
  position: relative; width: 100%;
  padding: 160px 40px;
  overflow: hidden;
}
.section-head{ max-width: 1280px; margin: 0 auto 64px; text-align: left; }
.index-num{
  font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: .1em;
  display: block; margin-bottom: 14px;
}
.section-title{
  font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; margin-bottom: 16px;
}
.section-sub{ color: var(--text-muted); font-size: 16px; max-width: 480px; }

.grain{
  position: absolute; inset: -20%; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift{
  0%,100%{ transform: translate(0,0); } 20%{ transform: translate(-2%,2%); }
  40%{ transform: translate(2%,-2%); } 60%{ transform: translate(-1%,-1%); } 80%{ transform: translate(1%,2%); }
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal-word span{
  display: inline-block; opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-word.in span{ opacity: 1; transform: translateY(0); }

.reveal-fade{ opacity: 0; transform: translateY(16px); transition: opacity .8s ease .2s, transform .8s ease .2s; }
.reveal-fade.in{ opacity: 1; transform: translateY(0); }

.reveal-up{ opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-up.in{ opacity: 1; transform: translateY(0); }

.reveal-blur{
  opacity: 0; filter: blur(8px); transform: translateY(20px);
  transition: opacity .9s ease, filter .9s ease, transform .9s ease;
}
.reveal-blur.in{ opacity: 1; filter: blur(0); transform: translateY(0); }

/* ===================== BLOCK 1 — HERO ===================== */
.hero{
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 0 40px;
}
.hero-canvas{ position: absolute; inset: 0; z-index: 1; opacity: .55; }

.hero-content{ position: relative; z-index: 2; max-width: 900px; text-align: center; }
.eyebrow{
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-title{
  font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 8vw, 96px);
  line-height: 1.02; letter-spacing: -0.01em;
}
.hero-title .line{
  display: block; overflow: hidden;
}
.hero-title .line span{ display: inline-block; }
.hero-sub{
  margin: 32px auto 0; max-width: 520px; color: var(--text-muted); font-size: 17px; line-height: 1.6;
}
.hero-cta{
  margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
}

.scroll-cue{
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.scroll-cue-text{ font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-cue-line{ width: 1px; height: 50px; background: var(--line); overflow: hidden; position: relative; }
.scroll-cue-line i{
  position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue{ 0%{ top: -50%; } 100%{ top: 100%; } }

/* ===================== BLOCK 2 — PHILOSOPHY ===================== */
.philosophy-grid{
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 220px 1fr 280px; gap: 48px;
  align-items: start;
}
.philosophy-index{ position: relative; }
.index-label{
  font-family: var(--serif); font-size: 22px; color: var(--text); display: block; margin-top: 4px;
}
.index-svg{ width: 100%; max-width: 200px; margin-top: 40px; opacity: .8; }
#philoPath{
  stroke-dasharray: 900; stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s cubic-bezier(.22,1,.36,1);
}
#philoPath.drawn{ stroke-dashoffset: 0; }

.philo-line{
  font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.4; margin-bottom: 28px; max-width: 780px;
}
.philo-meta{ display: flex; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.philo-card{
  border: 1px solid var(--line); border-radius: 16px; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 6px; min-width: 180px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.philo-card-num{ font-family: var(--serif); font-size: 30px; color: var(--gold-soft); }
.philo-card-label{ font-size: 13px; color: var(--text-muted); }
.float-slow{ animation: floatY 6s ease-in-out infinite; }
.float-delay{ animation-delay: 1.2s; }
@keyframes floatY{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.philosophy-portrait{
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 8px;
}
.philosophy-portrait-frame{
  position: relative; width: 100%; aspect-ratio: 5 / 8; overflow: hidden;
  border-radius: 20px 20px 4px 20px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.philosophy-portrait-frame img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 10% center;
  filter: saturate(.9) contrast(1.05);
}
.philosophy-portrait-tint{
  position: absolute; inset: 0;
  background:
    linear-gradient(200deg, rgba(106,108,203,.28), transparent 45%),
    linear-gradient(0deg, rgba(10,10,12,.55), transparent 38%),
    linear-gradient(340deg, rgba(205,168,106,.22), transparent 40%);
  mix-blend-mode: multiply;
}
.philosophy-portrait-grain{
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.philosophy-portrait-caption{
  font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: .04em; color: var(--text-muted);
}

@media (max-width: 900px){
  .philosophy-grid{ grid-template-columns: 1fr 300px; grid-template-areas: "text portrait" "index index"; }
  .philosophy-index{ grid-area: index; }
  .philosophy-text{ grid-area: text; }
  .philosophy-portrait{ grid-area: portrait; }
}
@media (max-width: 800px){
  .philosophy-grid{ grid-template-columns: 1fr; grid-template-areas: "portrait" "index" "text"; }
  .index-svg{ display: none; }
  .philosophy-portrait{ width: 70%; max-width: 400px; margin: 0 auto 12px; }
}
@media (max-width: 480px){
  .philosophy-portrait{ width: 85%; max-width: 360px; margin: 0 auto 12px; }
}

/* ===================== BLOCK 3 — SERVICES ===================== */
.section-head{ position: relative; z-index: 1; }
.cards-grid{
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.tilt-card{
  position: relative; border-radius: 20px; border: 1px solid var(--line);
  background: var(--surface);
  padding: 1px; transform-style: preserve-3d; will-change: transform;
  transition: transform .1s ease, border-color .4s ease;
  opacity: 0; translate: 0 30px;
  animation: cardIn .7s cubic-bezier(.22,1,.36,1) forwards;
  animation-play-state: paused;
}
.tilt-card.in{ animation-play-state: running; }
.tilt-card:nth-child(1){ animation-delay: .05s; }
.tilt-card:nth-child(2){ animation-delay: .15s; }
.tilt-card:nth-child(3){ animation-delay: .25s; }
.tilt-card:nth-child(4){ animation-delay: .35s; }
@keyframes cardIn{ to{ opacity: 1; translate: 0 0; } }
.tilt-card:hover{ border-color: rgba(205,168,106,.4); }

.tilt-card-spot{
  position: absolute; inset: 0; border-radius: 20px; pointer-events: none; z-index: 1;
  background: radial-gradient(240px circle at var(--x,50%) var(--y,50%), rgba(205,168,106,.14), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.tilt-card:hover .tilt-card-spot{ opacity: 1; }

.tilt-card-inner{
  position: relative; z-index: 2; padding: 40px 30px; transform: translateZ(30px);
  height: 100%; display: flex; flex-direction: column;
}
.card-icon{ width: 40px; height: 40px; color: var(--gold-soft); margin-bottom: 28px; }
.tilt-card h3{ font-family: var(--serif); font-weight: 400; font-size: 24px; margin-bottom: 12px; }
.tilt-card p{ color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.card-num{
  margin-top: auto; padding-top: 24px; font-family: var(--serif); font-size: 13px; color: var(--text-muted); opacity: .5;
}

/* ===================== BLOCK 4 — IMPACT ===================== */
.impact{
  padding-left: 0; padding-right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 64px;
}
.impact-canvas{ position: absolute; inset: 0; z-index: 1; opacity: .5; }

.marquee{ width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; position: relative; z-index: 1; }
.marquee-track{
  display: inline-flex; white-space: nowrap; animation: marqueeScroll 22s linear infinite;
  font-family: var(--serif); font-size: clamp(20px, 3vw, 32px); color: var(--text-muted);
}
.marquee-track span:nth-child(odd){ color: var(--gold-soft); }
.marquee-rev .marquee-track{ animation-direction: reverse; animation-duration: 26s; }
@keyframes marqueeScroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.stats-grid{
  position: relative; z-index: 1;
  max-width: 1100px; width: 100%; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px;
  text-align: center;
}
.stat{ display: flex; flex-direction: column; align-items: center; }
.stat-num, .stat-plus{
  font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6vw, 72px);
  color: var(--text); display: inline;
}
.stat-plus{ color: var(--gold-soft); }
.stat-label{ margin-top: 12px; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }

/* ===================== BLOCK 5 — CTA ===================== */
.cta{
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.cta-blob{
  position: absolute; z-index: 0; width: 700px; height: 700px; left: 50%; top: 40%;
  transform: translate(-50%,-50%);
  background: conic-gradient(from 0deg, rgba(205,168,106,.25), rgba(106,108,203,.25), rgba(205,168,106,.25));
  filter: blur(120px); border-radius: 50%;
  animation: blobSpin 16s linear infinite;
}
@keyframes blobSpin{ to{ transform: translate(-50%,-50%) rotate(360deg); } }

.cta-content{ position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.cta-title{ font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 6vw, 64px); line-height: 1.15; margin-bottom: 20px; }
.cta-sub{ color: var(--text-muted); font-size: 17px; margin-bottom: 48px; }

.magnetic-btn{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 200px; height: 200px; border-radius: 50%; border: 1px solid var(--line);
  transition: border-color .3s ease;
}
.magnetic-btn:hover{ border-color: var(--gold); }
.magnetic-btn-inner{
  width: 150px; height: 150px; border-radius: 50%; background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  transition: background .3s ease, transform .3s ease;
}
.magnetic-btn:hover .magnetic-btn-inner{ background: var(--gold-soft); }

.cta-contacts{ margin-top: 56px; display: flex; gap: 14px; justify-content: center; color: var(--text-muted); font-size: 14px; }
.cta-contacts a{ transition: color .3s ease; }
.cta-contacts a:hover{ color: var(--gold-soft); }

/* ===================== MEGA FOOTER ===================== */
.footer-mega{
  position: relative; z-index: 2; width: 100%; max-width: 1280px;
  margin: 140px auto 0; text-align: left;
}

.footer-top{
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px;
  padding-top: 64px; padding-bottom: 56px; border-top: 1px solid var(--line);
}

.footer-brand .brand{ display: block; margin-bottom: 18px; }
.footer-tagline{
  color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 26px;
}
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.footer-social a:hover{ border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.footer-social svg{ width: 16px; height: 16px; }

.footer-col{ display: flex; flex-direction: column; gap: 14px; }
.footer-col h4{
  font-family: var(--serif); font-weight: 400; font-size: 15px; color: var(--text);
  margin-bottom: 6px; letter-spacing: .02em;
}
.footer-col a, .footer-col span{ font-size: 14px; color: var(--text-muted); transition: color .3s ease; }
.footer-col a:hover{ color: var(--gold-soft); }

.footer-disclaimer{
  display: flex; gap: 12px; align-items: flex-start;
  padding: 26px 0; border-top: 1px solid var(--line);
  color: var(--text-muted); font-size: 12.5px; line-height: 1.65; max-width: 720px;
}
.footer-disclaimer svg{ flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; color: var(--gold); }

.footer-bottom{
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 24px 0 48px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-muted);
}
.footer-legal{ display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a{ transition: color .3s ease; }
.footer-legal a:hover{ color: var(--gold-soft); }
.back-top{ transition: color .3s ease; }
.back-top:hover{ color: var(--gold-soft); }

@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ===================== BOOKING PAGE ===================== */
.booking-hero{
  padding: 160px 40px 80px; text-align: center;
}
.booking-hero-inner{ max-width: 760px; margin: 0 auto; }
.booking-hero .eyebrow{ margin-bottom: 22px; }
.booking-title{
  font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1; margin-bottom: 20px;
}
.booking-sub{ color: var(--text-muted); font-size: 16px; line-height: 1.6; max-width: 560px; margin: 0 auto 40px; }
.book-primary-btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; border-radius: 999px; background: var(--text); color: var(--bg);
  font-size: 15px; font-weight: 500; position: relative; overflow: hidden;
}
.book-primary-btn span{ position: relative; z-index: 1; }
.book-primary-btn::before{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.book-primary-btn:hover::before{ transform: scaleX(1); }
.book-primary-btn:hover{ color: var(--bg); }
.book-fallback{ margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.book-fallback a{ color: var(--gold-soft); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.book-fallback a:hover{ border-color: var(--gold-soft); }

.promo-strip{
  max-width: 1100px; margin: 0 auto; padding: 0 40px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.promo-badge{
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px;
  background: linear-gradient(180deg, rgba(205,168,106,.06), transparent);
  font-size: 13.5px; line-height: 1.6; color: var(--text-muted);
}
.promo-badge svg{ width: 22px; height: 22px; color: var(--gold-soft); margin-bottom: 14px; }

.contact-grid{
  max-width: 1100px; margin: 0 auto; padding: 0 40px 90px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.contact-card{
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px;
}
.contact-card h4{
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-weight: 400;
}
.contact-card a, .contact-card p{ font-size: 15px; color: var(--text); line-height: 1.6; }
.contact-card a{ transition: color .3s ease; }
.contact-card a:hover{ color: var(--gold-soft); }
.contact-card .muted{ color: var(--text-muted); font-size: 13px; margin-top: 4px; }

.bio-section{ max-width: 900px; margin: 0 auto; padding: 0 40px 100px; }
.bio-section .section-head{ margin-bottom: 40px; text-align: center; max-width: none; }
.bio-section .section-sub{ margin: 0 auto; }
.bio-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
  list-style: none;
}
.bio-grid li{
  display: flex; gap: 12px; font-size: 14.5px; color: var(--text-muted); line-height: 1.6;
}
.bio-grid li svg{ flex-shrink: 0; width: 18px; height: 18px; color: var(--gold-soft); margin-top: 2px; }
.bio-grid li b{ color: var(--text); font-weight: 500; }

.svc-subnav{
  max-width: 1100px; margin: 0 auto; padding: 0 40px 40px;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.svc-subnav a{
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; color: var(--text-muted); transition: border-color .3s ease, color .3s ease;
}
.svc-subnav a:hover{ border-color: var(--gold); color: var(--gold-soft); }

.svc-category{ max-width: 900px; margin: 0 auto; padding: 60px 40px; scroll-margin-top: 100px; }
.svc-category-head{ margin-bottom: 28px; }
.svc-category-head h3{ font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3vw, 32px); }
.svc-list{ display: flex; flex-direction: column; }
.svc-row{
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.svc-row.top .svc-name::after{
  content: 'ТОП'; margin-left: 10px; font-size: 10px; letter-spacing: .05em;
  color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 2px 8px; vertical-align: middle;
}
.svc-name{ font-size: 15.5px; color: var(--text); }
.svc-meta{ font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.svc-price{ font-family: var(--serif); font-size: 17px; color: var(--gold-soft); white-space: nowrap; text-align: right; }
.svc-book{
  grid-column: 1 / -1; justify-self: start; margin-top: 4px;
  font-size: 12.5px; color: var(--text-muted); border-bottom: 1px solid var(--line);
  padding-bottom: 1px; transition: color .3s ease, border-color .3s ease;
}
.svc-book:hover{ color: var(--gold-soft); border-color: var(--gold-soft); }

@media (min-width: 640px){
  .svc-row{ grid-template-columns: 1fr auto auto auto; }
  .svc-book{ grid-column: auto; margin-top: 0; }
}

@media (max-width: 900px){
  .promo-strip{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr 1fr; }
  .bio-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* ===================== RESULTS GALLERY ===================== */
.results-hero{ padding: 160px 40px 60px; text-align: center; }
.results-hero-inner{ max-width: 700px; margin: 0 auto; }
.results-hero .eyebrow{ margin-bottom: 22px; }

.gallery-note{
  max-width: 700px; margin: 0 auto 56px; padding: 0 40px;
  text-align: center; color: var(--text-muted); font-size: 13px; line-height: 1.6;
}

.gallery-masonry{
  max-width: 1280px; margin: 0 auto; padding: 0 40px 100px;
  column-count: 3; column-gap: 18px;
}
.gallery-item{
  break-inside: avoid; margin-bottom: 18px; border-radius: 18px; overflow: hidden;
  position: relative; border: 1px solid var(--line);
  opacity: 0; transform: translateY(24px);
  animation: cardIn .8s cubic-bezier(.22,1,.36,1) forwards;
  animation-play-state: paused;
}
.gallery-item.in{ animation-play-state: running; }
.gallery-item img{
  width: 100%; display: block; transition: transform .6s ease, filter .6s ease;
}
.gallery-item:hover img{ transform: scale(1.04); }
.gallery-item-glow{
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .gallery-item-glow{ opacity: 1; }

@media (max-width: 900px){ .gallery-masonry{ column-count: 2; } }
@media (max-width: 560px){ .gallery-masonry{ column-count: 1; } }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,6,8,.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lightbox img{
  max-width: min(90vw, 900px); max-height: 84vh; border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  opacity: 0; transform: scale(.96); transition: opacity .35s ease, transform .35s ease;
}
.lightbox.open img{ opacity: 1; transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: absolute; color: var(--text); border: 1px solid var(--line); border-radius: 50%;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.03); transition: border-color .3s ease, color .3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ border-color: var(--gold); color: var(--gold-soft); }
.lightbox-close{ top: 28px; right: 28px; }
.lightbox-prev{ left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next{ right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-counter{
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: .1em; color: var(--text-muted);
}
@media (max-width: 700px){
  .lightbox-prev{ left: 10px; } .lightbox-next{ right: 10px; }
  .lightbox-close{ top: 14px; right: 14px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 700px){
  .block{ padding: 110px 22px; }
  .hero-cta{ flex-direction: column; gap: 18px; }
  .magnetic-btn{ width: 160px; height: 160px; }
  .magnetic-btn-inner{ width: 120px; height: 120px; font-size: 13px; }
}
