/* Ace Beauty MD — luxury medical-aesthetic */

:root {
  --bone: #F5EFE6;
  --bone-2: #EDE5D8;
  --bone-3: #E2D8C7;
  --ink: #1F1A15;
  --ink-2: #3A332C;
  --ink-3: #6B6157;
  --line: rgba(31, 26, 21, 0.12);
  --champagne: oklch(0.78 0.045 75);
  --rose: oklch(0.82 0.04 25);
  --olive: oklch(0.62 0.05 110);
  --accent: var(--champagne);
}
:root[data-accent="rose"] { --accent: var(--rose); }
:root[data-accent="olive"] { --accent: var(--olive); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  /* Smooth only for anchor jumps, not wheel scrolling */
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Custom cursor */
:root[data-cursor="on"] body { cursor: none; }
:root[data-cursor="on"] a, :root[data-cursor="on"] button, :root[data-cursor="on"] input, :root[data-cursor="on"] textarea { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; width: 16px; height: 16px;
  border: 1px solid var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s, background 0.25s;
  display: none;
}
:root[data-cursor="on"] .cursor { display: block; }
.cursor.active { width: 44px; height: 44px; background: var(--bone); border-color: transparent; }
@media (max-width: 768px) {
  :root[data-cursor="on"] body, :root[data-cursor="on"] a, :root[data-cursor="on"] button { cursor: auto; }
  .cursor { display: none !important; }
}

/* ───── Type system */
.display, .display-sm, .hero-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.98;
  color: var(--ink);
}
.display { font-size: clamp(48px, 7vw, 110px); }
.display-sm { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.display em, .hero-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; }
.center { text-align: center; }

.eyebrow, .section-eyebrow, .micro {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-eyebrow { font-size: 12px; margin-bottom: 24px; display: block; }
.micro { font-size: 10px; letter-spacing: 0.2em; display: block; margin-bottom: 8px; }
.micro.light { color: rgba(245, 239, 230, 0.5); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); font-weight: 300; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ───── Buttons — luxury */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.5s, color 0.5s, box-shadow 0.5s, border-color 0.5s;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  will-change: transform;
}
.btn > * { position: relative; z-index: 2; }
.btn svg { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.btn:hover svg { transform: translateX(5px); }

/* Primary — ink with aurora sheen + champagne glow */
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 30px -12px rgba(31, 26, 21, 0.45),
    0 0 0 0 rgba(216, 188, 138, 0);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(80% 120% at 0% 0%, oklch(0.78 0.07 75 / 0.55), transparent 55%),
    radial-gradient(80% 120% at 100% 100%, oklch(0.82 0.05 25 / 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 0;
  mix-blend-mode: screen;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 240, 210, 0.5) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink-2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 22px 50px -16px rgba(31, 26, 21, 0.6),
    0 0 0 1px rgba(216, 188, 138, 0.35),
    0 0 30px -4px oklch(0.78 0.08 75 / 0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { transform: translateX(110%); }

/* Ghost — fills with ink + subtle accent border on hover */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--ink);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
  z-index: 0;
}
.btn-ghost:hover {
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(31, 26, 21, 0.5);
}
.btn-ghost:hover::before { transform: scale(1); opacity: 1; }

/* Light — bone on dark backgrounds */
.btn-light {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
}
.btn-light::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.btn-light:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(216, 188, 138, 0.4),
    0 0 30px -4px oklch(0.78 0.08 75 / 0.5);
}
.btn-light:hover::after { transform: translateX(110%); }

.btn-sm { padding: 12px 22px; font-size: 11px; letter-spacing: 0.14em; }
.btn-block { width: 100%; justify-content: center; }
.icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.icon-btn:hover { background: var(--bone-2); }

/* ───── Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-scrolled {
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { display: inline-flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; letter-spacing: 0; }
.logo-md { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; margin-top: 4px; color: var(--ink-3); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink-2);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 1px; background: var(--ink); transition: right 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; color: var(--ink-2); }
.nav-burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31, 26, 21, 0.4);
  backdrop-filter: blur(4px);
  display: flex; justify-content: flex-end;
}
.mobile-panel {
  width: min(380px, 90vw); height: 100%;
  background: var(--bone); padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; flex: 1; padding-top: 20px; border-top: 1px solid var(--line); }
.mobile-links a {
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  padding: 8px 0; color: var(--ink);
}
.mobile-phone { font-size: 14px; color: var(--ink-3); text-align: center; }

/* ───── Hero */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.hero-title { font-size: clamp(58px, 9vw, 156px); line-height: 0.92; margin-bottom: 32px; }
.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  font-weight: 300; max-width: 540px; margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 80px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num { font-family: 'Cormorant Garamond', serif; font-size: 32px; line-height: 1; }
.hero-meta .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }

.hero-art { position: relative; height: 100%; min-height: 600px; }
.hero-img-stack { position: relative; width: 100%; height: 100%; }
.hero-img {
  position: absolute; background-size: cover; background-position: center;
  border-radius: 4px; overflow: hidden;
}
.hero-img-main { top: 0; right: 0; width: 78%; height: 78%; box-shadow: 0 30px 80px -30px rgba(31, 26, 21, 0.35); }
.hero-img-sub { bottom: 0; left: 0; width: 46%; height: 42%; box-shadow: 0 20px 50px -20px rgba(31, 26, 21, 0.3); }
.img-cap {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(245, 239, 230, 0.92);
  padding: 8px 14px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px;
}
.hero-badge {
  position: absolute; top: 8%; left: -16px;
  width: 130px; height: 130px;
  background: var(--bone); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(31, 26, 21, 0.25);
  animation: spin 24s linear infinite;
  color: var(--ink);
}
.badge-circle { position: relative; width: 110px; height: 110px; }
.badge-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent); animation: spin 24s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.marquee {
  margin-top: 60px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; overflow: hidden;
}
.marquee-track { display: flex; animation: marquee 35s linear infinite; }
.marquee-row { display: flex; gap: 28px; padding: 0 14px; flex-shrink: 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.marquee-row span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-art { min-height: 480px; }
  .hero-meta { gap: 32px; }
}

/* ───── Philosophy */
.philosophy { padding: 140px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.philosophy .display em { color: var(--ink-2); }
.philosophy-body { padding-top: 24px; }
.philosophy-body p { margin-bottom: 20px; color: var(--ink-2); }
.pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.pillar { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); align-items: start; }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; color: var(--accent); }
.pillar > span:last-child { font-size: 15px; color: var(--ink-2); }
@media (max-width: 1024px) {
  .philosophy { padding: 80px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ───── Services */
.services { padding: 60px 0 140px; background: var(--bone-2); }
.section-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-bottom: 80px; align-items: end; }
.section-intro { font-size: 17px; color: var(--ink-2); line-height: 1.6; max-width: 480px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--bone); padding: 0; border-radius: 4px;
  cursor: pointer; outline: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(31, 26, 21, 0.25); }
.service-card:focus-visible { box-shadow: 0 0 0 2px var(--accent); }
.service-img {
  height: 280px; background-size: cover; background-position: center;
  position: relative;
  transition: transform 0.6s;
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-num {
  position: absolute; top: 18px; left: 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 0.1em;
  background: rgba(245, 239, 230, 0.95); padding: 6px 12px; border-radius: 999px;
}
.service-text { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 12px;
}
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.1; margin-bottom: 12px; font-weight: 400; }
.service-blurb { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.service-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); padding-top: 18px; border-top: 1px solid var(--line); }
.dot-sep { color: var(--ink-3); }
.service-arrow { margin-left: auto; transition: transform 0.3s; color: var(--ink); }
.service-card:hover .service-arrow { transform: translateX(4px); }
@media (max-width: 1024px) {
  .services { padding: 40px 0 80px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Service modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(31, 26, 21, 0.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade 0.25s;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bone); border-radius: 6px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1080px; width: 100%; max-height: 90vh;
  position: relative;
  animation: pop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pop { from { transform: translateY(20px); opacity: 0; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bone); z-index: 10; }
.modal-img { background-size: cover; background-position: center; min-height: 480px; }
.modal-body { padding: 48px; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; }
.modal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 8px; }
.modal-stats > div { display: flex; flex-direction: column; gap: 4px; }
.modal-stats .label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.modal-stats .val { font-family: 'Cormorant Garamond', serif; font-size: 20px; }
@media (max-width: 768px) {
  .modal { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-img { min-height: 200px; }
  .modal-body { padding: 28px; }
}

/* ───── Selected Work / Portfolio ─ refined editorial */
.results {
  padding: 160px 0;
  position: relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(196,160,116,0.08), transparent 60%),
    var(--bone);
}
.results::before {
  content: "";
  position: absolute; top: 80px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* Header */
.pf-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.pf-head-left { position: relative; }
.pf-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 36px;
}
.pf-eyebrow-rule {
  width: 36px; height: 1px; background: var(--accent);
}
.pf-eyebrow-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px; letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-2);
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.pf-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 7.4vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pf-display em {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 300;
}
.pf-head-right {
  padding-bottom: 18px;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 460px;
  justify-self: end;
}
.pf-intro {
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2);
  font-weight: 300;
}
.pf-intro-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Stage: rail + feature image + detail panel */
.pf-stage {
  display: grid;
  grid-template-columns: 220px 1.25fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Rail */
.pf-rail {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 18px;
}
.pf-rail-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.pf-rail-tick {
  width: 24px; height: 1px; background: var(--ink-3);
}
.pf-rail-list {
  list-style: none;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.pf-rail-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  color: var(--ink-3);
  transition: color 0.3s, padding 0.3s;
}
.pf-rail-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
  transition: color 0.3s;
}
.pf-rail-body {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.pf-rail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.15;
  color: var(--ink-2);
  transition: color 0.3s;
}
.pf-rail-tag {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
}
.pf-rail-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
  color: var(--accent);
}
.pf-rail-item:hover { padding-left: 8px; }
.pf-rail-item:hover .pf-rail-name { color: var(--ink); }
.pf-rail-item.active {
  padding-left: 8px;
}
.pf-rail-item.active .pf-rail-num { color: var(--accent); }
.pf-rail-item.active .pf-rail-name {
  color: var(--ink);
  font-style: italic;
}
.pf-rail-item.active .pf-rail-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Feature image */
.pf-feature {
  display: flex; flex-direction: column; gap: 18px;
}
.pf-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-2);
  box-shadow:
    0 30px 80px -40px rgba(31, 26, 21, 0.45),
    0 1px 0 rgba(255,255,255,0.4) inset;
}
.pf-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: pf-fade 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pf-fade {
  from { opacity: 0; transform: scale(1.06); filter: blur(10px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}
.pf-image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,21,0.14) 0%, transparent 22%, transparent 70%, rgba(31,26,21,0.32) 100%);
  pointer-events: none;
}

.pf-overlay-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  z-index: 2;
}
.pf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 9px 14px;
  font-weight: 500;
  color: var(--ink);
}
.pf-tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}
.pf-overlay-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.pf-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 24px;
  z-index: 2;
  color: var(--bone);
}
.pf-overlay-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.pf-overlay-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-bottom: 8px;
  opacity: 0.85;
}

.pf-caption {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.pf-cap-line {
  width: 36px; height: 1px; background: var(--ink-3);
  flex-shrink: 0;
}

/* Detail panel */
.pf-detail {
  display: flex; flex-direction: column; gap: 32px;
  padding: 8px 0 0 0;
  position: relative;
}
.pf-detail::before {
  content: "";
  position: absolute;
  left: -28px; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--line) 12%, var(--line) 88%, transparent 100%);
  opacity: 0.6;
}
.pf-detail-head .micro {
  margin-bottom: 12px;
}
.pf-treatment {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pf-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pf-spec > div {
  padding: 20px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pf-spec > div + div { padding-left: 24px; }
.pf-spec > div:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.pf-spec > div:nth-child(odd) + div { padding-left: 24px; }
.pf-spec > div:nth-child(n+3) {
  border-top: 1px solid var(--line);
}
.pf-spec dt {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.pf-spec dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}

.pf-note {
  position: relative;
  padding: 8px 0 0 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
}
.pf-quote-mark {
  position: absolute;
  left: -6px; top: -32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 88px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.55;
  pointer-events: none;
}
.pf-note p {
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  max-width: 40ch;
  font-weight: 300;
}
.pf-note footer {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.pf-detail-foot {
  margin-top: 4px;
}
.pf-discuss {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.3s, color 0.3s;
}
.pf-discuss:hover { gap: 14px; color: var(--ink-2); }

/* Footer */
.pf-foot {
  margin-top: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.pf-foot-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.pf-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pf-foot-pager {
  display: inline-flex; align-items: center; gap: 18px;
}
.pf-pager-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  padding: 10px 4px;
  transition: color 0.2s, gap 0.3s;
}
.pf-pager-btn:hover { color: var(--ink); gap: 12px; }
.pf-pager-track {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 4px;
}
.pf-pager-tick {
  width: 24px; height: 1px;
  background: var(--line);
  transition: background 0.4s, height 0.3s;
}
.pf-pager-tick.active {
  background: var(--accent);
  height: 2px;
}

@media (max-width: 1100px) {
  .pf-stage { grid-template-columns: 1fr; gap: 48px; }
  .pf-rail { position: static; }
  .pf-rail-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
  .pf-rail-item { border-bottom: 1px solid var(--line); }
  .pf-detail::before { display: none; }
}
@media (max-width: 900px) {
  .results { padding: 90px 0; }
  .pf-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .pf-head-right { justify-self: start; }
  .pf-rail-list { grid-template-columns: 1fr; }
  .pf-spec { grid-template-columns: 1fr; }
  .pf-spec > div:nth-child(odd) { border-right: 0; padding-right: 0; }
  .pf-spec > div + div { padding-left: 0; border-top: 1px solid var(--line); }
  .pf-spec > div { padding: 16px 0; }
  .pf-foot { flex-direction: column; align-items: flex-start; gap: 18px; }
  .pf-overlay-num { font-size: 42px; }
}

/* ───── Gallery */
.gallery { padding: 60px 0 140px; background: var(--bone-2); position: relative; overflow: hidden; }
.gallery .display { position: relative; }
.gallery .display::after {
  content: "";
  position: absolute; right: -40px; bottom: 12px;
  width: 80px; height: 1px; background: var(--accent);
  animation: stretch 3s ease-in-out infinite alternate;
}
@keyframes stretch { from { width: 30px; } to { width: 120px; } }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-item {
  position: relative;
  background-size: cover; background-position: center;
  border-radius: 6px; overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  isolation: isolate;
}
.g-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 26, 21, 0.8));
  opacity: 0; transition: opacity 0.4s;
  z-index: 1;
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(31, 26, 21, 0.4);
  z-index: 5;
}
.g-item:hover::before { opacity: 1; }
.g-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: var(--bone);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item .g-num {
  position: absolute; top: 14px; left: 14px;
  width: 32px; height: 32px;
  background: rgba(245, 239, 230, 0.95);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic;
  z-index: 2;
}
@media (max-width: 1024px) {
  .gallery { padding: 40px 0 80px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.g-wide { grid-column: span 1; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-item.g-tall, .g-item.g-wide { grid-row: span 1; grid-column: span 1; }
}

/* ───── Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

/* Kinetic split text — letters drop in */
.kinetic { display: inline-block; }
.kinetic .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotate(6deg);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kinetic.visible .ch { opacity: 1; transform: translateY(0) rotate(0); }

/* Image reveal — clip-path wipe */
.img-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.4s cubic-bezier(0.7, 0, 0.3, 1); }
.img-reveal.visible { clip-path: inset(0 0 0 0); }

/* Cursor-tracked highlight overlay (works on top of ::before/::after) */
.btn { overflow: hidden; }
.btn .cursor-glow {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 240, 210, 0.35), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.btn:hover .cursor-glow { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15, 12, 10, 0.92);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fade 0.3s;
}
.lightbox-img {
  max-width: min(1200px, 90vw); max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: pop 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(245, 239, 230, 0.1);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(245, 239, 230, 0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(245, 239, 230, 0.1);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(245, 239, 230, 0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-cap {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--bone);
  background: rgba(245, 239, 230, 0.08);
  padding: 10px 20px; border-radius: 999px;
}

/* Floating booking CTA — luxury aurora */
.float-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 80;
  overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--bone);
  padding: 16px 26px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow:
    0 14px 38px -10px rgba(31, 26, 21, 0.6),
    0 0 0 1px rgba(216, 188, 138, 0.18),
    0 0 24px -6px oklch(0.78 0.08 75 / 0.35);
  transform: translateY(120px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, background 0.5s, color 0.5s;
}
.float-cta::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, oklch(0.78 0.08 75), oklch(0.85 0.05 25), oklch(0.62 0.05 110), oklch(0.78 0.08 75));
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.6s;
  z-index: -1;
  animation: aurora-spin 6s linear infinite;
}
.float-cta:hover::before { opacity: 0.65; }
.float-cta-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 240, 210, 0.5) 50%, transparent 70%);
  transform: translateX(-110%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.float-cta:hover .float-cta-shine { animation: shine-sweep 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite; }
@keyframes aurora-spin { to { transform: rotate(1turn); } }
@keyframes shine-sweep {
  0% { transform: translateX(-110%); }
  60% { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}
.float-cta.visible { transform: translateY(0); }
.float-cta:hover {
  transform: translateY(-3px);
  background: var(--ink-2); color: var(--bone);
  box-shadow:
    0 22px 50px -12px rgba(31, 26, 21, 0.7),
    0 0 0 1px rgba(216, 188, 138, 0.4),
    0 0 40px -4px oklch(0.78 0.1 75 / 0.55);
}
.float-cta .pulse {
  position: relative;
  width: 8px; height: 8px;
  background: oklch(0.78 0.12 75);
  border-radius: 50%;
  box-shadow: 0 0 12px 2px oklch(0.78 0.12 75 / 0.7);
}
.float-cta .pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid var(--accent);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse { from { transform: scale(0.8); opacity: 1; } to { transform: scale(2); opacity: 0; } }
@media (max-width: 600px) { .float-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 11px; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--accent);
  z-index: 150;
  transform-origin: left;
  transition: transform 0.1s;
}

/* Hero parallax bonus */
.hero-img-main, .hero-img-sub { transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* Section flourish */
.flourish {
  display: block;
  margin: 0 auto 24px;
  width: 60px; height: 60px;
  color: var(--accent);
}

/* Marquee headline */
.kinetic-band {
  padding: 60px 0; overflow: hidden;
  background: var(--ink); color: var(--bone);
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.kinetic-track {
  display: flex; gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.kinetic-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 140px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.kinetic-track span:nth-child(even) {
  -webkit-text-stroke: 1px var(--bone);
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.kinetic-dot {
  display: inline-flex; align-items: center;
  font-size: 32px; color: var(--accent);
}

/* Service hover image preview */
.service-card { position: relative; }
.service-card .service-img::after {
  content: "VIEW";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8);
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover .service-img::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ───── Team */
.team { padding: 140px 0; background: var(--ink); color: var(--bone); }
.team .display, .team .section-eyebrow { color: var(--bone); }
.team .section-eyebrow { color: rgba(245, 239, 230, 0.6); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 80px; }
.team-card {
  display: grid; grid-template-columns: 0.9fr 1fr; gap: 32px;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.08);
  border-radius: 6px; overflow: hidden;
}
.team-img { background-size: cover; background-position: center; min-height: 360px; }
.team-body { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 32px; line-height: 1.05; font-weight: 400; }
.team-role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.team-body p { color: rgba(245, 239, 230, 0.75); font-size: 15px; line-height: 1.6; }
.team-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--bone); margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(245, 239, 230, 0.12); }
.team-phone:hover { color: var(--accent); }
@media (max-width: 1024px) {
  .team { padding: 80px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
  .team-card { grid-template-columns: 1fr; gap: 0; }
  .team-img { min-height: 280px; }
}

/* ───── Testimonials */
.testimonials { padding: 140px 0; background: var(--bone-2); }
.t-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.t-rating { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); }
.t-rating .stars { color: var(--accent); letter-spacing: 0.1em; font-size: 16px; }
.t-stage { position: relative; min-height: 280px; }
.t-quote {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s;
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
}
.t-quote.active { opacity: 1; pointer-events: auto; }
.t-mark { font-size: 120px; line-height: 0.5; color: var(--accent); display: block; height: 24px; }
.t-quote p {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  font-weight: 400;
  margin: 32px 0 32px;
  max-width: 1000px;
}
.t-quote footer { display: flex; align-items: center; gap: 16px; font-family: 'Inter', sans-serif; font-size: 13px; }
.t-quote footer strong { font-weight: 500; }
.t-quote footer span { color: var(--ink-3); }
.t-dots { display: flex; gap: 12px; margin-top: 32px; }
.t-dot { width: 32px; height: 2px; background: var(--line); transition: background 0.3s; }
.t-dot.active { background: var(--ink); }
@media (max-width: 768px) { .testimonials { padding: 80px 0; } .t-stage { min-height: 360px; } }

/* ───── FAQ */
.faq { padding: 140px 0; }
.two-col-faq { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 80px; align-items: start; }
.two-col-faq .lead { margin-top: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0; text-align: left;
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--ink-2); }
.faq-toggle { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bone); border-color: var(--ink); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 28px; }
.faq-a p { font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 640px; }
@media (max-width: 1024px) { .faq { padding: 80px 0; } .two-col-faq { grid-template-columns: 1fr; gap: 32px; } .faq-q { font-size: 20px; } }

/* ───── Visit */
.visit { padding: 60px 0 140px; }
.visit-info .display { margin-top: 8px; }
.visit-info .display em { color: var(--accent); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.visit-line { font-size: 16px; color: var(--ink-2); line-height: 1.5; }
.visit-line.link:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.map-card { display: flex; flex-direction: column; gap: 16px; }
.map-img {
  flex: 1; min-height: 520px; aspect-ratio: 4 / 5;
  background-size: contain; background-repeat: no-repeat; background-position: center top;
  background-color: var(--bone-2);
  border-radius: 6px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 32px;
}
.map-img::before { display: none; }
}
.map-cta-below { width: 100%; justify-content: center; }
@media (max-width: 1024px) { .visit { padding: 40px 0 80px; } .map-img { min-height: 320px; } }
@media (max-width: 480px) { .visit-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ───── Booking drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(31, 26, 21, 0.55);
  backdrop-filter: blur(8px);
  display: flex; justify-content: flex-end;
  animation: fade 0.25s;
}
.drawer {
  width: min(560px, 100%); height: 100%;
  background: var(--bone);
  display: flex; flex-direction: column;
  animation: slideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 32px; gap: 16px; border-bottom: 1px solid var(--line); }
.drawer-head .section-eyebrow { margin-bottom: 8px; }
.drawer-progress { display: flex; gap: 16px; padding: 24px 32px; border-bottom: 1px solid var(--line); }
.prog-step { display: flex; align-items: center; gap: 10px; flex: 1; opacity: 0.4; transition: opacity 0.3s; }
.prog-step.active { opacity: 1; }
.prog-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bone-3); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  transition: all 0.3s;
}
.prog-step.active .prog-num { background: var(--ink); color: var(--bone); }
.prog-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; display: block; }
.lbl.mt { margin-top: 12px; }
.input {
  width: 100%; padding: 14px 16px;
  background: white; border: 1px solid var(--line);
  border-radius: 4px; font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color 0.2s;
  resize: vertical;
}
.input:focus { outline: none; border-color: var(--ink); }
.svc-pick { display: flex; flex-direction: column; gap: 8px; max-height: 420px; overflow-y: auto; padding-right: 8px; }
.svc-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: white; border: 1px solid var(--line);
  border-radius: 4px; text-align: left;
  transition: all 0.2s;
}
.svc-opt:hover { border-color: var(--ink); }
.svc-opt.selected { border-color: var(--ink); background: var(--bone-2); }
.svc-opt-eyebrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.svc-opt-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.svc-opt-price { font-size: 13px; color: var(--ink-3); flex-shrink: 0; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-pill { padding: 14px 8px; background: white; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; transition: all 0.2s; }
.time-pill:hover { border-color: var(--ink); }
.time-pill.selected { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.err { color: oklch(0.55 0.15 30); font-size: 12px; }
.drawer-foot { padding: 20px 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; background: var(--bone); }
.drawer-foot .btn { flex: 1; justify-content: center; }
.drawer-done { padding: 48px 32px; flex: 1; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.check { width: 80px; height: 80px; border-radius: 50%; background: var(--ink); color: var(--bone); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.drawer-summary { width: 100%; background: var(--bone-2); border-radius: 4px; padding: 20px; display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.drawer-summary > div { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.drawer-summary > div > span:first-child { color: var(--ink-3); }
@media (max-width: 600px) {
  .drawer { width: 100%; }
  .drawer-head, .drawer-progress, .drawer-body, .drawer-foot { padding-left: 20px; padding-right: 20px; }
}

/* ───── Footer */
.footer { background: var(--ink); color: var(--bone); padding: 100px 0 32px; }
.footer-cta { display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 80px; border-bottom: 1px solid rgba(245, 239, 230, 0.12); }
.footer-cta .display { color: var(--bone); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0 40px; }
.footer-grid p { color: rgba(245, 239, 230, 0.7); font-size: 14px; line-height: 1.6; }
.footer-grid a { color: rgba(245, 239, 230, 0.7); transition: color 0.2s; }
.footer-grid a:hover { color: var(--bone); }
.footer-tag { margin-top: 16px; max-width: 320px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(245, 239, 230, 0.12);
  font-size: 12px; color: rgba(245, 239, 230, 0.5);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(245, 239, 230, 0.5); }
@media (max-width: 1024px) {
  .footer { padding: 60px 0 24px; }
  .footer-cta { padding-bottom: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 40px 0; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════
   LUXURY EFFECTS LAYER
   ════════════════════════════════════════════════════════ */

/* ── Aurora orbs floating behind the hero */
.hero-aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-aurora .orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, oklch(0.82 0.06 75) 0%, transparent 70%);
}
.hero-aurora .orb-2 {
  width: 460px; height: 460px;
  bottom: -160px; left: 10%;
  background: radial-gradient(circle, oklch(0.84 0.05 25) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}
.hero-aurora .orb-3 {
  width: 380px; height: 380px;
  top: 30%; left: -120px;
  background: radial-gradient(circle, oklch(0.78 0.04 110) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 26s;
  opacity: 0.4;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.96); }
}
.hero-grid { position: relative; z-index: 1; }

/* ── Film grain overlay (luxury editorial texture) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  animation: grain 0.6s steps(4) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
}

/* ── Service-card 3D parallax tilt (cursor-tracked) */
.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
  will-change: transform;
}
.service-card:hover {
  transform: rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateZ(0);
  box-shadow:
    0 30px 80px -20px rgba(31, 26, 21, 0.25),
    0 0 0 1px rgba(216, 188, 138, 0.18);
}

/* ── Luxury gold underline on links */
.link-lux {
  position: relative;
  display: inline-block;
}
.link-lux::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.link-lux:hover::after { transform: scaleX(1); }

/* ── Marquee section accent shimmer */
.kinetic-track span {
  background: linear-gradient(110deg, var(--bone) 30%, oklch(0.85 0.08 75) 50%, var(--bone) 70%);
  -webkit-background-clip: text; background-clip: text;
  background-size: 200% 100%;
  animation: shimmer-text 6s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Section reveal — fade + lift on scroll */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hover-tilt on portfolio thumbnails */
.pf-thumb { transform: translateZ(0); }
.pf-thumb:hover { transform: translateY(-4px) translateZ(0); }

/* ── Hero copy text — soft entrance glow */
.hero-copy { position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  top: 30%; left: -10%;
  width: 60%; height: 40%;
  background: radial-gradient(ellipse, oklch(0.92 0.04 75 / 0.5), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}

/* ── Scroll-driven hue shift on accent pulse */
@keyframes accent-shift {
  0%, 100% { background: oklch(0.78 0.06 75); }
  50% { background: oklch(0.82 0.05 25); }
}
.eyebrow .dot,
.pf-dot,
.float-cta .pulse {
  animation: accent-shift 8s ease-in-out infinite, pulse 1.6s ease-out infinite;
}

/* ── CountUp number polish */
.hero-meta .num {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

/* ── Image entrance — soft mask reveal */
.hero-img-main, .hero-img-sub {
  position: relative;
  overflow: hidden;
}
.hero-img-main::after, .hero-img-sub::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(245, 239, 230, 0.35) 50%, transparent 65%);
  transform: translateX(-110%);
  pointer-events: none;
  animation: img-shimmer 6s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes img-shimmer {
  0%, 80%, 100% { transform: translateX(-110%); }
  90% { transform: translateX(110%); }
}

/* ── Smooth scroll only on anchor jumps */
html { scroll-behavior: auto; }
a[href^="#"] { scroll-behavior: smooth; }


/* ═══════════════════════════════════════════════════════════
   LUX UPGRADE v2 — narrow-viewport polish + title fx
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024) — keep things side-by-side longer where it matters */
@media (max-width: 1024px) and (min-width: 740px) {
  /* Hero: portrait + copy stay paired — image becomes a tighter aside */
  .hero { padding-top: 92px; }
  .hero-grid {
    grid-template-columns: 1fr 0.85fr !important;
    gap: 36px !important;
    align-items: center;
  }
  .hero-title { font-size: clamp(48px, 7.2vw, 88px) !important; }
  .hero-art { transform: none !important; }
  .hero-img-stack { aspect-ratio: 4/5; max-height: 560px; }
  .hero-img-main { inset: 0 !important; width: 100% !important; height: 100% !important; }
  .hero-img-sub { display: none; }
  .hero-badge { width: 110px !important; height: 110px !important; right: -18px !important; top: -18px !important; }
  .hero-meta { gap: 24px !important; }
  .hero-meta > div { padding-right: 16px !important; }

  /* Philosophy — keep 2-col w/ tighter gap */
  .philosophy { padding: 96px 0 !important; }
  .two-col { grid-template-columns: 0.95fr 1.1fr !important; gap: 48px !important; }

  /* Team — KEEP two-up at tablet width */
  .team { padding: 100px 0 !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; margin-top: 56px !important; }
  .team-card { grid-template-columns: 1fr !important; gap: 0 !important; }
  .team-img { min-height: 240px !important; }
  .team-body { padding: 24px !important; }
  .team-name { font-size: 26px !important; }

  /* Visit — keep map next to info, just tighter */
  .visit { padding: 80px 0 100px !important; }
  .visit .two-col { grid-template-columns: 1fr 0.9fr !important; gap: 40px !important; }
  .visit-grid { grid-template-columns: 1fr 1fr !important; gap: 24px 28px !important; margin-top: 32px !important; padding-top: 24px !important; }
  .map-img { min-height: 460px !important; }

  /* FAQ */
  .two-col-faq { grid-template-columns: 0.85fr 1.15fr !important; gap: 48px !important; }

  /* Services — 2-up not 3 */
  .service-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }

  /* Gallery — keep 3 cols */
  .g-item.tall { grid-row: span 1 !important; }

  /* Section padding sanity */
  .services, .results, .gallery, .testimonials, .faq { padding: 100px 0 !important; }
}

/* ── Mobile (<740) — clean single-column stack */
@media (max-width: 739px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-art { display: none; }
  .hero-title { font-size: clamp(44px, 11vw, 64px) !important; }
  .hero-meta { grid-template-columns: 1fr 1fr !important; }
  .service-grid { grid-template-columns: 1fr !important; }
  .visit-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════
   TITLE EFFECTS — high-end editorial flourishes
   ═══════════════════════════════════════════════════════════ */

/* 1) Display titles get a subtle gradient sheen on the italic word */
.display em, .display-sm em {
  background: linear-gradient(110deg,
    var(--ink) 0%,
    var(--ink) 35%,
    color-mix(in oklch, var(--accent) 80%, var(--ink)) 50%,
    var(--ink) 65%,
    var(--ink) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-position: 100% 0;
  animation: title-sheen 8s ease-in-out infinite;
}
@keyframes title-sheen {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}

/* on dark sections (team) the sheen runs brighter */
.team .display em {
  background: linear-gradient(110deg,
    var(--bone) 0%, var(--bone) 35%,
    var(--accent) 50%,
    var(--bone) 65%, var(--bone) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 2) Section eyebrows get a thin animated leading rule */
.section-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 1px;
  background: currentColor; opacity: 0.4;
  transform-origin: left;
  animation: eyebrow-rule 3s ease-in-out infinite;
}
@keyframes eyebrow-rule {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  50% { transform: scaleX(1.6); opacity: 0.7; }
}
.section-eyebrow.center { justify-content: center; }
/* hide existing em-dashes since we now draw our own rule */
.section-eyebrow { font-size: 11px; }

/* 3) "Kinetic" letters get a subtle staggered shimmer hover on titles */
.hero-title:hover .ch,
.display:hover .ch {
  animation: ch-pulse 1.2s ease;
}
.hero-title .ch, .display .ch { display: inline-block; }
@keyframes ch-pulse {
  0%, 100% { transform: translateY(0); color: inherit; }
  50% { transform: translateY(-3px); color: var(--accent); }
}

/* 4) Display titles: tightened tracking + serif optical weight */
.display, .display-sm, .hero-title {
  font-feature-settings: "ss01", "liga", "dlig";
  letter-spacing: -0.025em;
}

/* 5) A drifting champagne underline glow on hovered display headlines */
.display, .display-sm {
  position: relative;
}
.display::after, .display-sm::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 1.6s cubic-bezier(.2,.8,.2,1);
}
.display:hover::after, .display-sm:hover::after { width: 100%; }

/* 6) Hero badge — slow rotation (subtle prestige mark) */
.hero-badge .badge-circle svg {
  animation: badge-spin 28s linear infinite;
  transform-origin: center;
}
@keyframes badge-spin { to { transform: rotate(360deg); } }

/* 7) Visit map — soft animated grain overlay for warmth */
.map-img {
  position: relative;
  isolation: isolate;
}
.map-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(255,235,200,0.18), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, rgba(196,160,116,0.22), transparent 60%);
  mix-blend-mode: screen;
  z-index: 1;
  animation: map-glow 9s ease-in-out infinite alternate;
}
@keyframes map-glow {
  to { opacity: 0.55; transform: scale(1.03); }
}
.map-cta { position: relative; z-index: 2; }

/* 8) Team card — luminous edge on hover */
.team-card {
  position: relative; isolation: isolate;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.team-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, color-mix(in oklch, var(--accent) 60%, transparent) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .6s;
  pointer-events: none;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.team-card:hover::before { opacity: 1; }

/* 9) Brand wordmark "Ace Beauty" gets a hairline accent under "MD" */
.brand-mark .small { position: relative; }
.brand-mark .small::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--accent); opacity: .7;
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.nav:hover .brand-mark .small::after { transform: scaleX(1); }

/* 10) Print-style drop cap on the philosophy lead */
.philosophy-body .lead::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4em; line-height: 0.85; font-weight: 300;
  float: left; padding: 8px 12px 0 0;
  color: var(--accent);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   STUDIO MAP — stylized location card replacing model photo
   ═══════════════════════════════════════════════════════════ */
.studio-map {
  position: relative;
  background: linear-gradient(135deg, #EFE7DA, #E0D4BF);
  overflow: hidden;
  isolation: isolate;
}
.studio-map::after { display: none !important; }
.studio-map::before { display: none !important; }
.map-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.studio-map .pin-ring { transform-origin: 200px 254px; animation: pin-ring-pulse 4s ease-in-out infinite; }
.studio-map .pin-ring-2 { transform-origin: 200px 254px; animation: pin-ring-pulse 4s ease-in-out infinite 0.8s; }
@keyframes pin-ring-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

.map-pin {
  position: absolute; top: 48%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
  pointer-events: none;
}
.pin-head {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(31,26,21,0.4), 0 0 0 8px rgba(196,160,116,0.12);
  position: relative;
  animation: pin-bob 3s ease-in-out infinite;
}
.pin-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  line-height: 1;
  margin-top: -2px;
}
.pin-stem {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--ink);
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.pin-pulse {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  width: 14px; height: 4px;
  background: rgba(31,26,21,0.25);
  border-radius: 50%;
  filter: blur(2px);
  animation: pin-shadow 3s ease-in-out infinite;
}
@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pin-shadow {
  0%, 100% { width: 14px; opacity: 0.3; }
  50% { width: 22px; opacity: 0.18; }
}

.map-address {
  position: absolute; top: 24px; left: 24px;
  z-index: 4;
  background: rgba(245,239,230,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid rgba(31,26,21,0.08);
  box-shadow: 0 8px 24px -8px rgba(31,26,21,0.15);
  max-width: 220px;
}
.map-address-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 4px;
}
.map-address-line {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.map-compass {
  position: absolute; bottom: 24px; right: 24px;
  z-index: 4;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,239,230,0.85);
  border-radius: 50%;
  border: 1px solid rgba(31,26,21,0.1);
}
.map-compass svg { display: block; }
.compass-n {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--ink-3);
}

/* Map CTA placement — anchor bottom-left, away from compass */
.studio-map + .map-cta-below,
.map-cta-below { margin-top: 12px !important; }

/* ═══════════════════════════════════════════════════════════
   HERO — stronger narrow-viewport behaviour
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-img-sub { display: none !important; }
  .hero-img-main { inset: 0 !important; width: 100% !important; height: 100% !important; }
  .hero-img-stack { aspect-ratio: 4/5; max-height: 480px; }
}
@media (max-width: 720px) {
  .hero-art { display: none !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
}
