:root {
  --ink: #29232b;
  --ink-soft: #655c66;
  --cream: #fbf7f4;
  --paper: #fffdfb;
  --blush: #f7eaf0;
  --blush-2: #f2dfe9;
  --rose: #d80779;
  --rose-deep: #ad075f;
  --violet: #715092;
  --sage: #e5ebe6;
  --line: rgba(41, 35, 43, .12);
  --shadow: 0 24px 70px rgba(68, 39, 58, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1520px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(216, 7, 121, .16); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: clamp(52px, 6.5vw, 88px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { font-size: clamp(3.7rem, 8.8vw, 8.2rem); }
h2 { font-size: clamp(2.6rem, 5.8vw, 5.5rem); }
h3 { font-size: clamp(1.45rem, 2.6vw, 2.1rem); }
p { margin: 0; }
.lede { max-width: 680px; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.2rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 244, .84);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 247, 244, .96);
  box-shadow: 0 10px 30px rgba(52, 36, 47, .05);
}
.nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
}
.logo-wrap { width: 184px; }
.logo-wrap img { max-height: 70px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
.nav-links a { color: #4c444d; font-size: .94rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-deep); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  padding: 13px;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; border-radius: 3px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--rose-deep); }
.btn-soft { border-color: var(--line); background: rgba(255,255,255,.54); }
.btn-soft:hover { background: white; border-color: rgba(216, 7, 121, .22); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--blush); }

.hero { min-height: calc(100svh - 88px); display: flex; align-items: center; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(52px, 7vw, 96px) 0;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; }
.hero-copy .accent { color: var(--rose-deep); font-style: italic; }
.hero-copy .lede { margin-top: 28px; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 26px; color: var(--ink-soft); font-size: .9rem; }
.hero-media { position: relative; min-height: 650px; }
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 180px 180px 34px 34px;
  box-shadow: var(--shadow);
}
.hero-photo img { height: 100%; object-fit: cover; }
.hero-photo.primary { inset: 0 4% 8% 20%; }
.hero-photo.secondary { width: 42%; height: 40%; left: 0; bottom: 0; border-radius: 28px 110px 28px 28px; border: 10px solid var(--cream); }
.hero-mark {
  position: absolute;
  right: 0;
  top: 12%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 251, .93);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(71, 35, 60, .10);
}
.hero-mark img { width: 112px; }
.hero-media::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -150px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,7,121,.14), rgba(113,80,146,.06) 55%, transparent 72%);
  filter: blur(2px);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.35);
}
.marquee-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  will-change: transform;
  animation: drift 44s linear infinite;
}
.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}
.marquee-track span { flex: none; color: var(--ink-soft); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.marquee-track i { flex: none; width: 5px; height: 5px; align-self: center; border-radius: 50%; background: var(--rose); }
@keyframes drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.split-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: end; margin-bottom: clamp(38px, 6vw, 70px); }
.split-heading .lede { justify-self: end; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.54);
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 22px 60px rgba(65, 39, 55, .08); }
.service-card::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,7,121,.12), transparent 68%);
}
.service-card p { margin-top: 14px; color: var(--ink-soft); max-width: 34ch; }
.service-card .small-link { font-size: .86rem; font-weight: 800; color: var(--rose-deep); }

.zen-panel { background: #302b30; color: white; border-radius: clamp(28px, 4vw, 46px); overflow: hidden; }
.zen-grid { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 660px; }
.zen-copy { padding: clamp(44px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.zen-copy .eyebrow { color: #ef9bc8; }
.zen-copy p { margin-top: 24px; color: rgba(255,255,255,.72); max-width: 620px; font-size: 1.05rem; }
.zen-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.zen-point { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.035); }
.zen-point strong { display: block; font-size: .9rem; margin-bottom: 6px; }
.zen-point span { color: rgba(255,255,255,.64); font-size: .86rem; }
.zen-media { position: relative; overflow: hidden; min-height: 580px; }
.zen-media img { height: 100%; object-fit: cover; filter: saturate(.86) contrast(.94); }
.zen-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(48,43,48,.6), transparent 45%); }

.video-section { position: relative; min-height: 760px; overflow: hidden; border-radius: clamp(28px, 4vw, 48px); background: #171417; color: white; }
.video-bg { position: absolute; inset: 0; overflow: hidden; }
.video-bg video,
.video-bg .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-bg video { pointer-events: none; }
.video-bg .video-fallback {
  transform: scale(1.035);
  animation: videoFallbackDrift 18s ease-in-out infinite alternate;
  filter: saturate(.88) contrast(.94);
}
.video-bg.has-video .video-fallback { display: none; }
@keyframes videoFallbackDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, -1%, 0); }
}
.video-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,20,.86), rgba(20,17,20,.48) 52%, rgba(20,17,20,.2)); pointer-events: none; }
.video-copy { position: relative; z-index: 2; min-height: 760px; padding: clamp(42px, 8vw, 100px); display: flex; flex-direction: column; justify-content: flex-end; max-width: 760px; }
.video-copy .eyebrow { color: #f7acd1; }
.video-copy p { color: rgba(255,255,255,.78); margin: 24px 0 30px; max-width: 600px; font-size: 1.05rem; }
.video-source-badge { position: absolute; z-index: 3; top: 28px; right: 28px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(20,17,20,.32); backdrop-filter: blur(14px); color: rgba(255,255,255,.86); font-size: .76rem; font-weight: 800; letter-spacing: .05em; }

.gallery-stage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 12px; min-height: 472px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 20px; background: var(--blush-2); opacity: 1; transition: opacity .35s ease, transform .35s ease; }
.gallery-card:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(35,27,34,.3)); opacity: 0; transition: opacity .25s ease; }
.gallery-card:hover::after { opacity: 1; }
.gallery-card.is-swapping { opacity: 0; transform: scale(.985); }
.gallery-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; color: var(--ink-soft); font-size: .92rem; }
.gallery-meta a { font-weight: 800; color: var(--rose-deep); }

.review-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { padding: 28px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); }
.review-card .stars { color: var(--rose-deep); letter-spacing: .16em; font-size: .85rem; }
.review-card blockquote { margin: 22px 0 28px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.review-card cite { font-style: normal; color: var(--ink-soft); font-size: .88rem; }

.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 14px; align-items: stretch; }
.location-card { padding: clamp(34px, 5vw, 58px); border-radius: var(--radius-lg); background: var(--blush); }
.location-card h2 { letter-spacing: -.012em; word-spacing: .075em; line-height: 1.01; text-wrap: balance; }
.location-card address { font-style: normal; margin-top: 26px; font-family: var(--serif); font-size: 1.6rem; line-height: 1.25; }
.location-details { display: grid; gap: 14px; margin-top: 30px; color: var(--ink-soft); }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.map-wrap { min-height: 560px; overflow: hidden; border-radius: var(--radius-lg); background: #e7e2df; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 560px; border: 0; filter: saturate(.75) contrast(.92); }

.page-hero { padding: clamp(76px, 9vw, 128px) 0 60px; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 44px; }
.page-hero .lede { justify-self: end; }
.page-hero h1 { font-size: clamp(3.8rem, 7.5vw, 7.3rem); }

.service-menu { display: grid; gap: 18px; }
.menu-section { padding: clamp(28px, 4vw, 46px); border-radius: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.56); scroll-margin-top: 190px; }
.menu-section-head { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; margin-bottom: 24px; }
.menu-section-head p { max-width: 610px; color: var(--ink-soft); }
.price-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 48px; }
.price-row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .94rem; }
.price-row span:last-child { font-weight: 800; white-space: nowrap; }
.menu-nav { position: sticky; top: 106px; z-index: 10; display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; margin-bottom: 30px; border: 1px solid var(--line); background: rgba(251,247,244,.92); backdrop-filter: blur(16px); border-radius: 18px; }
.menu-nav a { padding: 9px 14px; border-radius: 999px; font-size: .84rem; font-weight: 800; background: white; border: 1px solid var(--line); transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.menu-nav a:hover { transform: translateY(-1px); border-color: rgba(216,7,121,.25); }
.menu-nav a.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.menu-note { margin-top: 22px; color: var(--ink-soft); font-size: .86rem; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
.story-card { padding: clamp(36px, 6vw, 76px); border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); }
.story-card p { margin-top: 24px; color: var(--ink-soft); }
.story-image { min-height: 630px; border-radius: var(--radius-lg); overflow: hidden; }
.story-image img { height: 100%; object-fit: cover; }

.gallery-grid { columns: 3; column-gap: 12px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 12px; border-radius: 20px; overflow: hidden; background: var(--blush); }
.gallery-grid img { width: 100%; height: auto; }

.offer-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; overflow: hidden; border-radius: var(--radius-lg); background: #ede6e1; border: 1px solid var(--line); }
.offer-card img { height: 100%; min-height: 480px; object-fit: cover; }
.offer-copy { padding: clamp(38px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.offer-copy p { margin: 22px 0 28px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 14px; }
.contact-card { padding: clamp(34px, 5vw, 58px); border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); }
.contact-list { display: grid; gap: 22px; margin-top: 32px; }
.contact-item small { display: block; color: var(--rose-deep); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.contact-item a, .contact-item span { font-family: var(--serif); font-size: 1.3rem; }
.contact-form { display: grid; gap: 14px; margin-top: 28px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); background: var(--cream); border-radius: 14px; padding: 14px 15px; outline: none; }
.field input:focus, .field textarea:focus { border-color: rgba(216,7,121,.48); box-shadow: 0 0 0 4px rgba(216,7,121,.08); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--ink-soft); font-size: .8rem; }

.cta-band { border-radius: clamp(28px, 4vw, 46px); background: linear-gradient(135deg, #2b252b, #46333f); color: white; padding: clamp(42px, 7vw, 80px); display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.cta-band h2 { max-width: 780px; font-size: clamp(2.6rem, 5vw, 5rem); }
.cta-band p { margin-top: 18px; color: rgba(255,255,255,.7); }
.cta-band .btn { flex: 0 0 auto; }

.site-footer { margin-top: clamp(72px, 9vw, 120px); background: #242024; color: white; }
.footer-top { display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 44px; padding: 72px 0 52px; }
.footer-brand img { width: 190px; filter: brightness(1.15); }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.63); max-width: 460px; }
.footer-col h3 { font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin-top: 18px; color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-local { border-top: 1px solid rgba(255,255,255,.1); padding: 30px 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-local strong { color: rgba(255,255,255,.86); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.5); font-size: .78rem; }
.social-links { display: flex; gap: 14px; }
.social-links a { display: none; }
.social-links a.is-visible { display: inline; color: rgba(255,255,255,.72); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.65,.2,1), transform .75s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (max-width: 1020px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links, .header-book { display: none; }
  .menu-toggle { display: block; }
  .nav-links.mobile-open {
    display: grid;
    position: fixed;
    inset: 88px 16px auto;
    z-index: 120;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,253,251,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.mobile-open a { padding: 10px 4px; font-size: 1.05rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 610px; max-width: 720px; width: 100%; margin-left: auto; }
  .split-heading, .page-hero-grid { grid-template-columns: 1fr; }
  .split-heading .lede, .page-hero .lede { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .zen-grid { grid-template-columns: 1fr; }
  .zen-media { min-height: 480px; }
  .gallery-stage { grid-template-columns: repeat(3,1fr); }
  .gallery-card:first-child { grid-column: span 2; }
  .review-strip { grid-template-columns: 1fr; }
  .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 76px; }
  .logo-wrap { width: 152px; }
  .nav-links.mobile-open { inset: 76px 12px auto; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 44px; gap: 38px; }
  .hero-media { min-height: 470px; }
  .hero-photo.primary { inset: 0 2% 5% 12%; border-radius: 120px 120px 26px 26px; }
  .hero-photo.secondary { width: 44%; height: 34%; border-width: 7px; }
  .hero-mark { width: 104px; height: 104px; right: -2%; top: 13%; }
  .hero-mark img { width: 76px; }
  .split-heading { gap: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .zen-copy { padding: 36px 24px; }
  .zen-points { grid-template-columns: 1fr; }
  .zen-media { min-height: 400px; }
  .video-section, .video-copy { min-height: 640px; }
  .video-copy { padding: 34px 24px; }
  .gallery-stage { display: flex; overflow-x: auto; min-height: 0; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .gallery-card, .gallery-card:first-child { flex: 0 0 82%; height: 440px; grid-column: auto; grid-row: auto; scroll-snap-align: start; }
  .gallery-meta { align-items: flex-start; flex-direction: column; }
  .page-hero { padding-top: 58px; }
  .menu-nav { top: 88px; flex-wrap: nowrap; overflow-x: auto; }
  .price-list { grid-template-columns: 1fr; }
  .menu-section-head { grid-template-columns: 1fr; }
  .story-image { min-height: 460px; }
  .gallery-grid { columns: 2; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3.4rem, 16vw, 5.1rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .gallery-grid { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .video-bg .video-fallback { animation: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== V3 refinement pass ===== */
body {
  background:
    radial-gradient(circle at 92% 9%, rgba(216,7,121,.045), transparent 21rem),
    radial-gradient(circle at 7% 42%, rgba(113,80,146,.035), transparent 25rem),
    var(--cream);
}

.hero { position: relative; }
.hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: 3%;
  width: 34vw;
  height: 34vw;
  max-width: 520px;
  max-height: 520px;
  border: 1px solid rgba(173,7,95,.10);
  border-radius: 48% 52% 56% 44% / 58% 44% 56% 42%;
  pointer-events: none;
}
.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); }
.hero-copy { padding-bottom: 1.5rem; }
.hero-copy h1 { letter-spacing: -.048em; }
.hero-copy .accent { color: var(--rose-deep); font-style: italic; }
.hero-lede { max-width: 540px !important; font-size: clamp(1.05rem,1.55vw,1.22rem); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 650px;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof span:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  opacity: .55;
}
.hero-media { min-height: 690px; }
.hero-photo.primary { inset: 1% 1% 6% 18%; border-radius: 210px 210px 34px 34px; }
.hero-photo.secondary { width: 45%; height: 38%; border-radius: 28px 120px 28px 28px; }
.hero-social-note {
  position: absolute;
  z-index: 4;
  left: 7%;
  top: 9%;
  display: grid;
  gap: 1px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  background: rgba(255,253,251,.82);
  backdrop-filter: blur(15px);
  box-shadow: 0 12px 35px rgba(44,29,40,.08);
}
.hero-social-note strong { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-social-note span { color: var(--rose-deep); font-size: .82rem; font-weight: 800; }

.service-card { min-height: 330px; }
.service-card h3 { max-width: 11ch; }
.service-card:hover .small-link { color: var(--ink); }

.zen-panel { box-shadow: 0 36px 90px rgba(34,25,32,.12); }
.zen-copy h2 { max-width: 9ch; }
.zen-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin-top: 28px;
  padding: 18px 0;
  border-block: 1px solid rgba(255,255,255,.12);
}
.zen-signature strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.zen-signature span { color: rgba(255,255,255,.52); font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.zen-media-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(28,23,28,.38);
  backdrop-filter: blur(14px);
}
.zen-media-label span { color: rgba(255,255,255,.63); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.zen-media-label strong { font-size: .9rem; }

.video-section { min-height: 720px; box-shadow: 0 30px 80px rgba(34,25,32,.11); }
.video-copy { min-height: 720px; }
.video-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.video-toggle {
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(20,17,20,.18);
  color: white;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
}
.video-toggle:hover { background: rgba(255,255,255,.1); }

.instagram-section { overflow: hidden; }
.gallery-stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
  min-height: 512px;
}
.gallery-card { border-radius: 24px; }
.gallery-card:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.gallery-card:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.gallery-card:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.gallery-card:nth-child(4) { grid-column: 7 / 9; grid-row: 2; }
.gallery-card:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }
.gallery-card::after {
  opacity: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(26,20,25,.02) 58%, rgba(26,20,25,.76) 100%);
}
.instagram-card-meta {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  color: white;
  opacity: .93;
}
.instagram-card-meta strong { font-size: .72rem; letter-spacing: .06em; }
.instagram-card-meta span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .76rem; color: rgba(255,255,255,.77); }
.gallery-card:hover .instagram-card-meta { opacity: 1; }
.gallery-meta { padding-top: 2px; }

.reviews-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(38px,5vw,64px);
}
.reviews-heading p:last-child { justify-self: end; max-width: 560px; color: var(--ink-soft); font-size: 1.05rem; }
.reviews-editorial { display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; }
.review-feature,
.review-mini,
.review-note { border: 1px solid var(--line); border-radius: var(--radius-lg); }
.review-feature {
  min-height: 540px;
  padding: clamp(34px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #332c32, #4b3542);
  color: white;
  box-shadow: 0 26px 70px rgba(44,30,41,.10);
}
.review-label { color: var(--rose-deep); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.review-feature .review-label { color: #f5a8ce; }
.review-feature blockquote { margin: 44px 0; max-width: 13ch; font-family: var(--serif); font-size: clamp(2.7rem,5vw,5.1rem); line-height: .98; letter-spacing: -.035em; }
.review-person { display: grid; gap: 4px; }
.review-person strong { font-size: .95rem; }
.review-person span { color: rgba(255,255,255,.56); font-size: .78rem; }
.review-stack { display: grid; grid-template-rows: 1fr 1fr auto; gap: 14px; }
.review-mini { padding: clamp(26px,3.5vw,42px); background: rgba(255,255,255,.66); }
.review-mini blockquote { margin: 26px 0 28px; font-family: var(--serif); font-size: clamp(1.65rem,2.8vw,2.5rem); line-height: 1.08; letter-spacing: -.025em; }
.review-mini cite { color: var(--ink-soft); font-style: normal; font-size: .84rem; }
.review-note { padding: 24px 28px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; background: var(--blush); }
.review-note strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; white-space: nowrap; }
.review-note p { color: var(--ink-soft); font-size: .87rem; }

.location-card { display: flex; flex-direction: column; justify-content: center; }
.location-intro { max-width: 48ch; margin-top: 22px; color: var(--ink-soft); }
.location-card address { margin-top: 32px; }
.location-call { align-self: center; color: var(--rose-deep); font-size: .86rem; font-weight: 900; padding: 10px 2px; }
.map-wrap { position: relative; }
.map-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(41,35,43,.06); border-radius: inherit; pointer-events: none; }

/* Services are a selector + one active menu, not an anchor-jump page. */
.services-workbench {
  display: grid;
  grid-template-columns: minmax(220px,.33fr) minmax(0,1fr);
  gap: clamp(22px,4vw,54px);
  align-items: start;
}
.service-selector {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,253,251,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(62,42,55,.055);
}
.service-selector .eyebrow { margin-bottom: 14px; }
.menu-nav {
  position: static;
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.menu-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-color: transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  font-size: .9rem;
}
.menu-nav a:hover { transform: none; background: var(--blush); border-color: transparent; color: var(--ink); }
.menu-nav a.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.service-selector-note { margin: 18px 2px 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.5; }
.service-selector-book { width: 100%; margin-top: 18px; }
.service-menu { min-width: 0; }
.menu-section {
  padding: clamp(34px,5vw,58px);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 26px 70px rgba(68,39,58,.055);
  scroll-margin-top: 110px;
}
.menu-section[hidden] { display: none !important; }
.menu-section.is-active { animation: servicePanelIn .42s cubic-bezier(.2,.7,.2,1) both; }
@keyframes servicePanelIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}
.menu-section-head { padding-bottom: 12px; }
.menu-section-head h3 { font-size: clamp(2.4rem,4.5vw,4.4rem); }
.price-list { column-gap: 56px; }
.price-row { min-height: 50px; align-items: center; padding: 14px 0; }
.service-highlight {
  grid-column: 1 / -1;
  margin: 0 0 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--blush);
}
.service-highlight strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.service-highlight p { color: var(--ink-soft); font-size: .88rem; }
.price-row.is-seasonal { color: var(--rose-deep); }
.seasonal-badge {
  display: inline-flex;
  margin-left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-deep);
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.service-menu-disclaimer { grid-column: 2; margin-top: -24px; }

/* More varied motion than one universal fade. */
[data-reveal="clip"] { opacity: 0; clip-path: inset(0 0 10% 0 round 28px); transform: scale(.985); transition: opacity .85s ease, clip-path .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
[data-reveal="clip"].is-visible { opacity: 1; clip-path: inset(0 round 28px); transform: none; }
[data-reveal="lift"] { transform: translateY(34px); transition-duration: .9s; }

.mobile-booking-bar {
  position: fixed;
  z-index: 95;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(41,35,43,.10);
  border-radius: 18px;
  background: rgba(255,253,251,.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(41,27,36,.16);
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.mobile-booking-bar.is-visible { transform: none; opacity: 1; }
.mobile-booking-bar .btn { min-height: 48px; }
.mobile-booking-call {
  display: grid;
  place-items: center;
  min-width: 74px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  background: white;
}

.footer-local { line-height: 1.7; }
.footer-local a { color: rgba(255,255,255,.82); text-decoration: underline; text-decoration-color: rgba(255,255,255,.22); text-underline-offset: 4px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-media { min-height: 640px; }
  .gallery-stage { grid-template-rows: repeat(2, 220px); min-height: 452px; }
  .reviews-editorial { grid-template-columns: 1fr; }
  .review-feature { min-height: 470px; }
  .review-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .review-note { grid-column: 1 / -1; }
  .services-workbench { grid-template-columns: 210px minmax(0,1fr); gap: 20px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .hero-copy { padding-bottom: 0; }
  .hero-proof { gap: 9px 14px; }
  .hero-proof span:not(:first-child)::before { display: none; }
  .hero-media { min-height: 500px; }
  .hero-social-note { left: 2%; top: 7%; }
  .hero::after { display: none; }
  .zen-copy h2 { max-width: none; }
  .gallery-stage {
    display: flex;
    gap: 10px;
    min-height: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 0 10px;
  }
  .gallery-card,
  .gallery-card:nth-child(n) { flex: 0 0 82%; height: 430px; grid-column: auto; grid-row: auto; scroll-snap-align: center; }
  .instagram-card-meta span { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .reviews-heading { grid-template-columns: 1fr; gap: 18px; }
  .reviews-heading p:last-child { justify-self: start; }
  .review-feature { min-height: 430px; }
  .review-stack { grid-template-columns: 1fr; }
  .review-note { grid-column: auto; grid-template-columns: 1fr; gap: 8px; }
  .review-note strong { white-space: normal; }
  .location-actions { align-items: stretch; }
  .location-actions .btn { flex: 1 1 100%; }
  .location-call { width: 100%; text-align: center; }

  .services-workbench { display: block; }
  .service-selector {
    position: sticky;
    top: 76px;
    z-index: 12;
    margin: 0 -2px 18px;
    padding: 10px;
    border-radius: 18px;
  }
  .service-selector .eyebrow,
  .service-selector-note,
  .service-selector-book { display: none; }
  .menu-nav { display: flex; overflow-x: auto; gap: 6px; scrollbar-width: none; }
  .menu-nav::-webkit-scrollbar { display: none; }
  .menu-nav a { flex: 0 0 auto; min-height: 40px; padding: 0 13px; border: 1px solid var(--line); background: white; }
  .menu-section { padding: 30px 22px; border-radius: 24px; }
  .menu-section-head h3 { font-size: clamp(2.5rem,12vw,4rem); }
  .service-menu-disclaimer { margin: 18px 2px 0; }
  .mobile-booking-bar { display: grid; }
}

@media (max-width: 480px) {
  .hero-media { min-height: 455px; }
  .hero-photo.primary { inset: 0 0 5% 10%; }
  .hero-photo.secondary { width: 46%; height: 32%; }
  .hero-mark { right: -3%; }
  .hero-social-note { padding: 9px 11px; }
  .review-feature blockquote { font-size: clamp(2.5rem,13vw,3.9rem); }
  .gallery-card,
  .gallery-card:nth-child(n) { flex-basis: 88%; height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal="clip"] { opacity: 1; clip-path: none; transform: none; }
  .menu-section.is-active { animation: none; }
  .mobile-booking-bar { transition: none; }
}
.hero-media[data-reveal="clip"].is-visible { transform: translate3d(0, var(--parallax-y, 0), 0); }

/* V3.1 — clearer, human review attribution */
.review-label { display: inline-flex; align-items: center; gap: .45rem; }
.google-g {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 4px 14px rgba(31,28,33,.1);
}
.reviewer-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.15rem;
}
.reviewer-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(179,88,139,.14), rgba(116,79,139,.2));
  color: var(--ink);
  border: 1px solid rgba(116,79,139,.15);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.reviewer-copy { display: grid; gap: .15rem; line-height: 1.1; }
.reviewer-copy strong { font-size: .9rem; font-style: normal; }
.reviewer-copy small { color: var(--ink-soft); font-size: .7rem; }
.review-feature .reviewer-avatar {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.review-feature .reviewer-copy small { color: rgba(255,255,255,.58); }
.review-note .reviewer-card { margin-top: 0; margin-bottom: .85rem; }
.review-note .reviewer-copy strong { color: var(--ink); }
.review-note p { margin: 0; }
@media (max-width: 640px) {
  .reviewer-avatar { width: 2.5rem; height: 2.5rem; }
}

/* V3.2 — official Google mark + cleaner hero photography */
.google-logo {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  flex: 0 0 auto;
}

/* ===== V3.6 optical alignment pass =====
   Balance by perceived visual weight rather than raw geometry. */
h1, h2 { text-wrap: balance; }

/* Micro-alignment that should be consistent at every width. */
.menu-section-head p { margin-top: 12px; }
.review-label { line-height: 1; }
.review-note .reviewer-card { margin-bottom: 0; }
.review-mini .reviewer-card { margin-top: 0; }
.gallery-meta { padding-inline: 4px; }
.location-actions { align-items: center; }
.cta-band { align-items: center; }

@media (min-width: 1021px) {
  /* Keep the primary navigation centered on the page, not merely between
     unequal logo and booking-button widths. */
  .nav {
    grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr);
    column-gap: clamp(22px, 2.2vw, 38px);
  }
  .logo-wrap { justify-self: start; }
  .nav-links { justify-self: center; justify-content: center; }
  .header-book { justify-self: end; min-width: 168px; }

  /* Hero: the image field has slightly more visual weight, so its geometric
     center is nudged inward while copy remains on the shared content edge. */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    gap: clamp(42px, 4.6vw, 72px);
  }
  .hero-copy { padding-left: clamp(0px, .45vw, 7px); }
  .hero-media { margin-left: -12px; margin-right: 6px; }

  /* Split headings read more naturally when the smaller paragraph sits on
     the optical vertical center of the larger display heading. */
  .split-heading,
  .reviews-heading,
  .page-hero-grid { align-items: center; }
  .split-heading .lede,
  .reviews-heading > p,
  .page-hero .lede { max-width: 590px; }

  /* Dark panels feel heavier than pale imagery. Give the image a touch more
     room so the Serenity panel feels visually centered as a whole. */
  .zen-grid { grid-template-columns: .96fr 1.04fr; }
  .zen-copy { padding-inline: clamp(48px, 5.3vw, 80px); }

  /* The dark feature review has more visual mass than a light card. Making it
     slightly narrower creates a more balanced two-column composition. */
  .reviews-editorial { grid-template-columns: .96fr 1.04fr; }
  .review-feature blockquote { max-width: 14ch; }

  /* Let the map remain dominant without making the information card feel
     squeezed against the left edge. */
  .location-grid { grid-template-columns: .88fr 1.12fr; }

  /* Supporting pages: pair content by visual weight and vertically center
     text-only cards against photography/forms. */
  .story-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .offer-card { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid > .contact-card:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* On wide screens the service selector should read as a navigation rail,
     not consume a full content column. */
  .services-workbench {
    grid-template-columns: 264px minmax(0, 1fr);
    gap: clamp(28px, 3.2vw, 48px);
  }

  /* Slight optical rebalance of footer columns: the brand and Visit copy are
     denser than the two link lists. */
  .footer-top {
    grid-template-columns: 1.32fr .72fr .82fr 1.04fr;
    align-items: start;
    column-gap: clamp(34px, 3.2vw, 52px);
  }
}

@media (max-width: 1020px) {
  .split-heading,
  .reviews-heading,
  .page-hero-grid { gap: 22px; }
  .page-hero .lede,
  .split-heading .lede,
  .reviews-heading > p { max-width: 640px; }
}

@media (max-width: 760px) {
  .page-hero-grid { gap: 18px; }
  .split-heading { gap: 18px; }
  .gallery-meta { padding-inline: 2px; }
  .review-note .reviewer-card { margin-bottom: 0; }
  .location-actions { align-items: stretch; }
  .cta-band { align-items: flex-start; }
}

/* V3.10 preview: refined Instagram profile window until the API feed is connected. */
.instagram-profile-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 18px;
  align-items: stretch;
}
.instagram-profile-fallback[hidden] { display: none !important; }
.instagram-embed-frame,
.instagram-profile-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.instagram-embed-frame {
  --ig-scale: .88;
  --ig-inset: 16px;
  position: relative;
  min-height: 560px;
  padding: var(--ig-inset);
  background: #fff;
  box-shadow: 0 18px 54px rgba(62,42,55,.04);
}
.instagram-embed-viewport {
  position: relative;
  width: 100%;
  height: 528px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 12px);
  background: #fff;
}
.instagram-embed-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% / var(--ig-scale));
  height: calc(100% / var(--ig-scale));
  min-height: 0;
  border: 0;
  background: #fff;
  transform: scale(var(--ig-scale));
  transform-origin: top left;
}
.instagram-profile-copy {
  min-height: 560px;
  padding: clamp(38px, 5.2vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(150deg, #f9edf3 0%, #fff8fb 52%, #f5eee9 100%);
}
.instagram-profile-handle {
  margin-bottom: 20px;
  color: var(--rose-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.instagram-profile-copy h3 {
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.7vw, 4.15rem);
  line-height: .99;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.instagram-profile-copy p {
  max-width: 470px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 1.01rem;
}
.gallery-stage[hidden],
.gallery-meta[hidden] { display: none !important; }

@media (max-width: 900px) {
  .instagram-profile-fallback { grid-template-columns: 1fr; }
  .instagram-profile-copy { min-height: 0; }
  .instagram-embed-frame { --ig-scale: .92; --ig-inset: 12px; min-height: 520px; }
  .instagram-embed-viewport { height: 496px; }
}

@media (max-width: 560px) {
  .instagram-embed-frame { --ig-scale: .95; --ig-inset: 9px; min-height: 470px; }
  .instagram-embed-viewport { height: 452px; }
  .instagram-profile-copy { padding: 32px 26px 36px; }
}

/* ===== Serenity 4.0 — production creative pass ===== */
:root {
  --serenity-glow: rgba(210, 116, 166, .14);
  --serenity-violet: rgba(129, 92, 151, .13);
}

/* Brand atmosphere: used sparingly so the site still feels quiet. */
.page-hero,
.hero,
.rewards-pass { position: relative; isolation: isolate; }
.page-hero::after,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(240px, 28vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  opacity: .72;
}
.hero::after { right: 4%; top: 4%; background: var(--serenity-glow); }
.page-hero::after { right: 10%; bottom: -35%; background: var(--serenity-violet); opacity: .42; }

/* Proof points: clearer, less UI-like. */
.hero-proof { gap: clamp(16px, 2.2vw, 34px); }
.hero-proof span { position: relative; white-space: nowrap; }
.hero-proof span + span::before {
  content: "";
  position: absolute;
  left: calc(clamp(16px, 2.2vw, 34px) / -2);
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1.5px;
  border-radius: 50%;
  background: var(--rose-deep);
  opacity: .6;
}

/* Homepage service cards: retain the clean grid, but add enough identity that
   the set no longer reads like six identical components. */
.service-card {
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -75px;
  border-radius: 48% 52% 62% 38%;
  background: radial-gradient(circle at 35% 35%, rgba(205,105,160,.12), rgba(128,88,150,.035) 72%);
  transform: rotate(20deg);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.service-card:nth-child(2n)::before { border-radius: 60% 40% 46% 54%; transform: rotate(-15deg); }
.service-card:nth-child(3n)::before { background: radial-gradient(circle at 35% 35%, rgba(112,83,145,.11), rgba(205,105,160,.025) 72%); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(62,42,55,.07); }
.service-card:hover::before { transform: scale(1.08) rotate(32deg); }

/* The edited manicure is now strong enough to stand alone. */
.zen-media-clean::after,
.zen-media-clean .zen-media-label { display: none !important; }
.zen-media-clean img { object-position: 50% 45%; }

/* Ambient motion for the fallback visual. A live Reel still takes over when
   the Instagram endpoint is authorized. */
.video-bg:not(.has-video) .video-fallback {
  transform: scale(1.035);
  animation: serenityAmbient 14s ease-in-out infinite alternate;
  transform-origin: 52% 48%;
}
@keyframes serenityAmbient {
  from { transform: scale(1.035) translate3d(-.4%, .2%, 0); }
  to { transform: scale(1.085) translate3d(.7%, -.7%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .video-bg:not(.has-video) .video-fallback { animation: none; transform: none; }
}

/* Review proof */
.reviews-more { display: flex; justify-content: center; margin-top: 26px; }
.reviews-more .btn { display: inline-flex; align-items: center; gap: .65rem; }
.reviews-more .google-logo { width: 1.05rem; height: 1.05rem; }

/* Services storytelling */
.service-highlight-editorial {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 2.8vw, 34px);
  margin-bottom: 20px;
  border: 1px solid rgba(116,79,139,.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(250,237,244,.72), rgba(255,255,255,.88));
}
.service-highlight-kicker {
  color: var(--rose-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-highlight-editorial strong { font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.25rem); line-height: 1.05; font-weight: 500; }
.service-highlight-editorial p { margin: 0; color: var(--ink-soft); max-width: 66ch; }
.spa-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2px 0 22px;
}
.spa-experience-grid article {
  min-height: 240px;
  padding: clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(116,79,139,.12);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(249,236,243,.82), rgba(255,252,253,.94));
}
.spa-experience-grid article:nth-child(2) { background: linear-gradient(155deg, rgba(239,231,244,.74), rgba(255,252,253,.94)); }
.spa-experience-grid article:nth-child(3) { background: linear-gradient(155deg, rgba(244,237,230,.72), rgba(255,252,253,.94)); }
.spa-experience-grid span { color: var(--rose-deep); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.spa-experience-grid strong { margin: 12px 0 10px; font-family: var(--serif); font-size: clamp(1.25rem, 1.7vw, 1.7rem); line-height: 1.08; font-weight: 500; }
.spa-experience-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* Curated gallery: varying spans create portfolio rhythm without imposing fake
   categories on work we have not individually labeled. */
.gallery-grid-editorial {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 105px;
  gap: 14px;
}
.gallery-grid-editorial figure { grid-column: span 4; grid-row: span 4; border-radius: 24px; overflow: hidden; }
.gallery-grid-editorial figure:nth-child(1),
.gallery-grid-editorial figure:nth-child(6) { grid-column: span 5; grid-row: span 5; }
.gallery-grid-editorial figure:nth-child(2),
.gallery-grid-editorial figure:nth-child(7) { grid-column: span 3; grid-row: span 5; }
.gallery-grid-editorial figure:nth-child(3),
.gallery-grid-editorial figure:nth-child(8) { grid-column: span 4; grid-row: span 5; }
.gallery-grid-editorial figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gallery-grid-editorial figure:hover img { transform: scale(1.025); }
.gallery-social {
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(249,237,244,.68), rgba(255,255,255,.94));
}
.gallery-social h2 { max-width: 760px; margin-bottom: 10px; }
.gallery-social p { max-width: 660px; color: var(--ink-soft); }

/* Rewards page — custom Serenity presentation instead of inherited promo art. */
.rewards-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(24px, 4vw, 58px); align-items: center; }
.rewards-pass {
  min-height: 540px;
  padding: clamp(30px, 4.4vw, 60px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(181,80,139,.19);
  border-radius: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 8%, rgba(171,85,145,.19), transparent 29%),
    radial-gradient(circle at 5% 88%, rgba(233,176,206,.32), transparent 34%),
    linear-gradient(145deg, #fff8fb, #f6e8f0 58%, #f9f2ed);
  box-shadow: 0 28px 70px rgba(75,45,65,.08);
}
.rewards-pass::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -160px;
  bottom: -150px;
  border: 1px solid rgba(177,77,136,.17);
  border-radius: 46% 54% 63% 37%;
  transform: rotate(25deg);
}
.rewards-pass-top, .rewards-pass-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.rewards-pass-top > span { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.1rem); font-style: italic; color: var(--rose-deep); }
.rewards-pass-top small, .rewards-pass-foot { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.rewards-pass-copy p { margin: 0 0 12px; color: var(--rose-deep); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.rewards-pass-copy h2 { max-width: 14ch; font-size: clamp(2.3rem, 4.3vw, 4.7rem); line-height: .96; }
.rewards-pass-copy > span { display: block; max-width: 46ch; margin-top: 20px; color: var(--ink-soft); }
.rewards-stamps { display: flex; gap: 9px; margin: 28px 0; }
.rewards-stamps i { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(177,77,136,.24); background: rgba(255,255,255,.58); }
.rewards-stamps i:first-child, .rewards-stamps i:nth-child(2), .rewards-stamps i:nth-child(3) { background: rgba(177,77,136,.16); box-shadow: inset 0 0 0 8px rgba(255,255,255,.66); }
.rewards-copy h2 { max-width: 12ch; margin-bottom: 20px; }
.rewards-copy > p { max-width: 54ch; color: var(--ink-soft); }
.reward-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Contact without a fake form */
.contact-concierge { background: linear-gradient(150deg, rgba(249,237,244,.7), rgba(255,255,255,.96)); }
.contact-concierge > p { max-width: 55ch; color: var(--ink-soft); }
.contact-action-list { display: grid; gap: 9px; margin: 28px 0; }
.contact-action-list a {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-action-list a:first-child { border-top: 1px solid var(--line); }
.contact-action-list span { color: var(--ink-soft); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.contact-action-list strong { font-size: .95rem; font-weight: 700; text-align: right; }
.contact-action-list a:hover strong { color: var(--rose-deep); }

/* Micro-interactions + keyboard focus */
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(185,78,139,.28);
  outline-offset: 4px;
}
.btn { transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.menu-nav a { transition: background .25s ease, color .25s ease, transform .25s ease; }
.menu-nav a:hover { transform: translateX(3px); }

/* Slightly more elegant Instagram fallback framing. */
.instagram-embed-frame { box-shadow: 0 20px 60px rgba(62,42,55,.055); }
.instagram-profile-copy { position: relative; overflow: hidden; }
.instagram-profile-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  bottom: -120px;
  border: 1px solid rgba(180,79,138,.13);
  border-radius: 48% 52% 60% 40%;
  transform: rotate(22deg);
}

/* Mobile art direction */
@media (max-width: 900px) {
  .spa-experience-grid { grid-template-columns: 1fr; }
  .spa-experience-grid article { min-height: 0; }
  .rewards-grid { grid-template-columns: 1fr; }
  .rewards-pass { min-height: 480px; }
  .gallery-grid-editorial { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid-editorial figure,
  .gallery-grid-editorial figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid-editorial figure:nth-child(1),
  .gallery-grid-editorial figure:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-social { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .hero-proof span + span::before { display: none; }
  .hero-proof span { white-space: normal; }
  .service-card:hover, .btn:hover, .menu-nav a:hover { transform: none; }
  .rewards-pass { min-height: 430px; padding: 28px 24px; border-radius: 26px; }
  .rewards-pass-top { align-items: flex-start; flex-direction: column; gap: 2px; }
  .rewards-pass-copy h2 { font-size: clamp(2.15rem, 11vw, 3.5rem); }
  .rewards-stamps { gap: 6px; }
  .rewards-stamps i { width: 28px; height: 28px; }
  .rewards-pass-foot { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gallery-grid-editorial { gap: 9px; grid-auto-rows: 155px; }
  .gallery-grid-editorial figure { border-radius: 18px; }
  .contact-action-list a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-action-list strong { text-align: left; overflow-wrap: anywhere; }
  .reviews-more { justify-content: stretch; }
  .reviews-more .btn { width: 100%; justify-content: center; }
}
/* V4.0 finishing overrides */
.service-card::after { display: none; }
.gallery-grid-editorial {
  display: grid;
  columns: auto;
  column-gap: 14px;
}
.gallery-grid-editorial figure { margin: 0; break-inside: auto; }
@media (max-width: 900px) {
  .gallery-grid-editorial { display: grid; columns: auto; }
}
/* Six-post live Instagram composition: 1 feature + 5 supporting tiles. */
.gallery-card:nth-child(4) { grid-column: 7 / 9; grid-row: 2; }
.gallery-card:nth-child(5) { grid-column: 9 / 11; grid-row: 2; }
.gallery-card:nth-child(6) { grid-column: 11 / 13; grid-row: 2; }
@media (max-width: 900px) {
  .gallery-card:nth-child(6) { grid-column: auto; grid-row: auto; }
}


/* =========================================================
   V4.1 — clean gallery + clearer contact responsibilities
   ========================================================= */
.gallery-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  columns: auto;
}
.gallery-grid-clean figure,
.gallery-grid-clean figure:nth-child(n) {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 1 / 1;
  min-width: 0;
}
.gallery-grid-clean img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
  transition: filter .35s ease, opacity .35s ease;
  image-rendering: auto;
}
.gallery-grid-clean figure:hover img { transform: none !important; filter: saturate(1.025) contrast(1.015); }

.contact-grid-distinct { align-items: stretch; }
.contact-grid-distinct .contact-card { height: 100%; }
.contact-intro { max-width: 52ch; color: var(--ink-soft); margin-top: 16px; }
.visit-card { display: flex; flex-direction: column; }
.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 34px;
}
.visit-detail {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(249,237,244,.38);
}
.visit-detail small {
  display: block;
  margin-bottom: 10px;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.visit-detail strong {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
}
.visit-card .location-actions { margin-top: auto; }
.contact-grid-distinct .contact-concierge { display: flex; flex-direction: column; }
.contact-grid-distinct .contact-action-list { margin-bottom: 0; }

@media (max-width: 900px) {
  .gallery-grid-clean { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-details { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid-clean { grid-template-columns: 1fr; }
  .gallery-grid-clean figure,
  .gallery-grid-clean figure:nth-child(n) { aspect-ratio: 4 / 5; }
}


/* =========================================================
   V4.2 — quiet seasonal promotion
   ========================================================= */
.seasonal-promo {
  position: fixed;
  z-index: 92;
  left: clamp(14px, 2vw, 30px);
  bottom: clamp(14px, 2vw, 28px);
  width: min(330px, calc(100vw - 28px));
  border: 1px solid rgba(143, 91, 74, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 130, 95, .16), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 246, .98), rgba(247, 232, 222, .98));
  box-shadow: 0 22px 64px rgba(73, 45, 41, .14);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,.7,.2,1);
}
.seasonal-promo.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.seasonal-promo-link {
  display: grid;
  gap: 7px;
  padding: 24px 48px 23px 24px;
  color: var(--ink);
  text-decoration: none;
}
.seasonal-promo-kicker {
  color: #9b5c45;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.seasonal-promo-link strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.seasonal-promo-copy {
  max-width: 29ch;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.5;
}
.seasonal-promo-cta {
  width: fit-content;
  margin-top: 3px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(155, 92, 69, .35);
  color: #8d523f;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.seasonal-promo-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(73,45,41,.09);
  border-radius: 50%;
  background: rgba(255,255,255,.62);
  color: var(--ink-soft);
  font: 400 1.2rem/1 var(--sans);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.seasonal-promo-close:hover { background: white; color: var(--ink); transform: scale(1.04); }
#secret-of-autumn { scroll-margin-top: 150px; }
#secret-of-autumn:target {
  margin-inline: -10px;
  padding-inline: 10px;
  border-radius: 12px;
  background: rgba(201, 130, 95, .09);
}

@media (max-width: 760px) {
  .seasonal-promo {
    left: 12px;
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    width: auto;
    border-radius: 20px;
  }
  .seasonal-promo-link { padding: 20px 46px 19px 20px; gap: 5px; }
  .seasonal-promo-link strong { font-size: 1.5rem; }
  .seasonal-promo-copy { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-promo { transition: none; transform: none; }
}

/* =========================================================
   V4.3 — mobile seasonal promo refinement
   Keep the desktop corner card intact; on phones it becomes
   a compact bottom card and only rises when the booking bar is visible.
   ========================================================= */
@media (max-width: 760px) {
  .seasonal-promo {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: auto;
    max-width: 420px;
    margin-inline: auto;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(73, 45, 41, .13);
    backdrop-filter: blur(12px);
  }

  .seasonal-promo.is-raised-for-booking {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .seasonal-promo-link {
    gap: 3px;
    padding: 15px 46px 14px 16px;
  }

  .seasonal-promo-kicker {
    font-size: .58rem;
    letter-spacing: .11em;
  }

  .seasonal-promo-link strong {
    font-size: 1.34rem;
    line-height: 1.04;
  }

  .seasonal-promo-copy {
    display: none;
  }

  .seasonal-promo-cta {
    margin-top: 3px;
    font-size: .69rem;
  }

  .seasonal-promo-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 1.08rem;
  }
}

@media (max-width: 390px) {
  .seasonal-promo {
    left: 10px;
    right: 10px;
  }
  .seasonal-promo-link {
    padding-left: 14px;
  }
}

/* V4.4 mobile hero proof alignment */
@media (max-width: 640px) {
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    width: min(100%, 340px);
    max-width: 340px;
    margin: 28px auto 0;
    padding-top: 20px;
    text-align: center;
    font-size: .74rem;
    line-height: 1.35;
    letter-spacing: .085em;
  }
  .hero-proof span {
    display: block;
    width: 100%;
    white-space: normal;
  }
  .hero-proof span + span::before { display: none; }
}
