:root {
  --ivory: #f7f3ed;
  --cream: #eee7dd;
  --paper: #fffdf9;
  --blush: #e4d0cb;
  --rose: #a9776d;
  --taupe: #9b8c80;
  --brown: #554840;
  --charcoal: #302a27;
  --line: rgba(85, 72, 64, 0.18);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--charcoal);
  color: white;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  padding: 13px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.26em;
  margin-right: -0.26em;
}

.brand-sub {
  margin-top: 7px;
  color: var(--taupe);
  font-family: Georgia, serif;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
}

.header-nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.82rem;
}

.header-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.header-nav a:hover,
.header-nav a:focus-visible { border-color: var(--rose); }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: stretch;
  background: var(--ivory);
  overflow: hidden;
}

.hero-copy {
  width: min(660px, 100%);
  margin-left: auto;
  padding: clamp(70px, 8vw, 132px) clamp(32px, 6vw, 92px) 80px clamp(24px, 5vw, 64px);
  align-self: center;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.hero h1,
.section-heading h2,
.daily-copy h2,
.homecare-copy h2,
.choice-heading h2,
.profile-copy h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.065em;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero-lead {
  margin-bottom: 14px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  letter-spacing: 0.08em;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 30px;
  color: #665b54;
}

.hero-offer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 590px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-offer > div { display: grid; gap: 2px; }
.hero-offer > div span { color: var(--rose); font-size: 0.8rem; }
.hero-offer > div strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.hero-offer > p { margin: 0; white-space: nowrap; font-family: Georgia, serif; font-size: 2.3rem; line-height: 1; }
.hero-offer > p span { font-size: 1rem; }
.hero-offer > p small { font-family: var(--sans); font-size: 0.72rem; }

.cta-group {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr);
  gap: 12px;
  max-width: 610px;
  margin-top: 30px;
}

.button {
  min-height: 56px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brown);
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brown); color: white; }
.button-primary:hover { background: var(--charcoal); }
.button-secondary { background: transparent; color: var(--brown); }
.button-secondary:hover { background: white; }
.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible { outline: 3px solid rgba(169, 119, 109, 0.4); outline-offset: 3px; }

.cta-note {
  margin: 13px 0 0;
  color: var(--taupe);
  font-size: 0.76rem;
}

.image-frame { margin: 0; overflow: hidden; }
.image-frame img { height: 100%; object-fit: cover; }
.hero-visual { position: relative; min-height: 680px; }
.hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 24px;
  color: rgba(255,255,255,.9);
  font-family: Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero-side-note {
  position: absolute;
  left: 20px;
  bottom: 40px;
  color: rgba(85,72,64,.45);
  font-family: Georgia, serif;
  font-size: 0.66rem;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.trust-strip {
  padding: 24px clamp(22px, 5vw, 64px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 66px minmax(190px, 1fr) auto auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.trust-person {
  width: 66px;
  height: 66px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: var(--cream);
}

.trust-person img { height: 100%; object-fit: cover; object-position: center 31%; }
.trust-intro-copy .eyebrow { margin-bottom: 7px; font-size: .64rem; }
.trust-intro-copy > p:last-child { max-width: 390px; margin: 0; color: #6b6059; font-size: .78rem; line-height: 1.75; }
.trust-facts { margin: 0; display: flex; align-items: stretch; }
.trust-facts > div { min-width: 116px; padding: 3px 20px; border-left: 1px solid var(--line); }
.trust-facts dt { color: var(--brown); font-family: var(--serif); font-size: .9rem; white-space: nowrap; }
.trust-facts dd { margin: 2px 0 0; color: var(--taupe); font-size: .62rem; white-space: nowrap; }
.trust-link { color: var(--brown); font-size: .7rem; text-decoration-color: var(--blush); text-underline-offset: 6px; white-space: nowrap; }

.section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 5vw, 64px);
}

.section > * { width: min(var(--max), 100%); margin-left: auto; margin-right: auto; }
.section-tinted { background: var(--ivory); }

.section-heading { margin-bottom: 54px; }
.section-heading.centered { text-align: center; }
.section-heading.narrow { max-width: 740px; }
.section-heading h2,
.daily-copy h2,
.homecare-copy h2,
.choice-heading h2,
.profile-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.section-heading > p:last-child,
.daily-copy > p,
.homecare-copy > p,
.choice-heading > p { color: #6b6059; }

.concerns { background: var(--paper); }
.concern-list {
  max-width: 970px;
  margin-bottom: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.concern-list li {
  min-height: 78px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.concern-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.concern-list span { color: var(--rose); font-family: Georgia, serif; font-size: 0.72rem; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(54px, 8vw, 110px); align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.large-copy { color: var(--brown) !important; font-family: var(--serif); font-size: clamp(1.15rem, 2.1vw, 1.45rem); line-height: 2; }

.approach-equation {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.approach-equation div {
  min-height: 190px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
}

.approach-equation div span { color: var(--rose); font-family: Georgia, serif; font-size: .75rem; }
.approach-equation div strong { margin: 9px 0; font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.approach-equation div small { color: #786d65; font-size: .76rem; line-height: 1.75; }
.approach-equation b { color: var(--rose); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }

.daily-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 8vw, 112px); align-items: center; }
.treatment-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.treatment-image { aspect-ratio: 1 / 1; background: var(--ivory); }
.treatment-image-main { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.daily-copy { max-width: 540px; }
.soft-note { margin-top: 32px; padding: 22px 0 0 28px; border-top: 1px solid var(--line); border-left: 3px solid var(--blush); }
.soft-note span { color: var(--rose); font-size: .78rem; }
.soft-note p { margin: 6px 0 0; }

.section-dark { color: white; background: var(--charcoal); }
.section-heading.light > p:last-child { color: #d8cec8; }
.comparison-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.22); }
.comparison-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.comparison-table th,
.comparison-table td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.14); text-align: center; }
.comparison-table thead th { padding-top: 24px; padding-bottom: 24px; font-family: var(--serif); font-weight: 500; }
.comparison-table thead th span { display: block; margin-bottom: 3px; color: var(--blush); font-family: var(--sans); font-size: .7rem; }
.comparison-table th:first-child { text-align: left; }
.comparison-table tbody th { font-size: .84rem; font-weight: 400; }
.comparison-table td:nth-child(3),
.comparison-table thead th:nth-child(3) { background: rgba(228,208,203,.09); }

.menu-summary { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.menu-summary > div { padding: 28px; border: 1px solid rgba(255,255,255,.2); }
.menu-summary p { margin: 0 0 6px; color: var(--blush); font-size: .75rem; }
.menu-summary h3 { margin: 0 0 12px; font-family: var(--serif); font-weight: 500; }
.menu-summary strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.menu-summary strong small { font-family: var(--sans); font-size: .7rem; }
.menu-summary span { color: #d8cec8; font-size: .72rem; }

.first-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(85,72,64,.08);
}

.first-card-title { padding: clamp(32px, 5vw, 64px); background: var(--ivory); }
.first-card-title > p:first-child { margin-bottom: 8px; color: var(--rose); font-size: .78rem; }
.first-card-title h3 { margin-bottom: 36px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.65; }
.price { font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1; }
.price span { font-size: 1.2rem; }
.price small { margin-left: 6px; font-family: var(--sans); font-size: .72rem; }
.duration { margin: 14px 0 0; color: var(--taupe); font-size: .8rem; }

.step-list { margin: 0; padding: clamp(26px, 4vw, 54px); list-style: none; }
.step-list li { padding: 22px 0; display: grid; grid-template-columns: 42px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.step-list li:last-child { border-bottom: 0; }
.step-list li > span { color: var(--rose); font-family: Georgia, serif; font-size: .75rem; }
.step-list strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.step-list p { margin: 5px 0 0; color: #6b6059; font-size: .88rem; line-height: 1.85; }

.cta-panel { margin-top: 36px; padding: 32px clamp(22px, 5vw, 48px); background: var(--cream); text-align: center; }
.cta-panel > p { margin-bottom: 0; font-family: var(--serif); }
.cta-panel .cta-group { margin-left: auto; margin-right: auto; }
.cta-panel.blush { background: #efe3df; }

.choice-block { margin-top: 50px; padding: clamp(34px, 6vw, 64px); background: #eadbd6; }
.choice-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.choice-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(85,72,64,.2); }
.choice-paths > div { min-height: 240px; padding: 34px; background: #f4e9e5; }
.choice-paths span { color: var(--rose); font-family: Georgia, serif; font-size: .72rem; }
.choice-paths strong { display: block; margin: 16px 0 10px; font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.choice-paths p { margin-bottom: 0; color: #6b6059; font-size: .88rem; }

.program-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.program-price { padding: 0 0 40px 38px; border-left: 1px solid var(--line); }
.program-price p { margin-bottom: 8px; color: var(--taupe); font-size: .8rem; }
.program-price strong { display: block; margin: 14px 0; font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.4rem); font-weight: 400; line-height: 1; }
.program-price strong span { font-size: 1.1rem; }
.program-price strong small { font-family: var(--sans); font-size: .72rem; }

.timeline { margin-top: 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { padding: 34px 0; display: grid; grid-template-columns: 60px 260px 1fr; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.timeline-number { color: var(--rose); font-family: Georgia, serif; font-size: 1.3rem; }
.timeline li > div p { margin: 0; color: var(--taupe); font-size: .72rem; }
.timeline h3 { margin: 2px 0; font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.timeline li > div span { color: var(--rose); font-size: .72rem; }
.timeline li > p { margin: 0; color: #6b6059; font-size: .9rem; }

.program-includes { margin-top: 44px; padding: 38px clamp(24px, 5vw, 54px); background: var(--ivory); }
.program-includes h3 { font-family: var(--serif); font-weight: 500; }
.program-includes ul { margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 34px; list-style: none; }
.program-includes li { padding-left: 20px; position: relative; }
.program-includes li::before { content: ""; position: absolute; left: 0; top: .8em; width: 8px; border-top: 1px solid var(--rose); }

.homecare-layout { display: grid; grid-template-columns: 1fr; gap: clamp(38px, 6vw, 68px); align-items: center; }
.homecare-copy { max-width: 760px; }
.homecare-copy dl { margin: 36px 0; border-top: 1px solid var(--line); }
.homecare-copy dl div { padding: 17px 0; display: grid; grid-template-columns: 150px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.homecare-copy dt { font-family: Georgia, serif; font-size: .84rem; }
.homecare-copy dd { margin: 0; color: #6b6059; font-size: .84rem; }
.delivery-note { padding: 22px; background: var(--paper); border-left: 3px solid var(--blush); font-size: .84rem; }
.delivery-note strong { display: block; color: var(--rose); }
.care-image { height: auto; background: var(--paper); }
.care-image img { height: auto; object-fit: contain; }

.gel-layout { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); }
.gel-main { padding: clamp(32px, 5vw, 62px); background: var(--ivory); }
.gel-main > p:first-child { color: var(--rose); font-size: .76rem; }
.gel-main h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.gel-main strong { display: block; margin: 20px 0 26px; font-family: Georgia, serif; font-size: 2.7rem; font-weight: 400; }
.gel-main strong small { font-family: var(--sans); font-size: .7rem; }
.gel-main > p:last-child { color: #6b6059; font-size: .9rem; }
.gel-cases { padding: clamp(32px, 5vw, 62px); }
.gel-cases h3 { font-family: var(--serif); font-weight: 500; }
.gel-cases ul { margin: 22px 0 26px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 26px; list-style: none; }
.gel-cases li { padding-left: 20px; position: relative; }
.gel-cases li::before { content: ""; position: absolute; left: 0; top: .75em; width: 7px; height: 7px; border: 1px solid var(--rose); border-radius: 50%; }
.gel-cases > p { color: #6b6059; font-size: .88rem; }

.pricing { background: #f3eee7; }
.price-flow { display: grid; grid-template-columns: 1fr 54px 1fr; align-items: stretch; }
.price-step { padding: clamp(28px, 5vw, 54px); background: var(--paper); border: 1px solid var(--line); }
.price-step.featured { border-top: 4px solid var(--rose); }
.price-step > span { color: var(--rose); font-size: .78rem; }
.price-step > p { margin: 12px 0; font-family: var(--serif); }
.price-step strong { display: block; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; line-height: 1; }
.price-step strong small { font-size: 1rem; }
.price-step strong em { margin-left: 6px; font-family: var(--sans); font-size: .7rem; font-style: normal; }
.price-step .balance { margin: 26px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--sans); font-size: .82rem; }
.price-arrow { display: grid; place-items: center; color: var(--rose); font-family: var(--serif); font-size: 1.3rem; }

.payment-info { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.payment-info > div { padding: 20px 0; border-top: 1px solid var(--line); }
.payment-info span { color: var(--rose); font-size: .75rem; }
.payment-info p { margin: 5px 0 0; color: #6b6059; font-size: .86rem; }

.progress-section { background: var(--paper); }
.progress-layout { display: block; }
.progress-layout > .section-heading { margin-bottom: clamp(54px, 8vw, 84px); }
.subsection-heading { max-width: 680px; margin-bottom: 30px; }
.subsection-heading > span { color: var(--rose); font-family: Georgia, serif; font-size: .72rem; letter-spacing: .2em; }
.subsection-heading h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 500; }
.subsection-heading p { margin: 0; color: #6b6059; font-size: .88rem; }
.progress-note { max-width: 760px; margin: 0 0 30px; padding: 16px 20px; background: var(--ivory); border-left: 3px solid var(--blush); color: #6b6059; font-size: .78rem; line-height: 1.85; }
.progress-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.progress-card { margin: 0; padding: 16px 16px 20px; background: var(--ivory); border: 1px solid var(--line); }
.progress-card img { aspect-ratio: 4 / 5; object-fit: contain; background: white; }
.progress-card figcaption { margin-top: 14px; color: var(--taupe); font-family: var(--serif); font-size: .8rem; text-align: center; }
.customer-voices { margin-top: clamp(68px, 9vw, 110px); }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.voice-card { min-height: 310px; margin: 0; padding: clamp(28px, 4vw, 42px); display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); }
.voice-card p { margin-bottom: 34px; font-family: var(--serif); font-size: 1rem; line-height: 2; }
.voice-card footer { padding-top: 18px; border-top: 1px solid var(--line); color: var(--brown); font-size: .78rem; font-style: normal; }
.voice-card footer span { color: var(--taupe); font-size: .7rem; }
.voice-disclaimer { max-width: 840px; margin: 24px 0 0; color: var(--taupe); font-size: .7rem; line-height: 1.8; }

.profile-section { background: var(--cream); }
.profile-card { display: grid; grid-template-columns: .75fr 1.25fr; align-items: stretch; background: var(--paper); }
.profile-photo { min-height: 560px; position: relative; background: var(--blush); }
.profile-photo img { object-position: center 35%; }
.profile-photo figcaption { position: absolute; left: 22px; bottom: 22px; padding: 8px 12px; background: rgba(255,253,249,.9); color: var(--taupe); font-family: Georgia, serif; font-size: .66rem; letter-spacing: .08em; }
.profile-copy { padding: clamp(38px, 7vw, 86px); }
.profile-copy > p { color: #6b6059; }
.signature { margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; align-items: end; border-top: 1px solid var(--line); }
.signature span { color: var(--taupe); font-size: .74rem; }
.signature strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }

.salon-section { background: var(--ivory); }
.salon-gallery { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, minmax(250px, 330px)); gap: 12px; }
.salon-photo { margin: 0; position: relative; overflow: hidden; background: var(--cream); }
.salon-photo-main { grid-row: 1 / 3; }
.salon-photo img { width: 100%; height: 100%; object-fit: cover; }
.salon-photo-main img { object-position: center 50%; }
.salon-photo figcaption { position: absolute; left: 16px; bottom: 16px; padding: 7px 11px; background: rgba(255,253,249,.9); color: var(--brown); font-size: .7rem; }
.salon-info { margin-top: 44px; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.salon-info > div > p:last-child { margin-bottom: 0; color: #6b6059; font-size: .88rem; }
.salon-links { display: grid; gap: 12px; }
.salon-links .button { width: 100%; }
.salon-links > p { margin: 8px 0 0; color: var(--taupe); font-size: .76rem; }

.visit-flow { background: var(--paper); }
.visit-steps { margin-bottom: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.visit-steps li { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.visit-steps span { color: var(--rose); font-family: Georgia, serif; font-size: .72rem; }
.visit-steps strong { display: block; margin: 18px 0 12px; font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.visit-steps p { margin: 0; color: #6b6059; font-size: .84rem; }
.booking-guide { margin-top: clamp(64px, 9vw, 104px); padding: clamp(36px, 6vw, 64px); background: var(--ivory); }
.booking-guide-heading { max-width: 680px; margin: 0 auto 38px; text-align: center; }
.booking-guide-heading h3 { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 500; line-height: 1.7; }
.booking-guide-heading > p:last-child { margin-bottom: 0; color: #6b6059; font-size: .88rem; }
.booking-steps-compact { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.booking-steps-compact li { min-height: 150px; padding: 24px; display: grid; grid-template-columns: 32px 1fr; gap: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-steps-compact span { color: var(--rose); font-family: Georgia, serif; font-size: .7rem; }
.booking-steps-compact strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: .94rem; font-weight: 500; }
.booking-steps-compact p { margin: 0; color: #6b6059; font-size: .76rem; line-height: 1.75; }
.booking-details { margin-top: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-details summary { padding: 20px 42px 20px 4px; position: relative; cursor: pointer; font-family: var(--serif); font-size: .9rem; list-style: none; }
.booking-details summary::-webkit-details-marker { display: none; }
.booking-details summary::after { content: "+"; position: absolute; right: 6px; top: 17px; color: var(--rose); font-size: 1.25rem; }
.booking-details[open] summary::after { content: "−"; }
.booking-gallery { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.booking-step-card { margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.booking-step-card > img { aspect-ratio: 1 / 1.72; object-fit: cover; object-position: top; }
.booking-step-card figcaption { min-height: 168px; padding: 22px; }
.booking-step-card figcaption span { color: var(--rose); font-family: Georgia, serif; font-size: .72rem; }
.booking-step-card figcaption strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: .96rem; font-weight: 500; }
.booking-step-card figcaption small { display: block; color: #6b6059; font-size: .76rem; line-height: 1.7; }
.booking-caption { margin: 18px 0 0; color: var(--taupe); font-size: .7rem; text-align: center; }
.booking-details .booking-caption { padding-bottom: 20px; }

.faq { background: var(--ivory); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 8vw, 108px); align-items: start; }
.faq .section-heading { position: sticky; top: 120px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 15px; color: var(--brown); text-underline-offset: 6px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 24px 44px 24px 0; position: relative; cursor: pointer; font-family: var(--serif); font-size: 1.02rem; line-height: 1.7; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 8px; top: 22px; color: var(--rose); font-family: var(--serif); font-size: 1.4rem; font-weight: 300; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 36px 24px 0; color: #6b6059; font-size: .88rem; }

.final-cta { position: relative; padding: clamp(86px, 12vw, 150px) 22px; overflow: hidden; background: var(--charcoal); color: white; text-align: center; }
.final-ornament { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: rgba(255,255,255,.025); font-family: var(--serif); font-size: min(30vw, 320px); letter-spacing: .2em; pointer-events: none; }
.final-cta > *:not(.final-ornament) { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 34px; font-size: clamp(2rem, 4vw, 3.4rem); }
.final-offer { width: min(640px, 100%); margin: 0 auto; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.final-offer p { margin-bottom: 6px; font-family: var(--serif); }
.final-offer strong { display: block; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 400; }
.final-offer strong small { font-family: var(--sans); font-size: .7rem; }
.final-offer span { color: #d8cec8; font-size: .78rem; }
.centered-buttons { margin-left: auto; margin-right: auto; }
.final-cta .button-primary { background: var(--blush); border-color: var(--blush); color: var(--charcoal); }
.final-cta .button-primary:hover { background: #f1ddd7; }
.final-cta .button-secondary { border-color: rgba(255,255,255,.6); color: white; }
.final-cta .button-secondary:hover { background: rgba(255,255,255,.08); }
.final-meta { margin: 28px 0 0; color: #baa9a1; font-size: .72rem; }

.site-footer { padding: 46px 22px 110px; display: flex; flex-direction: column; align-items: center; background: #211d1b; color: white; text-align: center; }
.footer-brand { margin-bottom: 24px; }
.site-footer > p { max-width: 520px; margin-bottom: 22px; color: #bcaea6; font-size: .76rem; }
.footer-links { margin-bottom: 22px; display: flex; gap: 24px; color: #d8cec8; font-size: .74rem; }
.footer-links a { text-underline-offset: 5px; }
.site-footer > small { color: #877a73; font-family: Georgia, serif; font-size: .66rem; }

.mobile-cta { display: none; }

@media (max-width: 920px) {
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { order: 1; width: 100%; padding: 64px 24px 54px; }
  .hero-visual { order: 2; min-height: 0; aspect-ratio: 4 / 3; }
  .hero-visual img { object-position: center 45%; }
  .hero-side-note { display: none; }
  .trust-strip-inner { grid-template-columns: 58px 1fr; }
  .trust-person { width: 58px; height: 58px; }
  .trust-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-facts > div { min-width: 0; text-align: center; }
  .trust-facts > div:last-child { border-right: 1px solid var(--line); }
  .trust-link { grid-column: 1 / -1; justify-self: start; }
  .split,
  .daily-layout,
  .homecare-layout,
  .program-intro,
  .profile-card,
  .faq-layout { grid-template-columns: 1fr; }
  .sticky-copy,
  .faq .section-heading { position: static; }
  .approach-equation { grid-template-columns: 1fr; }
  .approach-equation b { transform: rotate(90deg); justify-self: center; }
  .daily-layout { gap: 42px; }
  .treatment-image { height: auto; aspect-ratio: 1 / 1; }
  .treatment-image-main { aspect-ratio: 4 / 3; }
  .daily-copy { max-width: none; }
  .first-card { grid-template-columns: 1fr; }
  .choice-paths { grid-template-columns: 1fr; }
  .choice-paths > div { min-height: 0; }
  .program-price { padding: 0 0 30px; border-left: 0; border-bottom: 1px solid var(--line); }
  .homecare-copy { max-width: none; }
  .care-image { height: auto; aspect-ratio: auto; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { min-height: 0; }
  .gel-layout { grid-template-columns: 1fr; }
  .profile-photo { min-height: 0; aspect-ratio: 4 / 4.5; }
  .salon-info { grid-template-columns: 1fr; gap: 30px; }
  .visit-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { padding-bottom: 76px; font-size: 16px; line-height: 1.85; }
  .site-header { min-height: 64px; padding: 11px 20px; }
  .brand-name { font-size: 1.35rem; }
  .brand-sub { font-size: .54rem; }
  .hero-copy { padding-top: 54px; }
  .hero h1 { font-size: 2rem; line-height: 1.62; }
  .hero-text { font-size: .94rem; }
  .hero-offer { align-items: center; }
  .hero-offer > div strong { font-size: .92rem; }
  .hero-offer > p { font-size: 1.9rem; }
  .hero-visual { aspect-ratio: 4 / 4.2; }
  .trust-strip { padding: 22px 20px; }
  .trust-strip-inner { gap: 16px; }
  .trust-intro-copy > p:last-child { font-size: .74rem; }
  .trust-facts > div { padding: 10px 6px; }
  .trust-facts dt { font-size: .73rem; }
  .trust-facts dd { font-size: .54rem; white-space: normal; line-height: 1.55; }
  .cta-group { grid-template-columns: 1fr; }
  .hero-copy .cta-group { display: none; }
  .cta-note { text-align: center; }
  .section { padding: 72px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .daily-copy h2,
  .homecare-copy h2,
  .choice-heading h2,
  .profile-copy h2 { font-size: 1.78rem; line-height: 1.65; }
  .concern-list { grid-template-columns: 1fr; }
  .concern-list li:nth-child(odd) { border-right: 0; }
  .concern-list li { min-height: 68px; font-size: 1rem; }
  .approach-equation div { min-height: 150px; }
  .treatment-gallery { gap: 7px; }
  .treatment-image { aspect-ratio: 1 / 1; }
  .treatment-image-main { aspect-ratio: 4 / 3; }
  .progress-gallery {
    width: calc(100% + 20px);
    margin-right: -20px;
    padding-right: 20px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 360px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .progress-card { scroll-snap-align: start; }
  .comparison-wrap { margin-right: -20px; width: calc(100% + 20px); }
  .comparison-table th,
  .comparison-table td { padding: 15px 16px; }
  .menu-summary { grid-template-columns: 1fr; }
  .first-card-title,
  .step-list { padding: 28px 22px; }
  .price { font-size: 3.1rem; }
  .cta-panel { padding: 26px 18px; }
  .choice-block { margin: 42px -20px 0; padding: 42px 20px; }
  .choice-paths > div { padding: 26px 24px; }
  .timeline li { grid-template-columns: 38px 1fr; gap: 12px; }
  .timeline li > p { grid-column: 2; }
  .program-includes { padding: 28px 22px; }
  .program-includes ul { grid-template-columns: 1fr; }
  .homecare-copy dl div { grid-template-columns: 1fr; gap: 3px; }
  .gel-cases ul { grid-template-columns: 1fr; }
  .price-flow { grid-template-columns: 1fr; }
  .price-arrow { min-height: 52px; transform: rotate(90deg); }
  .payment-info { grid-template-columns: 1fr; gap: 0; }
  .profile-copy { padding: 38px 24px; }
  .salon-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; gap: 7px; }
  .salon-photo-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4 / 3; }
  .salon-photo:not(.salon-photo-main) { aspect-ratio: 1 / 1; }
  .salon-photo figcaption { left: 10px; bottom: 10px; padding: 5px 8px; font-size: .62rem; }
  .visit-steps { grid-template-columns: 1fr; }
  .visit-steps li { min-height: 0; }
  .booking-guide { margin-left: -20px; margin-right: -20px; padding: 42px 20px; }
  .booking-steps-compact { grid-template-columns: 1fr; }
  .booking-steps-compact li { min-height: 0; padding: 20px; }
  .booking-gallery {
    width: calc(100% + 20px);
    margin-right: -20px;
    padding-right: 20px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 330px);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .booking-step-card { scroll-snap-align: start; }
  .accordion summary { padding-top: 20px; padding-bottom: 20px; font-size: .96rem; }
  .accordion summary::after { top: 18px; }
  .final-cta { padding: 82px 20px; }
  .final-cta h2 { font-size: 1.9rem; line-height: 1.65; }
  .final-offer strong { font-size: 2.15rem; }
  .final-cta .cta-group { display: none; }
  .site-footer { padding-bottom: 44px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    gap: 7px;
    background: rgba(255,253,249,.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(48,42,39,.08);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    min-height: 50px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brown);
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    font-size: .69rem;
    font-weight: 600;
    line-height: 1.35;
  }
  .mobile-cta a:first-child { background: var(--brown); color: white; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
