/* VEIL clean rebuild reset48: reference-like white space, stable anchors, compact pages, and cleaned selectors. */
:root {
  --bg: #ffffff;
  --ink: #333333;
  --muted: #666666;
  --soft: #8a8a8a;
  --line: #dddddd;
  --line-strong: #333333;
  --panel: #f7f7f7;
  --panel-2: #fbfbfb;
  --paper: #ffffff;
  --max: 1210px;
  --narrow: 760px;
  --gutter: clamp(30px, 8vw, 115px);
  --sans: futura-pt, "Avenir Next", "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.045em;
  overflow-x: clip;
}

body::before,
body::after,
.ambient,
.boutique-script-ghost,
.boutique-footer-script,
.menu-page-script,
.menu-page-script-small,
.column-mag-script,
.column-script,
.reserve-tool-script,
.faq-script,
.faq-script-small,
.faq-footer-logo,
.access-script-ghost,
.floating-header-micro,
.floating-header-menu,
.header-micro,
.header-menu-mark,
.boutique-hero-location,
.access-rule,
.access-title-rule,
.access-note-rule,
.column-mag-rule,
.faq-title-rule,
.menu-page-ornament {
  display: none !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

p,
li,
dd,
small,
figcaption {
  color: var(--muted);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

.reveal,
.motion-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-enabled .reveal,
.motion-enabled .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(6px);
  transition:
    opacity 880ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 880ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-enabled .reveal.is-visible,
.motion-enabled .motion-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-enabled .boutique-hero-photo.reveal,
.motion-enabled .menu-page-hero-photo.motion-reveal,
.motion-enabled .reserve-tool-photo.motion-reveal,
.motion-enabled .column-mag-photo.motion-reveal,
.motion-enabled .access-hero-photo.motion-reveal,
.motion-enabled .faq-hero-photo.motion-reveal {
  transform: translate3d(18px, 0, 0);
  clip-path: inset(0 0 0 18%);
  filter: none;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1080ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1080ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-enabled .boutique-hero-photo.reveal.is-visible,
.motion-enabled .menu-page-hero-photo.motion-reveal.is-visible,
.motion-enabled .reserve-tool-photo.motion-reveal.is-visible,
.motion-enabled .column-mag-photo.motion-reveal.is-visible,
.motion-enabled .access-hero-photo.motion-reveal.is-visible,
.motion-enabled .faq-hero-photo.motion-reveal.is-visible {
  transform: none;
  clip-path: inset(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 0;
  pointer-events: none;
}

.topbar {
  display: none;
}

.nav-wrap {
  width: 100%;
}

.brand {
  position: fixed;
  top: 60px;
  left: 50px;
  z-index: 90;
  width: 110px;
  min-height: 38px;
  color: var(--ink);
  pointer-events: auto;
}

.brand-logo-img {
  display: none;
}

.brand::before {
  content: "VEIL";
  display: block;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.42em;
}

.brand::after {
  content: "Private Beauty";
  position: absolute;
  top: -15px;
  left: 0;
  color: rgba(51, 51, 51, 0.78);
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.subpage-body .brand {
  top: 0;
  left: 0;
  width: 210px;
  height: 156px;
  padding: 62px 0 0 50px;
  background: var(--paper);
}

.menu-toggle {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 100;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle span {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"]::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(28deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-28deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  padding: 112px var(--gutter) 86px;
  background: rgba(255, 255, 255, 0.97);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.site-nav.is-open {
  display: flex;
  pointer-events: auto;
}

.site-nav a,
.site-nav a[href*="symptoms"],
.site-nav a[href*="faq"] {
  display: block;
  width: min(420px, 100%);
  min-height: 56px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav .nav-cta {
  min-height: 56px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: block;
  justify-content: flex-start;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.site-nav .nav-cta::before {
  display: none;
}

main > section,
main > article,
.article-main > article > header,
.legal-wrap {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin-right: auto;
  margin-left: auto;
}

main > section {
  padding: 150px 0 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.16em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
  line-height: 1.75;
}

h3 {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.boutique-kicker,
.boutique-section-label,
.menu-page-kicker,
.column-kicker,
.subpage-kicker,
.reserve-tool-kicker,
.faq-kicker,
.access-kicker,
.eyebrow,
.column-post-featured-label,
.feedback-label,
.access-section-label,
.article-depth-label {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
.nav-cta,
.boutique-hero-links a,
.treatment-spotlight-link,
.boutique-inline-link,
.boutique-reserve-button,
.boutique-column-actions a,
.menu-price-actions a,
.menu-choice-symptoms-link,
.menu-page-reserve a,
.symptom-hub-reserve,
.symptom-reserve-cta a,
.column-post-link,
.column-topic-reserve a,
.column-reserve-strip a,
.reserve-progress-button,
.submit-button,
.access-hero-cta,
.access-reserve-cta a,
.faq-inline-reserve,
.faq-reserve-cta a,
.article-inline-cta a,
.article-cta-panel a,
.article-nav a {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.button::before,
.button::after,
.boutique-hero-links a::before,
.boutique-hero-links a::after,
.treatment-spotlight-link::before,
.treatment-spotlight-link::after,
.boutique-inline-link::before,
.boutique-inline-link::after,
.boutique-reserve-button::before,
.boutique-reserve-button::after,
.boutique-column-actions a::before,
.boutique-column-actions a::after,
.menu-price-actions a::before,
.menu-price-actions a::after,
.menu-choice-symptoms-link::before,
.menu-choice-symptoms-link::after,
.menu-page-reserve a::before,
.menu-page-reserve a::after,
.symptom-hub-reserve::before,
.symptom-hub-reserve::after,
.symptom-reserve-cta a::before,
.symptom-reserve-cta a::after,
.column-post-link::before,
.column-post-link::after,
.reserve-progress-button::before,
.reserve-progress-button::after,
.submit-button::before,
.submit-button::after,
.access-hero-cta::before,
.access-hero-cta::after,
.access-reserve-cta a::before,
.access-reserve-cta a::after,
.faq-inline-reserve::before,
.faq-inline-reserve::after,
.faq-reserve-cta a::before,
.faq-reserve-cta a::after,
.article-inline-cta a::before,
.article-inline-cta a::after,
.article-cta-panel a::before,
.article-cta-panel a::after,
.article-nav a::before,
.article-nav a::after {
  display: none !important;
}

.home-body .boutique-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 1040px;
  padding: 0;
}

.home-body .boutique-hero::before {
  content: "";
  position: absolute;
  top: 500px;
  left: clamp(220px, 21.6vw, 553px);
  z-index: 2;
  width: 74px;
  height: 1px;
  background: rgba(51, 51, 51, 0.74);
  transform: rotate(-48deg);
  transform-origin: 0 50%;
}

.motion-enabled.home-body .boutique-hero::before {
  opacity: 0;
  transform: rotate(-48deg) translate3d(0, 14px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1) 520ms,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 520ms;
}

.motion-enabled.home-body.is-loaded .boutique-hero::before {
  opacity: 1;
  transform: rotate(-48deg);
}

.home-body .boutique-main > section:not(.boutique-hero):not(.boutique-concept) {
  margin-top: 110px;
}

.home-body .boutique-hero::after,
.home-body .boutique-hero-copy .boutique-kicker,
.home-body .boutique-hero-copy p:not(.boutique-kicker) {
  display: none;
}

.home-body .boutique-hero-photo {
  position: absolute;
  top: 160px;
  right: auto;
  left: clamp(385px, 30vw, 770px);
  z-index: 1;
  width: min(66vw, 1690px);
  height: clamp(450px, 29vw, 740px);
  overflow: hidden;
  background: var(--panel);
}

.home-body .boutique-hero-photo img {
  object-position: 62% center;
}

.home-body .boutique-hero .boutique-script-ghost {
  --ghost-opacity: 1;
  display: block !important;
  position: absolute;
  top: 52px;
  left: clamp(68px, 7.2vw, 116px);
  z-index: 0;
  color: rgba(89, 99, 83, 0.1);
  font-family: "Parisienne", cursive;
  font-size: clamp(7.2rem, 13vw, 14.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: var(--ghost-opacity);
}

.motion-enabled.home-body .boutique-hero .boutique-script-ghost,
.motion-enabled.home-body .boutique-hero-handwriting {
  opacity: 0;
  transform: translate3d(-14px, 10px, 0);
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1) 180ms,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.motion-enabled.home-body.is-loaded .boutique-hero .boutique-script-ghost {
  opacity: var(--ghost-opacity);
  transform: none;
}

.motion-enabled.home-body.is-loaded .boutique-hero-handwriting {
  opacity: 1;
  transform: none;
}

.home-body .boutique-hero-handwriting {
  position: absolute;
  top: 790px;
  left: clamp(56px, 5.6vw, 80px);
  z-index: 0;
  margin: 0;
  color: rgba(89, 99, 83, 0.36);
  font-family: "Parisienne", cursive;
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.home-body .boutique-hero-copy {
  position: absolute;
  top: 320px;
  left: clamp(220px, 21.5vw, 550px);
  z-index: 2;
  width: min(340px, calc(100% - var(--gutter) * 2));
}

.home-body .boutique-hero-copy h1 {
  font-size: inherit;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
}

.home-body .hero-brand-word {
  display: block;
  margin-left: -8px;
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(4.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.18em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(51, 51, 51, 0.5);
  text-shadow: none;
}

.home-body .hero-subcopy {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

.home-body .boutique-hero-links {
  margin-top: 178px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: nowrap;
}

.home-body .boutique-hero-links a {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  justify-content: flex-start;
  text-align: left;
}

.boutique-concept {
  min-height: 596px;
  padding-top: 0;
  display: grid;
  grid-template-columns: 487px minmax(0, 1fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: start;
}

.boutique-concept-photo {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 487px;
  max-width: 100%;
  aspect-ratio: 487 / 379;
  overflow: hidden;
}

.boutique-concept-photo img,
.boutique-hero-photo img,
.boutique-salon-card img,
.boutique-visual-grid img,
.boutique-message-photo img,
.boutique-column-article img,
.column-post-photo img,
.menu-page-hero-photo img,
.reserve-tool-photo img,
.column-mag-photo img,
.access-hero-photo img,
.faq-hero-photo img,
.article-hero-photo img,
.access-area-photo img,
.menu-page-reserve-photo img,
.article-inline-photo img,
.article-treatment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(1.04) contrast(0.96);
}

.boutique-salon-card figure,
.boutique-visual-grid figure,
.boutique-message-photo,
.boutique-column-article {
  overflow: hidden;
}

.boutique-salon-card img,
.boutique-visual-grid img,
.boutique-message-photo img,
.boutique-column-article img,
.menu-page-hero-photo img,
.reserve-tool-photo img,
.column-mag-photo img,
.access-hero-photo img,
.faq-hero-photo img,
.article-hero-photo img {
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .boutique-salon-card:hover img,
  .boutique-column-article:hover img,
  .menu-page-hero:hover .menu-page-hero-photo img,
  .boutique-visual-grid figure:hover img {
    transform: scale(1.035);
  }
}

.boutique-concept-photo figcaption {
  display: none;
}

.boutique-concept .boutique-section-label,
.boutique-concept-copy {
  grid-column: 2;
}

.boutique-concept .boutique-section-label {
  margin-top: 88px;
  margin-bottom: 18px;
}

.boutique-concept-copy h2,
.boutique-salon-copy h2,
.boutique-message-copy h2,
.boutique-visual-head h2,
.boutique-column-head h2,
.boutique-reserve-copy h2 {
  font-size: clamp(1.2rem, 1.75vw, 1.65rem);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.boutique-concept-copy p,
.boutique-salon-copy p,
.boutique-message-copy p,
.boutique-column-head p,
.boutique-reserve-copy p {
  margin-top: 18px;
}

@media (min-width: 1280px) {
  .home-body .boutique-concept {
    width: min(calc(100vw - 280px), 2280px);
    grid-template-columns: 487px minmax(0, 1fr);
    gap: clamp(220px, 12vw, 310px);
  }
}

.boutique-salon {
  min-height: 388px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
}

.boutique-salon-photo {
  display: none;
}

.boutique-salon-copy {
  max-width: none;
}

.boutique-salon-points,
.boutique-salon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.boutique-salon-card {
  display: block;
}

.boutique-salon-card figure {
  aspect-ratio: 223 / 181;
  overflow: hidden;
  background: var(--panel);
}

.boutique-salon-card:nth-child(2) img {
  object-position: 54% 46%;
}

.boutique-salon-card:nth-child(3) img {
  object-position: 50% 58%;
}

.boutique-salon-card h3,
.boutique-salon-points strong {
  margin-top: 16px;
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boutique-salon-card p,
.boutique-salon-card a,
.boutique-salon-points span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.boutique-salon-card a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.boutique-salon-points div {
  padding-top: 0;
}

.boutique-visual-notes {
  width: 100%;
  max-width: none;
  min-height: 320px;
  padding-top: 0;
  overflow: hidden;
}

.boutique-visual-head {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
}

.boutique-visual-head .boutique-kicker,
.boutique-visual-head h2 {
  grid-column: 2;
}

.boutique-visual-head .boutique-kicker {
  margin-bottom: 12px;
}

.boutique-visual-grid {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.boutique-visual-grid figure {
  flex: 0 0 140px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
}

.treatment-spotlight {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  max-width: var(--max);
  min-height: 610px;
  background: var(--bg);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: start;
}

.treatment-spotlight-copy,
.treatment-spotlight-lines {
  width: 100%;
  margin: 0;
}

.treatment-spotlight-kicker {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.treatment-spotlight-title {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.treatment-spotlight-title span,
.treatment-spotlight-lead span {
  display: block;
}

.treatment-spotlight-lead {
  margin-top: 16px;
}

.treatment-spotlight-link {
  margin-top: 26px;
}

.treatment-spotlight-lines {
  border-top: 1px solid var(--line-strong);
}

.treatment-spotlight-lines a {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.treatment-spotlight-lines strong,
.treatment-spotlight-lines span {
  color: var(--ink);
  font-weight: 500;
}

.treatment-spotlight-lines small {
  color: var(--muted);
  text-align: right;
}

.boutique-message {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 92px);
  align-items: start;
}

.boutique-message-photo {
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: var(--panel);
}

.home-body .boutique-message[aria-labelledby="home-local-title"] .boutique-message-photo img {
  object-position: 52% 62%;
}

.boutique-message-copy ul {
  margin-top: 26px;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.boutique-message-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.boutique-column-section {
  min-height: 582px;
}

.boutique-column-head {
  margin-bottom: 30px;
}

.boutique-column-articles,
.column-latest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.boutique-column-article,
.column-post {
  display: block;
}

.boutique-column-article img,
.column-post-photo {
  display: block;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: var(--panel);
}

.boutique-column-article > img {
  height: clamp(190px, 13vw, 250px);
  object-fit: cover;
}

.boutique-column-number,
.column-post-number,
.column-post-date,
.column-post-featured-label,
.column-post-meta {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.column-post-line {
  display: none;
}

.boutique-column-article small,
.column-post-date span {
  color: var(--muted);
  font-size: 0.74rem;
}

.boutique-column-article strong,
.column-post h3 {
  margin-top: 5px;
  display: block;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.15vw, 1.06rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.055em;
}

.boutique-column-article p,
.column-post p:not(.column-post-date):not(.column-post-featured-label) {
  margin-top: 6px;
  font-size: 0.74rem;
  line-height: 1.8;
}

.boutique-column-actions,
.column-topic-reserve,
.column-reserve-strip-links,
.symptom-reserve-cta div,
.menu-page-reserve div,
.article-action-row,
.article-nav {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.boutique-reserve,
.menu-page-reserve,
.symptom-reserve-cta,
.faq-reserve-cta,
.access-reserve-cta,
.article-cta-panel {
  width: 100%;
  max-width: none;
  margin-top: 150px;
  padding: 90px 0;
  background: var(--panel);
}

.boutique-reserve-copy,
.menu-page-reserve-copy,
.symptom-reserve-cta > *,
.faq-reserve-cta > *,
.access-reserve-cta > *,
.article-cta-panel > * {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.boutique-reserve {
  text-align: center;
}

.menu-page-hero,
.reserve-tool-hero,
.column-mag-hero,
.access-hero,
.faq-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 650px;
  padding: 0 0 92px;
  display: block;
}

.menu-body .menu-page-hero {
  width: 100%;
  max-width: none;
  min-height: 650px;
  padding: 0 0 92px;
  display: block;
}

.article-hero {
  min-height: 620px;
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.menu-page-hero-photo,
.reserve-tool-photo,
.column-mag-photo,
.access-hero-photo,
.faq-hero-photo,
.article-hero-photo,
.access-area-photo,
.menu-page-reserve-photo,
.article-inline-photo,
.article-treatment-photo {
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: var(--panel);
}

.menu-page-hero-photo,
.reserve-tool-photo,
.column-mag-photo,
.access-hero-photo,
.faq-hero-photo {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 360px;
  aspect-ratio: auto;
}

.reserve-tool-photo,
.column-mag-photo,
.access-hero-photo,
.faq-hero-photo,
.article-hero-photo {
  aspect-ratio: 4 / 5;
}

.reserve-tool-photo,
.column-mag-photo,
.access-hero-photo,
.faq-hero-photo {
  aspect-ratio: auto;
}

.menu-page-hero-copy,
.reserve-tool-copy,
.column-mag-copy,
.access-hero-copy,
.faq-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin: 0 auto;
  padding-top: 330px;
  text-align: center;
}

.menu-page-hero .menu-page-kicker,
.reserve-tool-hero .reserve-tool-kicker,
.column-mag-hero .column-kicker,
.access-hero .access-kicker,
.faq-hero .faq-kicker {
  display: none;
}

.menu-page-hero-copy h1,
.reserve-tool-copy h1,
.column-mag-copy h1,
.access-hero-copy h1,
.faq-hero-copy h1 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(51, 51, 51, 0.8);
  text-stroke: 1px rgba(51, 51, 51, 0.8);
  font-size: clamp(3.4rem, 6.3vw, 5.65rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.symptoms-hero .menu-page-hero-copy h1 {
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.12em;
}

.article-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.85;
  letter-spacing: 0.035em;
}

.menu-page-lead,
.reserve-tool-copy p:not(.reserve-tool-kicker),
.column-mag-lead,
.access-lead,
.faq-hero-copy p,
.article-hero-copy p,
.access-subtitle,
.faq-hero-subtitle,
.column-mag-subtitle {
  max-width: 34em;
  margin: 22px auto 0;
}

.article-back {
  grid-column: 1 / -1;
  width: max-content;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-page-guide,
.menu-price-board,
.menu-choice-board,
.menu-page-list,
.menu-page-options,
.menu-page-flow,
.menu-page-note,
.symptom-hub,
.column-topic-board,
.column-latest,
.faq-list-section,
.faq-note-section,
.availability-tool,
.booking-form,
.booking-feedback,
.access-area,
.access-flow,
.article-content,
.article-related,
.legal-wrap {
  background: var(--bg);
}

.menu-page-guide,
.menu-price-board,
.menu-choice-board,
.menu-page-list,
.menu-page-options,
.menu-page-flow,
.symptom-hub,
.column-topic-board,
.column-latest,
.faq-list-section,
.access-area,
.access-flow {
  padding-top: 120px;
}

.menu-page-guide .menu-page-kicker {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.menu-page-guide h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.65;
}

.menu-page-guide p {
  max-width: 44em;
  letter-spacing: 0.02em;
}

.menu-price-board-head,
.menu-choice-head,
.menu-page-list-head,
.symptom-hub-head,
.column-topic-head,
.faq-section-head,
.availability-head,
.access-flow > .access-section-label,
.article-related h2 {
  margin-bottom: 28px;
}

#menu-price-title {
  scroll-margin-top: 225px;
}

.menu-page-guide dl,
.menu-option-price-board dl,
.legal-table,
.article-content dl {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.menu-page-guide dl > div,
.menu-option-price-board dl > div,
.legal-table > div,
.article-content dl > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-price-table,
.menu-choice-list,
.menu-concern-list,
.symptom-hub-groups,
.faq-accordion-list,
.menu-page-flow ol,
.access-flow-list,
.article-related-list {
  border-top: 1px solid var(--line-strong);
}

.menu-price-row {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px 150px;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.menu-price-purpose {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.73rem;
}

.menu-price-name strong,
.menu-price-name small,
.menu-price-value small {
  display: block;
}

.menu-price-name strong,
.menu-choice-list strong,
.menu-concern-list strong,
.symptom-hub-article strong,
.menu-course-name strong,
.menu-option-row strong,
.menu-option-row em {
  color: var(--ink);
  font-weight: 500;
}

.menu-price-name small,
.menu-price-time,
.menu-price-value small {
  color: var(--muted);
  font-size: 0.73rem;
}

.menu-price-value {
  color: var(--ink);
  text-align: right;
  letter-spacing: 0.1em;
}

.menu-price-actions {
  display: none;
}

.menu-option-price-board {
  margin-top: 48px;
}

.menu-choice-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 72px);
}

.menu-choice-panel h3,
.symptom-hub-group h3 {
  margin-bottom: 14px;
}

.menu-choice-list a,
.menu-concern-list a {
  min-height: 54px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.menu-choice-list em {
  color: var(--muted);
  font-style: normal;
}

.menu-page-list-head {
  margin-bottom: 24px;
}

.menu-page-list-head span {
  color: var(--muted);
  letter-spacing: 0.14em;
}

.menu-course-row {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 150px;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.menu-course-row-signature {
  border-top-color: var(--line-strong);
}

.menu-signature-label {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-course-time {
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.menu-course-name em,
.menu-course-price small,
.menu-course-detail p,
.menu-option-row small {
  color: var(--muted);
  font-style: normal;
}

.menu-course-price {
  color: var(--ink);
  text-align: right;
}

.menu-course-detail {
  padding: 0 0 22px 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.menu-course-detail ul,
.article-content ul,
.article-content ol {
  padding-left: 1.2em;
}

.menu-course-article-links,
.menu-option-row,
.article-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-course-article-links a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.74rem;
}

.menu-option-row {
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px 100px minmax(220px, 0.9fr);
  gap: 16px 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.menu-page-flow ol,
.access-flow-list {
  margin-top: 26px;
  list-style: none;
}

.menu-page-flow li,
.access-flow-list li {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-page-flow li span,
.access-flow-number {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.menu-page-flow li strong,
.menu-page-flow li em,
.access-flow-list li strong,
.access-flow-list li p {
  grid-column: 2;
}

.menu-page-flow li em {
  color: var(--muted);
  font-style: normal;
}

.menu-page-note,
.faq-note-section,
.access-flow-note,
.article-intent,
.article-booking-guide,
.article-depth-boost,
.article-reference-flow,
.article-treatment-note,
.article-care-points,
.article-faq-mini,
.column-reserve-strip {
  padding: 24px;
  background: var(--panel-2);
}

.menu-page-reserve {
  display: grid;
  grid-template-columns:
    minmax(var(--gutter), 1fr)
    minmax(300px, 470px)
    minmax(300px, 520px)
    minmax(var(--gutter), 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.menu-page-reserve-photo {
  grid-column: 2;
}

.menu-page-reserve-copy {
  grid-column: 3;
  width: auto;
  max-width: 460px;
  margin: 0;
}

.symptom-hub-group {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.symptom-hub-row {
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 68px;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.symptom-hub-article strong,
.symptom-hub-article span {
  display: block;
}

.symptom-hub-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.74rem;
}

.symptom-hub-reserve {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.column-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.column-topic-grid a,
.column-topic-card {
  min-height: 132px;
  padding: 18px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-topic-grid span,
.column-topic-card span {
  color: var(--muted);
  font-size: 0.74rem;
}

.column-topic-grid strong,
.column-topic-card strong {
  color: var(--ink);
  font-weight: 500;
}

.column-latest > h2,
.column-latest > .column-filter,
.column-latest > .column-reserve-strip {
  grid-column: 1 / -1;
}

.column-filter,
.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.column-filter {
  margin-bottom: 20px;
}

.column-filter a,
.faq-category-nav a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.74rem;
}

.column-post-link {
  margin-top: 14px;
  min-height: 34px;
  padding: 0 12px;
}

.availability-tool,
.booking-form,
.booking-feedback {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin-right: auto;
  margin-left: auto;
  padding: 42px;
  border: 1px solid var(--line);
}

.reserve-body .subpage-kicker,
.reserve-body .reserve-tool-kicker,
.reserve-body .feedback-label {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.reserve-body .availability-tool h2,
.reserve-body .booking-form h2,
.reserve-body .booking-feedback h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.65;
}

.availability-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.availability-controls {
  display: grid;
  grid-template-columns: 38px minmax(96px, auto) 38px;
  gap: 8px;
  align-items: center;
  justify-content: end;
}

.availability-nav {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.availability-nav:disabled {
  color: #bbbbbb;
  cursor: default;
}

.availability-legend,
.availability-weekdays {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  text-align: center;
}

.availability-legend {
  grid-template-columns: repeat(3, max-content);
  gap: 16px;
  text-align: left;
}

.availability-dot {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  display: inline-block;
  background: var(--ink);
}

.availability-dot-few {
  background: #9c8f74;
}

.availability-dot-closed {
  background: #c8c8c8;
}

.availability-calendar {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.availability-weekdays span,
.availability-day {
  min-height: 52px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.availability-weekdays span {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.availability-day {
  display: grid;
  place-items: center;
  gap: 2px;
  cursor: pointer;
}

.availability-day.is-empty,
.availability-day.is-closed {
  color: #b6b6b6;
  cursor: default;
}

.availability-day.is-selected,
.availability-day[aria-pressed="true"],
.availability-slot.is-selected,
.reserve-progress-button.is-ready {
  background: var(--ink);
  color: var(--paper);
}

.availability-slots,
.reserve-calendar-hint {
  margin-top: 26px;
}

.availability-slot-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.availability-slots-head {
  display: grid;
  gap: 4px;
}

.availability-slot {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  cursor: pointer;
}

.availability-slot:disabled {
  border-color: var(--line);
  color: #b6b6b6;
  cursor: default;
}

.booking-form {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.reserve-body .reserve-calendar-tool,
.reserve-body .booking-form,
.reserve-body .booking-feedback,
.reserve-body .reserve-note-strip {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reserve-body .booking-form {
  margin-top: 34px;
}

.reserve-body .reserve-note-strip {
  margin-top: 34px;
}

.booking-form label,
.booking-form fieldset {
  display: grid;
  gap: 8px;
  border: 0;
  padding: 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.booking-form textarea {
  min-height: 130px;
}

.booking-form .booking-check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.booking-form .booking-check input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--ink);
}

.booking-honeypot {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.booking-honeypot:focus {
  outline: 0 !important;
}

.reserve-note-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reserve-note-strip > div {
  min-height: 150px;
  padding: 20px;
  background: var(--paper);
}

.reserve-note-strip span,
.reserve-note-strip strong {
  display: block;
}

.reserve-note-strip strong {
  color: var(--ink);
  font-weight: 500;
}

.access-area {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.access-area-note {
  margin-top: 18px;
  color: var(--ink);
  letter-spacing: 0.14em;
}

.access-route-map-img {
  width: min(560px, 100%);
  margin: 28px 0;
  border: 1px solid var(--line);
}

.access-reserve-cta {
  text-align: center;
}

.faq-inline-reserve {
  margin: 22px 0 28px;
}

.faq-accordion {
  border-bottom: 1px solid var(--line);
}

.faq-accordion summary {
  min-height: 62px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
}

.faq-accordion p {
  padding: 0 0 22px;
}

.faq-toggle-mark {
  justify-self: end;
}

.faq-toggle-mark span:last-child,
.faq-accordion[open] .faq-toggle-mark span:first-child {
  display: none;
}

.faq-accordion[open] .faq-toggle-mark span:last-child {
  display: inline;
}

.article-content {
  width: min(calc(100vw - var(--gutter) * 2), var(--narrow));
  margin: 0 auto;
  padding: 80px 0 0;
}

.article-content > * + * {
  margin-top: 28px;
}

.article-date,
.article-source-note {
  color: var(--muted);
  font-size: 0.74rem;
}

.article-content h2 {
  max-width: 24em;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.85;
  letter-spacing: 0.035em;
}

.article-depth-grid,
.article-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-depth-card,
.article-flow-list > div {
  padding: 18px;
  background: var(--paper);
}

.article-inline-photo,
.article-treatment-photo {
  aspect-ratio: 1.42 / 1;
}

.article-inline-cta {
  padding: 24px;
  border: 1px solid var(--line);
}

.article-inline-cta strong,
.article-inline-cta span {
  display: block;
}

.article-related {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin: 120px auto 0;
}

.article-related a {
  padding: 16px 0;
  display: block;
  border-bottom: 1px solid var(--line);
}

.article-nav {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.legal-page {
  padding-top: 150px;
}

.legal-wrap {
  padding: 0;
}

.legal-wrap h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.legal-wrap .lead {
  max-width: 45em;
  margin-top: 24px;
}

.legal-stack {
  margin-top: 46px;
  display: grid;
  gap: 22px;
}

.policy-card {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.policy-card h3 {
  margin-bottom: 8px;
}

.site-footer {
  width: min(calc(100vw - var(--gutter) * 2), var(--max));
  margin: 90px auto 0;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.text-link {
  border-bottom: 1px solid currentColor;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 901px) {
  .subpage-body [id] {
    scroll-margin-top: 225px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 30px;
  }

  [id] {
    scroll-margin-top: 78px;
  }

  #menu-price-title {
    scroll-margin-top: 78px;
  }

  body {
    font-size: 12px;
    line-height: 2;
  }

  .site-header {
    position: absolute;
  }

  .brand {
    position: absolute;
    top: 34px;
    left: 30px;
    width: 86px;
    min-height: 34px;
  }

  .brand::before {
    font-size: 1.18rem;
    letter-spacing: 0.32em;
  }

  .brand::after {
    top: -12px;
    font-size: 0.48rem;
    letter-spacing: 0.14em;
  }

  .home-body .brand {
    display: none;
  }

  .subpage-body .brand {
    display: none;
  }

  .menu-toggle {
    top: 24px;
    right: 25px;
    width: 48px;
    height: 48px;
    gap: 5px;
  }

  .menu-toggle::before,
  .menu-toggle span {
    width: 18px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(28deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-28deg);
  }

  .site-nav {
    padding: 112px 30px 70px;
  }

  .site-nav a,
  .site-nav a[href*="symptoms"],
  .site-nav a[href*="faq"] {
    width: 100%;
    min-height: 54px;
    padding: 14px 0;
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    min-height: 54px;
    padding: 14px 0;
    font-size: 1.05rem;
  }

  .site-nav .nav-cta::before {
    display: none;
  }

  main > section,
  .article-main > article > header,
  .legal-wrap {
    width: calc(100vw - 60px);
  }

  main > section {
    padding-top: 100px;
  }

  .boutique-kicker,
  .boutique-section-label,
  .menu-page-kicker,
  .column-kicker,
  .subpage-kicker,
  .reserve-tool-kicker,
  .faq-kicker,
  .access-kicker,
  .eyebrow,
  .column-post-featured-label,
  .feedback-label,
  .access-section-label,
  .article-depth-label {
    margin-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: 0.14em;
  }

  .home-body .boutique-hero {
    min-height: 560px;
  }

  .home-body .boutique-hero::before {
    top: 365px;
    left: 42px;
    width: 46px;
  }

  .home-body .boutique-main > section:not(.boutique-hero):not(.boutique-concept) {
    margin-top: 100px;
  }

  .home-body .boutique-hero-copy {
    top: 260px;
    left: 37px;
    width: calc(100vw - 67px);
  }

  .home-body .boutique-hero-photo {
    top: 58px;
    right: 30px;
    left: auto;
    width: calc(100vw - 118px);
    height: clamp(218px, 58vw, 226px);
  }

  .home-body .boutique-hero-photo img {
    object-position: 62% center;
  }

  .home-body .boutique-hero .boutique-script-ghost {
    top: 238px;
    left: 22px;
    font-size: clamp(4.7rem, 24vw, 7rem);
    --ghost-opacity: 0.2;
  }

  .home-body .boutique-hero-handwriting {
    top: 492px;
    left: 64px;
    z-index: 2;
    color: rgba(89, 99, 83, 0.42);
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .home-body .hero-brand-word {
    display: block;
    margin-left: -2px;
    color: rgba(181, 168, 101, 0.56);
    font-size: 3.25rem;
    line-height: 0.98;
    letter-spacing: 0.17em;
  }

  .home-body .hero-subcopy {
    margin-top: 5px;
    font-size: 0.62rem;
    line-height: 1.6;
    letter-spacing: 0.24em;
  }

  .home-body .boutique-hero-links {
    margin-top: 24px;
    flex-direction: row;
    gap: 25px;
  }

  .home-body .boutique-hero-links a {
    font-size: 0.68rem;
  }

  @media (min-width: 560px) {
    .home-body .brand {
      display: block;
    }

    .home-body .boutique-hero {
      min-height: 760px;
    }

    .home-body .boutique-hero::before {
      top: 500px;
      left: 68px;
      width: 64px;
    }

    .home-body .boutique-hero-photo {
      top: 40px;
      right: 30px;
      left: auto;
      width: calc(100vw - 190px);
      height: min(56vw, 350px);
    }

    .home-body .boutique-hero .boutique-script-ghost {
      top: 42px;
      left: 42px;
      font-size: clamp(7rem, 21vw, 8rem);
      --ghost-opacity: 1;
    }

    .home-body .boutique-hero-copy {
      top: 305px;
      left: 68px;
      width: 250px;
    }

    .home-body .hero-subcopy {
      font-size: 0.72rem;
      line-height: 1.5;
      letter-spacing: 0.25em;
      white-space: nowrap;
    }

    .home-body .boutique-hero-links {
      margin-top: 160px;
      flex-direction: column;
      gap: 17px;
    }

    .home-body .boutique-hero-handwriting {
      top: 655px;
      left: 42px;
      z-index: 0;
      color: rgba(89, 99, 83, 0.36);
      font-size: clamp(1.85rem, 6vw, 2.4rem);
    }
  }

  .boutique-concept {
    min-height: 451px;
    padding-top: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .boutique-concept-photo {
    grid-column: 1;
    grid-row: 1;
    width: 278px;
    aspect-ratio: 278 / 124;
    margin: 0 auto 18px;
  }

  .boutique-concept .boutique-section-label,
  .boutique-concept-copy {
    grid-column: 1;
  }

  .boutique-concept .boutique-section-label {
    margin-top: 0;
    text-align: center;
  }

  .boutique-concept-copy h2,
  .boutique-salon-copy h2,
  .boutique-message-copy h2,
  .boutique-visual-head h2,
  .boutique-column-head h2,
  .boutique-reserve-copy h2 {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .boutique-salon,
  .boutique-message,
  .access-area,
  .menu-choice-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .boutique-salon {
    min-height: 544px;
    gap: 28px;
  }

  .boutique-salon-points,
  .boutique-salon-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .boutique-salon-card {
    display: grid;
    grid-template-columns: 119px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .boutique-salon-card figure {
    aspect-ratio: 119 / 96;
  }

  .boutique-salon-card h3 {
    margin-top: 0;
  }

  .boutique-visual-notes {
    min-height: 459px;
  }

  .boutique-visual-head {
    width: calc(100vw - 60px);
    display: block;
    text-align: center;
  }

  .boutique-visual-grid {
    width: calc(100vw - 60px);
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .boutique-visual-grid figure {
    width: 100%;
    flex-basis: auto;
  }

  .treatment-spotlight {
    width: calc(100vw - 60px);
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .treatment-spotlight-lines a {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .treatment-spotlight-lines small {
    grid-column: 2;
    text-align: left;
  }

  .boutique-message {
    gap: 24px;
  }

  .boutique-message-photo {
    aspect-ratio: 1.2 / 1;
  }

  .boutique-column-articles,
  .column-latest {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .boutique-column-article,
  .column-post {
    display: block;
  }

  .boutique-column-article img,
  .column-post-photo {
    aspect-ratio: 304 / 190;
  }

  .boutique-column-article > img {
    height: min(56vw, 220px);
  }

  .boutique-reserve,
  .menu-page-reserve,
  .symptom-reserve-cta,
  .faq-reserve-cta,
  .access-reserve-cta,
  .article-cta-panel {
    margin-top: 100px;
    padding: 70px 0;
  }

  .boutique-reserve-copy,
  .menu-page-reserve-copy,
  .symptom-reserve-cta > *,
  .faq-reserve-cta > *,
  .access-reserve-cta > *,
  .article-cta-panel > * {
    width: calc(100vw - 60px);
  }

  .menu-page-hero,
  .reserve-tool-hero,
  .column-mag-hero,
  .access-hero,
  .faq-hero,
  .menu-body .menu-page-hero {
    min-height: 330px;
    padding-top: 0;
    padding-bottom: 56px;
    display: block;
  }

  .article-hero {
    min-height: 500px;
    padding-top: 120px;
    padding-bottom: 56px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .menu-page-hero-photo,
  .reserve-tool-photo,
  .column-mag-photo,
  .access-hero-photo,
  .faq-hero-photo {
    height: 205px;
  }

  .menu-page-hero-copy,
  .reserve-tool-copy,
  .column-mag-copy,
  .access-hero-copy,
  .faq-hero-copy {
    width: calc(100vw - 60px);
    padding-top: 151px;
  }

  .access-lead {
    width: min(100%, 18.5rem);
    line-height: 2;
    overflow-wrap: anywhere;
  }

  .menu-page-hero-copy h1,
  .reserve-tool-copy h1,
  .column-mag-copy h1,
  .access-hero-copy h1,
  .faq-hero-copy h1 {
    font-size: 1.72rem;
    letter-spacing: 0.12em;
  }

  .symptoms-hero .menu-page-hero-copy h1 {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }

  .article-hero-copy h1 {
    font-size: 1.18rem;
    line-height: 1.9;
  }

  .menu-page-hero-photo,
  .reserve-tool-photo,
  .column-mag-photo,
  .access-hero-photo,
  .faq-hero-photo,
  .article-hero-photo {
    aspect-ratio: 1.26 / 1;
  }

  .menu-page-hero-photo,
  .reserve-tool-photo,
  .column-mag-photo,
  .access-hero-photo,
  .faq-hero-photo {
    aspect-ratio: auto;
  }

  .menu-page-guide,
  .menu-price-board,
  .menu-choice-board,
  .menu-page-list,
  .menu-page-options,
  .menu-page-flow,
  .symptom-hub,
  .column-topic-board,
  .column-latest,
  .faq-list-section,
  .access-area,
  .access-flow {
    padding-top: 86px;
  }

  .menu-page-guide .menu-page-kicker {
    font-size: 1.5rem;
  }

  .menu-page-guide h2 {
    font-size: 1.45rem;
    line-height: 1.75;
  }

  .menu-page-guide p {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
  }

  .menu-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 16px;
  }

  .menu-price-purpose,
  .menu-price-name,
  .menu-price-time {
    grid-column: 1;
  }

  .menu-price-value {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: center;
  }

  .menu-page-guide dl > div,
  .menu-option-price-board dl > div,
  .legal-table > div,
  .article-content dl > div,
  .menu-choice-list a,
  .menu-concern-list a,
  .symptom-hub-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-course-row,
  .menu-course-row-signature {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
  }

  .menu-signature-label {
    margin-bottom: 0;
  }

  .menu-course-name {
    grid-column: 1 / -1;
  }

  .menu-course-detail {
    padding-left: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-option-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 18px;
  }

  .menu-option-row small {
    grid-column: 1 / -1;
  }

  .menu-page-reserve {
    padding-right: 30px;
    padding-left: 30px;
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-page-reserve-photo,
  .menu-page-reserve-copy {
    grid-column: 1;
    width: 100%;
  }

  .column-topic-grid,
  .reserve-note-strip,
  .article-depth-grid,
  .article-flow-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-category-nav a {
    text-align: center;
  }

  .availability-tool,
  .booking-form,
  .booking-feedback,
  .article-content {
    width: calc(100vw - 60px);
  }

  .availability-tool,
  .booking-form,
  .booking-feedback {
    padding: 22px 16px;
  }

  .reserve-body .reserve-calendar-tool {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .reserve-body .booking-form,
  .reserve-body .booking-feedback,
  .reserve-body .reserve-note-strip {
    width: calc(100vw - 60px);
    max-width: none;
  }

  .reserve-body .reserve-calendar-tool {
    padding-right: 14px;
    padding-left: 14px;
  }

  .reserve-body .subpage-kicker,
  .reserve-body .reserve-tool-kicker,
  .reserve-body .feedback-label {
    margin-bottom: 14px;
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .reserve-body .availability-tool h2,
  .reserve-body .booking-form h2,
  .reserve-body .booking-feedback h2 {
    font-size: 1.45rem;
    line-height: 1.7;
  }

  .availability-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .availability-controls {
    justify-content: start;
    grid-template-columns: 38px minmax(78px, max-content) 38px;
  }

  .availability-legend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .availability-weekdays,
  .availability-calendar {
    width: 100%;
    min-width: 0;
  }

  .availability-weekdays span,
  .availability-day {
    min-height: 46px;
    font-size: 0.74rem;
  }

  .availability-day {
    min-width: 0;
    padding: 0;
  }

  .availability-slot {
    min-height: 38px;
    padding: 0 12px;
  }

  .reserve-progress-button,
  .submit-button {
    width: 100%;
    white-space: normal;
  }

  .booking-form select {
    text-overflow: ellipsis;
  }

  .booking-form .booking-check {
    align-items: flex-start;
  }

  .article-content {
    padding-top: 56px;
  }

  .article-content h2 {
    max-width: none;
    font-size: 1.17rem;
    line-height: 1.9;
  }

  .article-intent,
  .article-booking-guide,
  .article-depth-boost,
  .article-reference-flow,
  .article-treatment-note,
  .article-care-points,
  .article-faq-mini,
  .article-inline-cta {
    padding: 20px 16px;
  }

  .article-related,
  .article-nav {
    width: calc(100vw - 60px);
  }

  .legal-page {
    padding-top: 120px;
  }

  .legal-wrap h1 {
    font-size: 2.25rem;
    line-height: 1.25;
  }

  .site-footer {
    width: calc(100vw - 60px);
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .button,
  .treatment-spotlight-link,
  .boutique-inline-link,
  .boutique-reserve-button,
  .boutique-column-actions a,
  .menu-page-reserve a,
  .symptom-reserve-cta a,
  .reserve-progress-button,
  .submit-button,
  .access-hero-cta,
  .faq-inline-reserve,
  .faq-reserve-cta a,
  .article-inline-cta a,
  .article-cta-panel a,
  .article-nav a {
    width: 100%;
  }
}
