/* =========================================================
   Luxury & Prestige Glam — editorial luxury
   Palette: warm noir · ivory · champagne gold · soft blush
   Type: Fraunces (display) + Jost (sans)
   ========================================================= */

:root {
  --noir:      #17110d;
  --noir-soft: #221913;
  --espresso:  #3a2a20;
  --ivory:     #f6efe4;
  --cream:     #fbf6ec;
  --gold:      #c6a25e;
  --gold-lite: #e0c590;
  --blush:     #e7c7bf;
  --rose:      #caa39a;
  --muted:     #8a7a6b;
  --line:      rgba(198,162,94,.28);

  --ff-disp: "Fraunces", Georgia, serif;
  --ff-sans: "Jost", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1280px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  color: var(--espresso);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  letter-spacing: .01em;
  background-color: var(--cream);
  background-image:
    radial-gradient(60vw 60vw at 100% 0%, rgba(231,199,191,.34), transparent 60%),
    radial-gradient(55vw 55vw at 0% 35%, rgba(198,162,94,.16), transparent 58%),
    radial-gradient(70vw 50vw at 90% 80%, rgba(231,199,191,.28), transparent 60%),
    linear-gradient(180deg, var(--cream), #f3eadc 100%);
  background-attachment: fixed;
}

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

h1, h2, h3 { font-family: var(--ff-disp); font-weight: 400; line-height: 1.04; letter-spacing: -.015em; }
em { font-style: italic; }

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

/* ── Grain overlay ─────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  --bpad: .95em 1.9em;
  display: inline-flex; align-items: center; gap: .5em;
  padding: var(--bpad);
  font-family: var(--ff-sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-lite), var(--gold));
  color: var(--noir);
  box-shadow: 0 10px 30px -10px rgba(198,162,94,.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(198,162,94,.85); }
.btn--ghost {
  background: transparent; color: var(--ivory); border-color: rgba(246,239,228,.4);
}
.btn--ghost:hover { background: var(--ivory); color: var(--noir); transform: translateY(-3px); }
.btn--ghost-dark { color: var(--espresso); border-color: var(--line); }
.btn--ghost-dark:hover { background: var(--noir); color: var(--ivory); border-color: var(--noir); }

/* ── Shared bits ───────────────────────────────────────── */
.eyebrow {
  font-size: .72rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.25rem;
}
.stars { color: var(--gold); letter-spacing: .15em; }
.link-arrow {
  display: inline-block; margin-top: 1.6rem; color: var(--espresso);
  text-decoration: none; font-weight: 500; letter-spacing: .04em;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color .3s, letter-spacing .3s;
}
.link-arrow:hover { color: var(--gold); letter-spacing: .08em; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem,6vw,5rem); }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
.section-head__sub { color: var(--muted); margin-top: 1.2rem; font-size: 1.05rem; }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(23,17,13,.82); backdrop-filter: blur(14px);
  padding-top: .85rem; padding-bottom: .85rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav__mark {
  font-family: var(--ff-disp); font-size: 1.35rem; font-weight: 500;
  color: var(--gold); letter-spacing: .02em; line-height: 1;
}
.nav__mark .amp { font-style: italic; font-size: .8em; opacity: .8; }
.nav__name { font-family: var(--ff-disp); color: var(--ivory); font-size: 1.05rem; letter-spacing: .02em; }
.nav__name em { color: var(--gold); }
.nav:not(.scrolled) .nav__name { color: var(--ivory); }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  color: var(--ivory); text-decoration: none; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  position: relative; opacity: .85; transition: opacity .3s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { opacity: 1; }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { color: var(--noir) !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--ivory); transition: .35s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 7rem var(--pad) 4rem; overflow: hidden; isolation: isolate;
  background: var(--noir);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(23,17,13,.55) 0%, rgba(23,17,13,.78) 55%, rgba(23,17,13,.95) 100%),
    url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1900&q=80&auto=format&fit=crop") center 30%/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__glow {
  position: absolute; z-index: -1; width: 60vw; height: 60vw; right: -15vw; top: -15vw;
  background: radial-gradient(circle, rgba(198,162,94,.32), transparent 65%);
  filter: blur(20px);
}
.hero__inner { max-width: 940px; }
.hero__title {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  color: var(--ivory); margin: 1rem 0 1.8rem;
}
.hero__title span { display: block; }
.hero__script {
  font-style: italic; font-weight: 300; color: var(--gold);
  font-size: 1.02em; margin: -.06em 0;
}
.hero__lede {
  color: rgba(246,239,228,.8); font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 33ch; font-weight: 300;
}
.hero__lede strong { color: var(--gold-lite); font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.4rem 0 2rem; }
.hero__rating {
  display: flex; align-items: center; gap: .8rem;
  color: rgba(246,239,228,.7); font-size: .85rem; letter-spacing: .06em;
}
.hero__rating .stars { font-size: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(246,239,228,.55); font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ── Marquee ───────────────────────────────────────────── */
.marquee {
  background: var(--noir-soft); border-block: 1px solid var(--line);
  overflow: hidden; padding: 1.1rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee__track span {
  font-family: var(--ff-disp); font-style: italic; font-size: 1.6rem;
  color: var(--ivory); white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .9rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ── About ─────────────────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center; max-width: var(--maxw);
  margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) var(--pad);
}
.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 220px 220px 14px 14px; box-shadow: 0 40px 80px -40px rgba(58,42,32,.55);
}
.about__badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--noir); color: var(--ivory); border: 1px solid var(--line);
  border-radius: 50%; width: 138px; height: 138px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
}
.about__badge-num { font-family: var(--ff-disp); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.about__badge-stars { color: var(--gold); font-size: .7rem; letter-spacing: .1em; margin: .25rem 0; }
.about__badge-txt { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.about__copy h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.5rem; max-width: 14ch; }
.about__copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 46ch; }
.about__copy em { color: var(--espresso); font-style: italic; }
.about__list { list-style: none; margin: 1.8rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; }
.about__list li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--espresso); }
.about__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: .15em; }

/* ── Services ──────────────────────────────────────────── */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,8vw,7rem) var(--pad); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.svc {
  background: linear-gradient(165deg, #fffdf8 0%, var(--cream) 55%, #f4ebda 100%);
  border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 18px 40px -28px rgba(58,42,32,.35);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent 30%);
  mix-blend-mode: overlay; opacity: .6;
}
.svc:hover { transform: translateY(-8px); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 36px 70px -30px rgba(58,42,32,.45); }
.svc__img { overflow: hidden; aspect-ratio: 4/3; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.07); }
.svc__body { padding: 1.6rem 1.5rem 1.7rem; }
.svc__tag {
  font-size: .66rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.svc__body h3 { font-size: 1.5rem; margin: .6rem 0 .6rem; }
.svc__body p { color: var(--muted); font-size: .92rem; margin-bottom: 1.3rem; }
.svc__foot {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.svc__price { font-size: .95rem; color: var(--espresso); }
.svc__price b { font-family: var(--ff-disp); font-size: 1.25rem; color: var(--gold); font-weight: 500; }
.svc__dur { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.svc-note { text-align: center; margin-top: 2.5rem; color: var(--muted); font-size: .85rem; letter-spacing: .04em; }

/* ── Academy ───────────────────────────────────────────── */
.academy { position: relative; color: var(--ivory); overflow: hidden; isolation: isolate; }
.academy__bg { position: absolute; inset: 0; z-index: -1; background: var(--noir); }
.academy__bg::after {
  content: ""; position: absolute; left: -10%; top: -20%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(198,162,94,.18), transparent 65%); filter: blur(10px);
}
.academy__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem,9vw,8rem) var(--pad);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,6vw,5rem); align-items: center;
}
.academy__copy h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.5rem; }
.academy__script { display: block; font-style: italic; color: var(--gold); }
.academy__copy > p { color: rgba(246,239,228,.72); max-width: 48ch; }
.academy__feats { list-style: none; margin: 2rem 0; display: grid; gap: 1rem; }
.academy__feats li {
  display: flex; gap: 1rem; align-items: baseline; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(246,239,228,.12); font-size: .98rem; color: rgba(246,239,228,.9);
}
.academy__feats b { font-family: var(--ff-disp); color: var(--gold); font-size: 1.1rem; min-width: 2ch; }
.academy__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.academy__price { font-size: 1rem; color: rgba(246,239,228,.8); }
.academy__price b { font-family: var(--ff-disp); font-size: 1.5rem; color: var(--gold-lite); font-weight: 500; }
.academy__media img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px 14px 200px 200px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}

/* ── Gallery ───────────────────────────────────────────── */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem,9vw,8rem) var(--pad); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1.1rem;
}
.gallery figure { overflow: hidden; border-radius: 12px; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .9s var(--ease); filter: saturate(.92); }
.gallery figure:hover img { transform: scale(1.08); filter: saturate(1.1); }
.gallery .g1 { grid-column: span 2; grid-row: span 2; }
.gallery .g2 { grid-column: span 2; }
.gallery .g3 { grid-column: span 1; grid-row: span 1; }
.gallery .g4 { grid-column: span 1; }
.gallery .g5 { grid-column: span 2; }
.gallery__note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .8rem; }

/* ── Reviews ───────────────────────────────────────────── */
.reviews {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  padding: clamp(5rem,9vw,8rem) var(--pad);
}
.reviews__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.review {
  background: linear-gradient(160deg, #fffdf8, var(--cream) 60%, #f3eada);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 2.2rem 2rem; position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 22px 48px -30px rgba(58,42,32,.4);
}
.review::before {
  content: "“"; font-family: var(--ff-disp); font-size: 5rem; color: var(--gold);
  opacity: .25; position: absolute; top: -.2rem; right: 1.2rem; line-height: 1;
}
.review .stars { font-size: .95rem; }
.review p { font-family: var(--ff-disp); font-style: italic; font-size: 1.18rem; line-height: 1.5; color: var(--espresso); margin: 1rem 0 1.4rem; }
.review cite { font-style: normal; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ── Contact ───────────────────────────────────────────── */
.contact { padding: clamp(4rem,8vw,7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.contact__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 50px 100px -50px rgba(58,42,32,.55);
}
.contact__info {
  padding: clamp(2.2rem,5vw,4rem);
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(198,162,94,.12), transparent 60%),
    linear-gradient(155deg, #fffdf8, var(--cream) 55%, #f2e8d6);
}
.contact__info h2 { font-size: clamp(2rem,4.5vw,3.2rem); margin-bottom: 1.2rem; }
.contact__lede { color: var(--muted); max-width: 40ch; margin-bottom: 2rem; }
.contact__details { list-style: none; display: grid; gap: 1.5rem; margin-bottom: 2.2rem; }
.contact__details li { display: grid; gap: .35rem; }
.contact__label { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.contact__details a { color: var(--espresso); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.contact__details a:hover { border-color: var(--gold); }
.contact__details span { color: var(--espresso); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact__map { min-height: 420px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: var(--noir); color: var(--ivory); padding: clamp(3rem,6vw,5rem) var(--pad) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: start;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
.footer__brand { max-width: 34ch; }
.footer__brand .nav__mark { font-size: 1.8rem; }
.footer__brand p { color: rgba(246,239,228,.6); font-size: .9rem; margin-top: .8rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer__nav a { color: rgba(246,239,228,.8); text-decoration: none; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; transition: color .3s; }
.footer__nav a:hover { color: var(--gold); }
.footer__bar {
  max-width: var(--maxw); margin: 1.8rem auto 0; display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: space-between; color: rgba(246,239,228,.45); font-size: .76rem; letter-spacing: .06em;
}

/* ── Reveal animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal[data-d="1"] { transition-delay: .15s; }
.hero .reveal[data-d="2"] { transition-delay: .28s; }
.hero .reveal[data-d="3"] { transition-delay: .40s; }
.hero .reveal[data-d="4"] { transition-delay: .52s; }
.hero .reveal[data-d="5"] { transition-delay: .68s; }
.hero .reveal[data-d="6"] { transition-delay: .80s; }
.hero .reveal[data-d="7"] { transition-delay: .92s; }
.hero .reveal[data-d="8"] { transition-delay: 1.1s; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1000px) {
  .svc-grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about, .academy__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto; }
  .academy__media { max-width: 420px; margin: 0 auto; order: -1; }
  .contact__panel { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; order: 2; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: rgba(23,17,13,.97); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: transform .45s var(--ease);
    padding: 2rem;
  }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 1rem; }
  .nav__burger { display: flex; z-index: 101; }
  .nav { background: rgba(23,17,13,.82); backdrop-filter: blur(14px); }
  .svc-grid, .reviews__grid { grid-template-columns: 1fr; }
  .about__list { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .g1 { grid-column: span 2; }
  .gallery .g2, .gallery .g5 { grid-column: span 2; }
  .hero { padding-top: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   MULTI-PAGE ADDITIONS
   ========================================================= */

/* ── Active nav link ───────────────────────────────────── */
.nav__links a.is-active { opacity: 1; }
.nav__links a.is-active::after { width: 100%; }

/* ── Footer social ─────────────────────────────────────── */
.footer__social { display: flex; gap: 1.2rem; margin-top: 1.1rem; }
.footer__social a {
  color: var(--gold); text-decoration: none; font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid transparent; transition: border-color .3s; padding-bottom: 2px;
}
.footer__social a:hover { border-color: var(--gold); }

/* ── Inner page hero ───────────────────────────────────── */
.page-hero {
  position: relative; padding: clamp(8rem,16vw,12rem) var(--pad) clamp(3.5rem,7vw,6rem);
  background: var(--noir); color: var(--ivory); overflow: hidden; isolation: isolate;
  text-align: center;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-position: center; background-size: cover; transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60vw 40vw at 80% -10%, rgba(198,162,94,.30), transparent 60%),
    linear-gradient(180deg, rgba(23,17,13,.55), rgba(23,17,13,.92));
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: 1.02; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  color: rgba(246,239,228,.78); max-width: 56ch; margin: 1.4rem auto 0;
  font-size: clamp(1rem,2vw,1.2rem); font-weight: 300;
}
.page-hero__crumb {
  margin-top: 1.8rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(246,239,228,.5);
}
.page-hero__crumb a { color: var(--gold); text-decoration: none; }

/* ── Section wrapper ───────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,8vw,7rem) var(--pad); }
.wrap--narrow { max-width: 820px; }

/* ── Service "Book" button on cards ────────────────────── */
.svc__foot { flex-wrap: wrap; gap: .9rem; }
.svc__book {
  display: inline-flex; align-items: center; gap: .4em; margin-left: auto;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--noir); background: linear-gradient(135deg, var(--gold-lite), var(--gold));
  padding: .6em 1.1em; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px -12px rgba(198,162,94,.8);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc__book:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(198,162,94,.9); }
.svc__book::after { content: "→"; transition: transform .3s var(--ease); }
.svc__book:hover::after { transform: translateX(3px); }

/* full menu list variant (services page) */
.menu-cat { margin: 2.5rem auto 1rem; max-width: 900px; }
.menu-cat h3 { font-size: 1.9rem; }
.menu-cat span { color: var(--gold); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.menu-list { max-width: 900px; margin: 0 auto; display: grid; gap: 1rem; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1.4rem;
  padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, #fffdf8, var(--cream) 60%, #f4ebda);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 16px 40px -32px rgba(58,42,32,.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-item:hover { transform: translateX(4px); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 24px 50px -30px rgba(58,42,32,.5); }
.menu-item__info h4 { font-family: var(--ff-disp); font-size: 1.35rem; font-weight: 500; }
.menu-item__info p { color: var(--muted); font-size: .88rem; margin-top: .2rem; }
.menu-item__meta { text-align: right; }
.menu-item__price { font-family: var(--ff-disp); font-size: 1.4rem; color: var(--gold); font-weight: 500; line-height: 1; }
.menu-item__dur { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.menu-item__book {
  white-space: nowrap; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--noir); background: linear-gradient(135deg, var(--gold-lite), var(--gold));
  padding: .7em 1.2em; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px -12px rgba(198,162,94,.8); transition: transform .3s var(--ease);
}
.menu-item__book:hover { transform: translateY(-2px); }
@media (max-width: 640px) {
  .menu-item { grid-template-columns: 1fr; gap: .9rem; text-align: left; }
  .menu-item__meta { text-align: left; display: flex; gap: 1rem; align-items: baseline; }
  .menu-item__book { justify-self: start; }
}

/* ── Forms ─────────────────────────────────────────────── */
.form-card {
  background: linear-gradient(160deg, #fffdf8, var(--cream) 55%, #f2e8d6);
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 40px 90px -55px rgba(58,42,32,.5);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.4rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--espresso); font-weight: 500;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--ff-sans); font-size: 1rem; color: var(--espresso); font-weight: 300;
  background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem; width: 100%; transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(138,122,107,.7); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(198,162,94,.15);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a25e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 1.8rem; }
.form-actions .btn { border: 0; font-family: var(--ff-sans); }
.form-note { font-size: .8rem; color: var(--muted); }
.form-status { font-size: .95rem; margin-top: 1rem; min-height: 1.2em; }
.form-status.is-ok { color: #5c7a4a; font-family: var(--ff-disp); font-style: italic; font-size: 1.1rem; }
.form-status.is-err { color: #a85a4a; }
.form-status a { color: inherit; }

/* ── Two-column info layout ────────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.split__media img { width: 100%; border-radius: 18px; object-fit: cover; box-shadow: 0 40px 80px -45px rgba(58,42,32,.5); }
.prose p { color: var(--muted); margin-bottom: 1.1rem; max-width: 56ch; }
.prose h2 { font-size: clamp(2rem,4.5vw,3rem); margin-bottom: 1.4rem; }
.prose h3 { font-size: 1.5rem; margin: 2rem 0 .8rem; }
.prose em { color: var(--espresso); font-style: italic; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ── Steps (academy / booking) ─────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 1rem; }
.step {
  padding: 1.6rem 1.4rem; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(160deg, #fffdf8, var(--cream) 60%, #f4ebda);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 18px 44px -34px rgba(58,42,32,.4);
}
.step b { font-family: var(--ff-disp); font-size: 2rem; color: var(--gold); display: block; line-height: 1; }
.step h4 { font-family: var(--ff-disp); font-weight: 500; font-size: 1.2rem; margin: .7rem 0 .4rem; }
.step p { color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }

/* ── CTA band ──────────────────────────────────────────── */
.cta-band {
  position: relative; text-align: center; color: var(--ivory);
  padding: clamp(4rem,8vw,7rem) var(--pad); overflow: hidden; isolation: isolate;
  background: var(--noir);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50vw 50vw at 50% 0%, rgba(198,162,94,.25), transparent 60%);
}
.cta-band h2 { font-size: clamp(2.2rem,6vw,4rem); }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { color: rgba(246,239,228,.75); max-width: 50ch; margin: 1.2rem auto 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── "View all" / center CTA ───────────────────────────── */
.center-cta { text-align: center; margin-top: 3rem; }

/* ── Rating showcase (honest, no fake quotes) ──────────── */
.rating-show {
  max-width: 520px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: clamp(2.4rem,5vw,3.6rem); border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(160deg, #fffdf8, var(--cream) 55%, #f2e8d6);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 40px 90px -55px rgba(58,42,32,.5);
}
.rating-show__num { font-family: var(--ff-disp); font-size: clamp(4rem,12vw,6rem); line-height: .9; color: var(--gold); }
.rating-show__stars { font-size: 1.6rem; letter-spacing: .2em; }
.rating-show__meta { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: .3rem 0 1.4rem; }

/* ── Booking aside ─────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.book-aside {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, #fffdf8, var(--cream) 60%, #f2e8d6);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 30px 70px -45px rgba(58,42,32,.5);
}
.book-aside__head { padding: 1.6rem 1.6rem 0; }
.book-aside__head h3 { font-size: 1.4rem; }
.book-aside ul { list-style: none; padding: 1.2rem 1.6rem 1.6rem; display: grid; gap: 1rem; }
.book-aside li { display: grid; gap: .2rem; }
.book-aside .contact__label { color: var(--gold); }
.book-aside__fresha { padding: 1.4rem 1.6rem; border-top: 1px solid var(--line); }
.book-aside__fresha p { color: var(--muted); font-size: .88rem; margin-bottom: .9rem; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
