:root {
  --paper: #fffaf6;
  --soft: #ffffff;
  --ink: #332822;
  --muted: #756a62;
  --line: rgba(54, 40, 35, 0.14);
  --shadow: 0 24px 80px rgba(74, 50, 42, 0.14);
  --accent: #87505a;
  --accent-dark: #5a343b;
  --gold: #a98248;
  --panel: #f2e6de;
  --panel-strong: #e5d2c8;
}

.theme-blush { --accent: #8f4b54; --accent-dark: #60363c; --gold: #a98248; --panel: #f2e6de; --panel-strong: #e6d2c8; --ink: #342824; --muted: #756763; }
.theme-sage { --accent: #667255; --accent-dark: #414a34; --gold: #9f7d4c; --panel: #edeadd; --panel-strong: #dbddca; --ink: #2f2c24; --muted: #6e6c5f; }
.theme-clay { --accent: #9a6651; --accent-dark: #684132; --gold: #a37d47; --panel: #f1e8df; --panel-strong: #e5d1c4; --ink: #352720; --muted: #75655d; }
.theme-mist { --accent: #5f6a75; --accent-dark: #39444f; --gold: #9b7d52; --panel: #ebe9e3; --panel-strong: #dfe1dd; --ink: #282c2d; --muted: #667071; }
.theme-pearl { --accent: #7f6874; --accent-dark: #51434b; --gold: #a58450; --panel: #f0e7e5; --panel-strong: #e3d1ce; --ink: #31272c; --muted: #766971; }
.theme-rosewood { --accent: #7d4a59; --accent-dark: #55303c; --gold: #a98248; --panel: #f0e4e2; --panel-strong: #e3d0cc; --ink: #30252a; --muted: #75666c; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 246, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }
.brand img, .site-footer img { width: 52px; height: 52px; flex: 0 0 auto; }
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: rgba(52, 40, 36, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.desktop-nav a:hover, .desktop-nav .is-active, .text-link:hover, .footer-links a:hover { color: var(--accent-dark); }
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent-dark);
  color: #fffaf6;
  box-shadow: 0 18px 34px rgba(70, 48, 40, 0.2);
}
.button-secondary {
  border-color: rgba(52, 40, 36, 0.22);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.66);
}
.button-secondary.light { border-color: rgba(255, 250, 246, 0.64); color: #fffaf6; background: rgba(255, 255, 255, 0.12); }
.menu-toggle, .mobile-nav { display: none; }
.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); }
.mobile-nav { border-top: 1px solid var(--line); background: #fffaf6; }
.mobile-nav-panel {
  display: grid;
  gap: 16px;
  width: min(100% - 40px, 560px);
  margin: 0 auto;
  padding: 22px 0 28px;
}
.mobile-nav a { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf6;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, center); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 25, 22, 0.84), rgba(50, 35, 30, 0.53) 48%, rgba(50, 35, 30, 0.1)),
    linear-gradient(0deg, rgba(36, 25, 22, 0.25), rgba(36, 25, 22, 0));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 135px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 250, 246, 0));
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 350px);
  gap: 64px;
  align-items: end;
  padding: 126px 0 94px;
}
.hero-copy { text-shadow: 0 2px 26px rgba(43, 28, 24, 0.42); }
.hero h1, .subhero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.75rem;
  font-weight: 600;
  line-height: 0.96;
  overflow-wrap: anywhere;
}
.hero .lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.17rem;
  color: rgba(255, 250, 246, 0.86);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.script-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: WindSong, cursive;
  font-size: 2rem;
  line-height: 1;
}
.eyebrow, .note-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-note {
  border: 1px solid rgba(255, 250, 246, 0.28);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 250, 246, 0.13);
  backdrop-filter: blur(18px);
}
.hero-note h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.05;
}
.hero-note ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.hero-note li {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 250, 246, 0.24);
  color: rgba(255, 250, 246, 0.88);
  font-weight: 700;
}

.signature-strip { position: relative; z-index: 3; margin-top: -44px; }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.signature-grid article { padding: 30px 30px 32px; border-right: 1px solid var(--line); }
.signature-grid article:last-child { border-right: 0; }
.signature-grid span { color: var(--gold); font-weight: 900; font-size: 0.78rem; }
.signature-grid h2 { margin: 8px 0 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.signature-grid p { margin: 0; color: var(--muted); }

.section { padding: 105px 0; }
.section-heading { max-width: 650px; }
.section-heading.centered { margin: 0 auto 42px; text-align: center; }
h2, h3, p { overflow-wrap: anywhere; }
.section-heading h2, .copy-stack h2, .feature-copy h2, .mood-copy h2, .hours-panel h2, .experience-panel h2, .location-copy h2, .menu-note h2, .note-grid h2, .about-copy h2, .contact-card h2, .booking-card h2, .review-grid h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.45rem;
  font-weight: 600;
  line-height: 1.02;
}
.section-heading p, .copy-stack p, .feature-copy p, .mood-copy p, .experience-panel p, .location-copy p, .menu-note p, .note-grid p, .about-copy p, .contact-card p, .booking-card p, .review-grid p, .text-page p {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}
.intro-media { position: relative; min-height: 560px; }
.intro-main, .subhero-image img {
  width: 78%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.intro-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 260px;
  object-fit: cover;
  border: 12px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.copy-stack { max-width: 540px; }
.copy-stack p { font-size: 1.02rem; }
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-section { background: linear-gradient(180deg, var(--paper), var(--panel)); }
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 58px;
  align-items: start;
}
.feature-copy {
  position: sticky;
  top: 116px;
  padding: 12px 0;
}
.feature-menu {
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}
.feature-menu-head span { color: var(--muted); font-weight: 800; }

.menu-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.menu-note {
  position: sticky;
  top: 116px;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
}
.menu-note h2, .menu-note h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1.04;
}
.menu-groups { display: grid; gap: 42px; }
.menu-groups.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}
.menu-heading {
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.menu-heading p {
  margin: 0;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.12rem;
  font-weight: 600;
}
.treatment-menu { display: grid; gap: 0; }
.treatment-row { padding: 20px 0; border-bottom: 1px solid var(--line); }
.treatment-menu.compact { padding: 0 30px 20px; }
.treatment-title-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
}
.treatment-title-line h3 { margin: 0; font-size: 1rem; line-height: 1.3; }
.treatment-title-line span { border-bottom: 1px dotted rgba(54, 40, 35, 0.35); transform: translateY(-4px); }
.treatment-title-line strong { color: var(--accent-dark); font-size: 0.95rem; white-space: nowrap; }
.duration {
  margin: 5px 0 6px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.description { margin: 0; color: var(--muted); font-size: 0.94rem; }
.section-action { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 42px; }

.process-section { background: var(--accent-dark); color: #fffaf6; }
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 58px;
}
.process-section .eyebrow { color: rgba(255, 250, 246, 0.74); }
.process-list { display: grid; gap: 18px; }
.process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 250, 246, 0.18);
}
.process-list span { color: var(--gold); font-weight: 900; }
.process-list h3 { margin: 0 0 6px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.process-list p { margin: 0; color: rgba(255, 250, 246, 0.78); }
.compact-process { padding-top: 20px; }

.mood-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: center;
}
.mood-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.mood-collage img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.mood-collage img:first-child { grid-row: span 2; height: 514px; }

.hours-section { padding-top: 55px; }
.hours-panel {
  width: min(830px, 100%);
  margin: 0 auto;
  padding: 62px 74px;
  border-radius: 8px;
  background: var(--panel);
  text-align: center;
}
.hours-list { margin-top: 32px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(54, 40, 35, 0.16);
}
.hours-row span { color: var(--muted); }
.hours-row strong { color: var(--accent-dark); }
.hours-list.small { margin-top: 18px; }

.experience-panel {
  max-width: 870px;
  margin: 0 auto;
  padding: 62px 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: 0 18px 55px rgba(74, 50, 42, 0.08);
}

.location-section { padding-top: 45px; }
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel-strong);
}
.location-copy { padding: 54px; align-self: center; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.82) contrast(0.95);
}

.subhero { padding: 86px 0 54px; background: linear-gradient(180deg, var(--panel), var(--paper)); }
.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: 68px;
  align-items: center;
}
.subhero h1 { color: var(--ink); font-size: 4.7rem; }
.subhero p { color: var(--muted); font-size: 1.08rem; }
.subhero-image img { width: 100%; height: 420px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}
.gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(4) { grid-column: span 3; }
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(5) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.calm-note { padding-top: 20px; }
.note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 50px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid, .contact-grid, .booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: start;
}
.about-panel, .contact-card, .booking-card, .booking-menu, .review-grid article {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 55px rgba(74, 50, 42, 0.08);
}
.about-panel article {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}
.about-panel article:last-child { border-bottom: 0; }
.about-panel h3 { margin: 0 0 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.about-panel p { margin: 0; color: var(--muted); }
.contact-card, .booking-card { padding: 38px; }
.hours-card { background: var(--panel); }
.map-wide { margin-top: 38px; overflow: hidden; border-radius: 8px; }
.booking-menu { padding: 30px 0 8px; }
.booking-menu > .eyebrow { padding: 0 30px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-grid article { padding: 34px; }
.review-grid h2 { font-size: 2.3rem; }
.text-page h2 { margin: 34px 0 6px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.2rem; }

.site-footer {
  padding: 56px 0 70px;
  background: #2f2723;
  color: #fffaf6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h2 { margin: 16px 0 4px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.1rem; }
.site-footer p, .footer-links a { color: rgba(255, 250, 246, 0.72); }
.footer-links { display: grid; gap: 9px; justify-items: start; }
.studio-credit { margin-top: 12px; color: #fffaf6 !important; font-size: 0.84rem; text-decoration: underline; text-underline-offset: 4px; }
.sticky-booking {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fffaf6;
  box-shadow: 0 16px 40px rgba(47, 37, 33, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-delay { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.is-open { display: block; }
  .hero { min-height: 660px; }
  .hero-grid, .intro-grid, .feature-grid, .process-grid, .mood-grid, .subhero-grid, .menu-layout, .location-grid, .note-grid, .about-grid, .contact-grid, .booking-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 30px; padding: 96px 0 82px; }
  .hero h1 { font-size: 4.3rem; }
  .hero-note, .feature-copy, .menu-note { position: static; }
  .signature-grid, .menu-groups.two-column, .review-grid { grid-template-columns: 1fr; }
  .signature-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .signature-grid article:last-child { border-bottom: 0; }
  .intro-media { min-height: 430px; }
  .intro-main { height: 390px; }
  .intro-small { height: 210px; }
  .subhero h1 { font-size: 3.6rem; }
  .mood-collage img:first-child { height: 360px; }
  .location-copy { padding: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img, .site-footer img { width: 46px; height: 46px; }
  .brand strong { font-size: 1.08rem; }
  .brand small { font-size: 0.66rem; }
  .hero { min-height: 610px; }
  .hero-grid { padding: 76px 0 68px; }
  .hero h1 { font-size: 3.25rem; }
  .hero .lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-note { padding: 22px; }
  .signature-strip { margin-top: 0; }
  .signature-grid { box-shadow: none; border-radius: 0; background: transparent; }
  .signature-grid article { padding: 24px 0; }
  .section { padding: 72px 0; }
  .section-heading h2, .copy-stack h2, .feature-copy h2, .mood-copy h2, .hours-panel h2, .experience-panel h2, .location-copy h2, .note-grid h2, .about-copy h2, .contact-card h2, .booking-card h2 {
    font-size: 2.58rem;
  }
  .intro-media { min-height: auto; display: grid; gap: 12px; }
  .intro-main, .intro-small { position: static; width: 100%; height: 300px; border: 0; }
  .feature-menu-head, .treatment-menu.compact { padding-left: 20px; padding-right: 20px; }
  .menu-note { padding-left: 18px; }
  .treatment-title-line { grid-template-columns: 1fr auto; }
  .treatment-title-line span { display: none; }
  .process-list article { grid-template-columns: 42px 1fr; }
  .mood-collage { grid-template-columns: 1fr; }
  .mood-collage img, .mood-collage img:first-child { height: 300px; }
  .hours-panel, .experience-panel { padding: 42px 24px; }
  .hours-row { display: grid; grid-template-columns: 1fr; gap: 2px; text-align: left; }
  .subhero { padding: 62px 0 36px; }
  .subhero h1 { font-size: 3rem; }
  .subhero-image img { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure, .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(4), .gallery-grid figure:nth-child(5) { grid-column: auto; min-height: 280px; }
  .contact-card, .booking-card, .review-grid article { padding: 28px 22px; }
  iframe { min-height: 330px; }
  .sticky-booking {
    right: 14px;
    left: auto;
    bottom: 10px;
    min-width: 132px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.74rem;
  }
}
