/* ═════════════════════════════════════════════════════════════
   THE EXTENSION STUDIO, style.css
   Palette: espresso ink · ivory cream · rose gold
   Type:    Cormorant Garamond (display) · Jost (ui/body)
   ═════════════════════════════════════════════════════════════ */

:root {
  --ink: #171114;
  --ink-2: #221820;
  --ink-3: #2e2029;
  --cream: #f6efe9;
  --cream-2: #efe5dc;
  --rose: #d9a08c;
  --rose-soft: #e8c2b3;
  --gold: #c98a5e;
  --text-dark: #241a20;
  --text-light: #f6ede6;
  --muted-light: rgba(246, 237, 230, 0.74);
  --muted-dark: rgba(36, 26, 32, 0.7);
  --grad: linear-gradient(115deg, var(--rose) 0%, var(--gold) 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ink);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--rose); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Cursor ────────────────────────────────────────────────── */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none; z-index: 1000;
  opacity: 0; transition: opacity 0.4s;
}
.cursor.is-live, .cursor-ring.is-live { opacity: 1; }
.cursor {
  width: 7px; height: 7px; background: var(--rose);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(217, 160, 140, 0.55);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.35s, background 0.35s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(217, 160, 140, 0.1);
  border-color: rgba(217, 160, 140, 0.9);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ── Progress bar ──────────────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 2px;
  background: var(--grad);
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  /* failsafe: if JS never runs, CSS alone clears the preloader */
  animation: preloader-bail 0.6s ease 4s forwards;
}
@keyframes preloader-bail {
  to { opacity: 0; visibility: hidden; }
}
.preloader__inner { text-align: center; }
.preloader__monogram {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(64px, 10vw, 110px); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader__word {
  margin-top: 10px;
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--muted-light);
}
.preloader__bar {
  width: 160px; height: 1px; margin: 26px auto 0;
  background: rgba(243, 233, 226, 0.14); overflow: hidden;
}
.preloader__bar span {
  display: block; width: 100%; height: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 400;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background 0.4s, color 0.4s, border-color 0.4s;
  will-change: transform;
}
.btn--gold {
  background: var(--grad); color: var(--ink);
  box-shadow: 0 8px 30px rgba(201, 138, 94, 0.28);
}
.btn--gold:hover { box-shadow: 0 14px 44px rgba(201, 138, 94, 0.45); }
.btn--ghost {
  border: 1px solid rgba(243, 233, 226, 0.3); color: var(--text-light);
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-soft); }
.section-light .btn--ghost {
  border-color: rgba(36, 26, 32, 0.3); color: var(--text-dark);
}
.section-light .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 18px 38px; font-size: 13.5px; }
.btn--xl { padding: 22px 52px; font-size: 15px; }

/* ── Type helpers ──────────────────────────────────────────── */
.eyebrow {
  font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow--light { color: var(--rose); }
.eyebrow--gold { color: var(--rose); }

.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.06; letter-spacing: -0.01em;
  color: var(--text-dark);
}
.h2 em { font-style: italic; color: var(--gold); }
.h2--light { color: var(--text-light); }
.h2--light em {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 300;
  color: var(--muted-dark); max-width: 56ch; margin-top: 26px;
}
.lead--light { color: var(--muted-light); }
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-light { background: var(--cream); color: var(--text-dark); }

/* line-mask reveal (JS splits .line > span) */
.line { display: block; overflow: hidden; }
.line > span { display: inline-block; will-change: transform; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s, box-shadow 0.5s;
}
.nav.is-scrolled {
  background: rgba(23, 17, 20, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(243, 233, 226, 0.08);
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-script {
  font-family: var(--serif); font-style: italic;
  font-size: 21px; color: var(--rose);
}
.nav__logo-word {
  font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted-light);
}
.nav__links { display: flex; gap: clamp(16px, 2.4vw, 34px); }
.nav__links a {
  font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-light); position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--grad);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--text-light); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__book { padding: 12px 24px; font-size: 12px; }
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 34px; height: 30px; position: relative;
}
.nav__burger span {
  position: absolute; left: 4px; right: 4px; height: 1.6px;
  background: var(--text-light); transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger.is-open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 14px; transform: rotate(-45deg); }

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(23, 17, 20, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px clamp(28px, 8vw, 60px) 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; gap: 6px; }
.mmenu__links a {
  font-family: var(--serif); font-size: clamp(34px, 9vw, 52px);
  color: var(--text-light); padding: 6px 0;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s, color 0.3s;
}
.mmenu.is-open .mmenu__links a { transform: translateY(0); opacity: 1; }
.mmenu__links a:hover { color: var(--rose); }
.mmenu__links a:nth-child(1) { transition-delay: 0.05s; }
.mmenu__links a:nth-child(2) { transition-delay: 0.1s; }
.mmenu__links a:nth-child(3) { transition-delay: 0.15s; }
.mmenu__links a:nth-child(4) { transition-delay: 0.2s; }
.mmenu__links a:nth-child(5) { transition-delay: 0.25s; }
.mmenu__links a:nth-child(6) { transition-delay: 0.3s; }
.mmenu__links a:nth-child(7) { transition-delay: 0.35s; }
.mmenu__book { font-size: clamp(22px, 6vw, 30px) !important; color: var(--rose) !important; font-style: italic; }
.mmenu__foot {
  margin-top: auto; display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-light);
}
.mmenu__foot a { color: var(--rose); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px clamp(20px, 5vw, 70px) 110px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 60% at 82% 30%, rgba(217, 160, 140, 0.13), transparent 70%),
    radial-gradient(50% 55% at 8% 88%, rgba(201, 138, 94, 0.08), transparent 70%);
}
.hero__ghost {
  position: absolute; top: 6%; left: -2%;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(160px, 24vw, 360px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 160, 140, 0.12);
  white-space: nowrap; pointer-events: none; user-select: none;
  will-change: transform;
}
.hero__grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1360px; margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 30px;
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.03; letter-spacing: -0.015em;
  color: var(--text-light);
}
.hero__title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  margin-top: 28px; max-width: 46ch;
  font-size: clamp(15.5px, 1.6vw, 18.5px); color: var(--muted-light);
}
.hero__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero__trust {
  margin-top: 34px;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246, 237, 230, 0.55);
}
.hero__stars { color: var(--gold); letter-spacing: 3px; }

/* stacked landscape panels, shown near native resolution, no zoom-blur */
.hero__media { position: relative; padding-bottom: 64px; }
.hero__photo {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  will-change: transform;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo--main { aspect-ratio: 3 / 2; }

/* cinematic crossfade slideshow */
.hero__slides { position: absolute; inset: 0; }
.hero__slides img {
  position: absolute; inset: 0;
  opacity: 0; will-change: transform, opacity;
}
.hero__slides img.is-active { opacity: 1; }
.hero__slidebar {
  position: absolute; right: 26px; bottom: 24px; z-index: 2;
  display: flex; gap: 7px;
}
.hero__slidebar i {
  width: 22px; height: 2px; border-radius: 2px;
  background: rgba(246, 237, 230, 0.35);
  transition: background 0.5s, width 0.5s var(--ease);
}
.hero__slidebar i.is-active { width: 34px; background: var(--rose); }
.hero__photo-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(246, 237, 230, 0.35);
  border-radius: 6px; pointer-events: none;
}
.hero__photo--accent {
  position: absolute; left: -7%; bottom: 0;
  width: 50%; aspect-ratio: 16 / 10;
  border: 4px solid var(--ink);
  outline: 1px solid rgba(217, 160, 140, 0.45);
  border-radius: 8px;
}

.hero__scrollhint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
}
.hero__scrollhint span {
  display: block; width: 1px; height: 54px; margin: 0 auto 10px;
  background: linear-gradient(180deg, transparent, var(--rose));
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: 0 0; }
  45% { transform: scaleY(1); transform-origin: 0 0; }
  55% { transform: scaleY(1); transform-origin: 0 100%; }
  100% { transform: scaleY(0); transform-origin: 0 100%; }
}
.hero__scrollhint p {
  font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--muted-light);
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-clip { overflow: hidden; }
.marquee {
  position: relative; z-index: 4;
  background: var(--grad);
  padding: 15px 0; overflow: hidden;
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; }
.marquee__track span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.8vw, 21px); color: var(--ink);
  padding-right: 8px;
}

/* ── About ─────────────────────────────────────────────────── */
.about { padding: clamp(100px, 13vw, 190px) clamp(20px, 5vw, 70px); }
.about__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  max-width: 1280px; margin: 0 auto; align-items: center;
}
.about__media { position: relative; padding-bottom: 46px; }
.about__craft {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 30px 70px rgba(36, 26, 32, 0.25);
  will-change: transform;
}
.about__craft img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__craft-frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(246, 239, 233, 0.5);
  border-radius: 6px; pointer-events: none;
}
.about__second {
  position: absolute; right: -8%; bottom: -6px;
  width: 48%; aspect-ratio: 16 / 10;
  border-radius: 8px; overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 24px 56px rgba(36, 26, 32, 0.3);
}
.about__second img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__badge {
  position: absolute; left: 4%; bottom: -24px;
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 100px;
  padding: 10px 24px 10px 10px;
  box-shadow: 0 18px 44px rgba(36, 26, 32, 0.22);
}
.about__badge img {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; object-position: 50% 12%;
}
.about__badge-script {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 21px; line-height: 1.1; color: var(--text-dark);
}
.about__badge-role {
  display: block; font-size: 9.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-top: 3px;
}
.about__quote {
  margin: 34px 0; padding-left: 26px;
  border-left: 2px solid var(--rose);
}
.about__quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 27px); line-height: 1.35;
  color: var(--text-dark);
}
.about__quote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.about__chips li {
  font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid rgba(36, 26, 32, 0.22); color: var(--muted-dark);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.about__chips li:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,138,94,0.06); }

/* ── Method (horizontal) ───────────────────────────────────── */
.method { background: var(--ink); position: relative; }
.method__pin {
  min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 0 60px;
}
.method__head { padding: 0 clamp(20px, 5vw, 70px); margin-bottom: clamp(30px, 5vh, 70px); }
.method__track {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 56px);
  padding: 0 clamp(20px, 5vw, 70px);
  width: max-content; will-change: transform;
}
.mpanel {
  width: clamp(300px, 34vw, 480px); flex-shrink: 0;
  padding: clamp(30px, 3vw, 50px);
  border: 1px solid rgba(243, 233, 226, 0.1); border-radius: 18px;
  background: linear-gradient(160deg, rgba(46, 32, 41, 0.6), rgba(34, 24, 32, 0.25));
  position: relative; overflow: hidden;
  transition: border-color 0.4s;
}
.mpanel:hover { border-color: rgba(217, 160, 140, 0.4); }
.mpanel__num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(64px, 7vw, 108px); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9;
}
.mpanel__body h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px); margin: 18px 0 14px;
  color: var(--text-light);
}
.mpanel__body p { color: var(--muted-light); font-size: 15.5px; }
.mpanel__tag {
  display: inline-block; margin-top: 22px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose); border: 1px solid rgba(217, 160, 140, 0.35);
  padding: 8px 16px; border-radius: 100px;
}
.mpanel--img {
  padding: 0; border: 0; background: none;
  width: clamp(340px, 36vw, 560px); aspect-ratio: 16 / 10;
  border-radius: 18px; overflow: hidden;
  align-self: center;
}
.mpanel--img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); will-change: transform;
}
.mpanel--cta {
  border: 0; background: none; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.mpanel__endword {
  font-family: var(--serif); font-size: clamp(56px, 6vw, 92px);
  line-height: 1; color: var(--text-light);
}
.mpanel__endword em {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* no-pin fallback (mobile / reduced motion): native horizontal swipe */
.no-pin .method__pin { min-height: 0; overflow: visible; }
.no-pin .method__track {
  overflow-x: auto; width: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 26px;
  scrollbar-color: var(--rose) rgba(243, 233, 226, 0.08);
}
.no-pin .mpanel { scroll-snap-align: center; }
.no-pin .mpanel--img img { transform: none; }

/* ── Studio in motion ──────────────────────────────────────── */
.motion { padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 70px); }
.motion__head { text-align: center; max-width: 800px; margin: 0 auto clamp(50px, 7vw, 90px); }
.motion__row {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(18px, 3vw, 44px); flex-wrap: wrap;
  perspective: 1200px;
}
.reel {
  position: relative; width: clamp(220px, 24vw, 300px);
  aspect-ratio: 9/16; border-radius: 22px; overflow: hidden;
  box-shadow: 0 36px 80px rgba(36, 26, 32, 0.3);
  will-change: transform; background: var(--ink-2);
}
.reel--tall { width: clamp(250px, 27vw, 340px); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__poster {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  animation: reel-drift 16s ease-in-out infinite alternate;
  transition: opacity 0.8s;
}
.reel:nth-child(2) .reel__poster { animation-delay: -6s; }
.reel:nth-child(3) .reel__poster { animation-delay: -11s; }
.reel.is-playing .reel__poster { opacity: 0; }
@keyframes reel-drift {
  0%   { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.1) translateY(-2%); }
}
.reel figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light);
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  padding-top: 60px;
  background: linear-gradient(180deg, transparent, rgba(23,17,20,0.0));
}
.reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 17, 20, 0.55) 100%);
}
.motion__ig { text-align: center; margin-top: clamp(44px, 6vw, 70px); color: var(--muted-dark); }
.motion__ig a {
  color: var(--gold); font-weight: 400;
  border-bottom: 1px solid rgba(201, 138, 94, 0.4);
  transition: border-color 0.3s;
}
.motion__ig a:hover { border-color: var(--gold); }

/* ── Services ──────────────────────────────────────────────── */
.services {
  background:
    radial-gradient(70% 50% at 80% 0%, rgba(217, 160, 140, 0.07), transparent 60%),
    var(--ink);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 70px);
}
.services__head { text-align: center; max-width: 760px; margin: 0 auto clamp(56px, 7vw, 96px); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  max-width: 1280px; margin: 0 auto;
}
.scard {
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(243, 233, 226, 0.1); border-radius: 18px;
  background: linear-gradient(165deg, rgba(46, 32, 41, 0.55), rgba(34, 24, 32, 0.2));
  will-change: transform;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.scard:hover {
  border-color: rgba(217, 160, 140, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.scard__cat {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px); color: var(--text-light);
  margin-bottom: 26px;
}
.scard ul { display: flex; flex-direction: column; gap: 17px; }
.scard li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 15px; color: var(--muted-light);
}
.scard li span { flex-shrink: 1; }
.scard li i {
  flex: 1; border-bottom: 1px dotted rgba(243, 233, 226, 0.22);
  transform: translateY(-4px);
}
.scard li b {
  font-weight: 400; color: var(--rose-soft); white-space: nowrap;
  font-size: 16px;
}
.scard li small { color: rgba(243,233,226,0.4); font-size: 11.5px; white-space: nowrap; }
.scard__hl b {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 500;
}
.scard__note {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(243, 233, 226, 0.08);
  font-size: 13px; color: rgba(243, 233, 226, 0.5); font-style: italic;
}
.scard__link {
  display: inline-block; margin-top: 16px;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); transition: color 0.3s;
}
.scard__link:hover { color: var(--rose-soft); }
.services__cta { text-align: center; margin-top: clamp(50px, 7vw, 80px); }
.services__cta p {
  margin-top: 18px; font-size: 12.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted-light);
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery {
  background: var(--ink);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 70px) clamp(120px, 14vw, 200px);
  overflow: hidden;
}
.gallery__head { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }

/* ── Before / After sliders ────────────────────────────────── */
.ba {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 36px);
  max-width: 1240px; margin: 0 auto clamp(64px, 8vw, 110px);
}
@media (max-width: 900px) {
  .ba { grid-template-columns: 1fr; max-width: 480px; }
}
.ba__stage {
  --split: 55%;
  position: relative; aspect-ratio: 3 / 4;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  cursor: ew-resize; touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ba__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
}
.ba__afterwrap {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--split));
  pointer-events: none;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--split);
  width: 2px; transform: translateX(-1px);
  background: linear-gradient(180deg, rgba(217,160,140,0.2), var(--rose) 50%, rgba(217,160,140,0.2));
  pointer-events: none;
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; letter-spacing: -1px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}
.ba__tag {
  position: absolute; top: 16px;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(23, 17, 20, 0.65); color: var(--text-light);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba__tag--b { left: 16px; }
.ba__tag--a { right: 16px; background: var(--grad); color: var(--ink); font-weight: 500; }
.ba__caption {
  margin-top: 16px; text-align: center;
  font-size: 14px; color: var(--muted-light); font-style: italic;
}
.ba__caption em { color: var(--rose-soft); }
.gallery__feature {
  max-width: 1000px; margin: 0 auto clamp(20px, 3vw, 40px);
  aspect-ratio: 21 / 10;
}
.gallery__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.6vw, 36px);
  max-width: 1240px; margin: 0 auto;
  align-items: start;
}
.gallery__col { display: flex; flex-direction: column; gap: clamp(18px, 2.6vw, 36px); will-change: transform; }
.gallery__col--lead { margin-top: clamp(30px, 4vw, 60px); }
.gimg {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 10; box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}
.gimg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 1.2s var(--ease);
  will-change: transform;
}
.gimg:hover img { transform: scale(1.0); }
.gimg figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--text-light);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.gimg:hover figcaption { opacity: 1; transform: translateY(0); }
.gimg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 17, 20, 0.45) 100%);
  opacity: 0; transition: opacity 0.5s;
}
.gimg:hover::after { opacity: 1; }
.gallery__more { text-align: center; margin-top: clamp(56px, 8vw, 100px); color: var(--muted-light); }
.gallery__more a {
  color: var(--rose); border-bottom: 1px solid rgba(217, 160, 140, 0.4);
  transition: border-color 0.3s, color 0.3s;
}
.gallery__more a:hover { color: var(--rose-soft); border-color: var(--rose-soft); }

/* ── Academy ───────────────────────────────────────────────── */
.academy {
  background:
    radial-gradient(60% 70% at 10% 20%, rgba(217, 160, 140, 0.08), transparent 55%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  padding: clamp(110px, 14vw, 190px) clamp(20px, 5vw, 70px);
}
.academy__inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(44px, 6vw, 100px);
  max-width: 1280px; margin: 0 auto; align-items: center;
}
.academy__stats { display: flex; gap: clamp(28px, 4vw, 60px); margin-top: 48px; flex-wrap: wrap; }
.stat b {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.4vw, 62px); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span {
  display: block; margin-top: 8px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-light);
}
.academy__cards { display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 32px); }
.acard {
  padding: clamp(30px, 3.4vw, 48px);
  border-radius: 20px; position: relative;
  background: linear-gradient(150deg, rgba(217, 160, 140, 0.13), rgba(46, 32, 41, 0.5));
  border: 1px solid rgba(217, 160, 140, 0.28);
  will-change: transform;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.acard:hover { border-color: rgba(217, 160, 140, 0.6); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.acard--alt {
  background: linear-gradient(150deg, rgba(46, 32, 41, 0.5), rgba(34, 24, 32, 0.2));
  border-color: rgba(243, 233, 226, 0.12);
}
.acard__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.acard h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px); color: var(--text-light);
}
.acard__badge {
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  background: var(--grad); color: var(--ink);
  padding: 7px 15px; border-radius: 100px; font-weight: 500;
}
.acard__price {
  font-family: var(--serif); font-size: clamp(32px, 3.4vw, 46px);
  margin: 16px 0 20px; color: var(--rose-soft);
}
.acard__price small {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-light); margin-left: 8px;
}
.acard ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.acard li {
  position: relative; padding-left: 24px;
  font-size: 15px; color: var(--muted-light);
}
.acard li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--rose); font-size: 12px;
}

/* ── Voices ────────────────────────────────────────────────── */
.voices {
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 70px);
  text-align: center;
}
.voices__row {
  display: flex; justify-content: center; align-items: stretch;
  gap: clamp(18px, 2.6vw, 36px); flex-wrap: wrap;
  margin-top: clamp(50px, 7vw, 90px);
}
.voice {
  width: min(340px, 100%);
  padding: clamp(30px, 3vw, 44px) clamp(24px, 2.6vw, 38px);
  background: #fff; border-radius: 18px;
  box-shadow: 0 26px 60px rgba(36, 26, 32, 0.12);
  will-change: transform;
}
.voice--mid { transform: translateY(24px); }
.voice__stars { color: var(--gold); letter-spacing: 6px; font-size: 15px; margin-bottom: 18px; }
.voice p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px); line-height: 1.4; color: var(--text-dark);
}
.voice cite {
  display: block; margin-top: 18px; font-style: normal;
  font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted-dark);
}

/* ── Visit / Footer ────────────────────────────────────────── */
.visit {
  background:
    radial-gradient(90% 60% at 50% 110%, rgba(217, 160, 140, 0.12), transparent 60%),
    var(--ink);
  padding: clamp(110px, 14vw, 190px) clamp(20px, 5vw, 70px) 0;
}
.visit__inner { max-width: 1280px; margin: 0 auto; }
.visit__cta { text-align: center; margin-bottom: clamp(70px, 9vw, 130px); }
.visit__big {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 10vw, 150px); line-height: 1.02;
  color: var(--text-light); margin-bottom: 46px;
}
.visit__big em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.visit__note {
  margin-top: 20px; font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted-light);
}
.visit__info {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(50px, 6vw, 80px) 0;
  border-top: 1px solid rgba(243, 233, 226, 0.1);
}
.vblock h4 {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 18px;
}
.vblock p { font-size: 16.5px; color: var(--muted-light); line-height: 1.75; }
.vblock a { color: var(--text-light); transition: color 0.3s; }
.vblock a:hover { color: var(--rose); }
.vblock-dim { color: rgba(243, 233, 226, 0.38); font-size: 13.5px; }
.vblock > a {
  display: inline-block; margin-top: 12px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose);
}

.footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(243, 233, 226, 0.08);
  font-size: 12.5px; color: rgba(243, 233, 226, 0.42);
}
.footer__brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer__script { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--rose); }
.footer__brand span:last-child { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { transition: color 0.3s; }
.footer__links a:hover { color: var(--rose); }

/* ── Mobile sticky booking bar ─────────────────────────────── */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 240;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(23, 17, 20, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(217, 160, 140, 0.22);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.bookbar.is-visible { transform: translateY(0); }
.bookbar__label {
  display: flex; flex-direction: column; line-height: 1.4;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-light);
}
.bookbar__stars { color: var(--gold); letter-spacing: 3px; font-size: 12px; }
.bookbar .btn { padding: 13px 26px; font-size: 12.5px; white-space: nowrap; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__media { max-width: 640px; }
  .hero__ghost { top: 2%; -webkit-text-stroke-color: rgba(217, 160, 140, 0.07); }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .scard:last-child { grid-column: span 2; }
  .academy__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__book { display: none; }
  .hero { padding-top: 130px; padding-bottom: 90px; }
  .hero__media { padding-bottom: 40px; }
  .hero__photo--accent { left: -4%; width: 46%; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; margin: 0 auto 30px; }
  .about__second { right: -2%; }
  .services__grid { grid-template-columns: 1fr; }
  .scard:last-child { grid-column: auto; }
  .gallery__feature { aspect-ratio: 16 / 10; }
  .gallery__cols { grid-template-columns: 1fr; }
  .gallery__col--lead { margin-top: 0; }
  .voice--mid { transform: none; }
  .visit__info { grid-template-columns: 1fr; gap: 40px; }
  .footer { justify-content: center; text-align: center; padding-bottom: 100px; }
  .bookbar { display: flex; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
