:root {
  --ink: #171918;
  --ink-soft: #282d2a;
  --paper: #f6f3ed;
  --white: #fff;
  --green: #246957;
  --green-dark: #17493c;
  --coral: #d45f4b;
  --gold: #b68c4f;
  --line: #d7d2c9;
  --muted: #686d69;
  --header-height: 76px;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.35; letter-spacing: 0; }
p { margin: 0; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--white); padding: 10px 16px; }
.skip-link:focus { top: 12px; }

.eyebrow { margin-bottom: 12px; color: #d5c29d; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.eyebrow--dark { color: var(--green); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button--primary { color: var(--white); background: var(--coral); }
.button--primary:hover { background: #b94b39; }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: var(--paper); }
.button--ghost { color: var(--ink); border-color: var(--line); background: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(23,25,24,.1);
  backdrop-filter: blur(10px);
}
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.1; flex: 0 0 auto; }
.brand__name { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 25px; font-weight: 800; }
.brand__sub { margin-top: 6px; color: var(--green); font-size: 9px; font-weight: 800; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.site-nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--green); }
.header-cta { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; color: var(--white); background: var(--green); border-radius: 4px; font-size: 13px; font-weight: 800; text-decoration: none; }
.header-cta svg { width: 17px; }
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; }

.hero {
  position: relative;
  min-height: 620px;
  height: calc(100svh - 120px);
  max-height: 740px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  background: url("../images/therapist-yura.webp") center 24% / cover no-repeat;
  transform: scaleX(-1);
}
.hero__shade { position: absolute; inset: 0 auto 0 0; z-index: 1; width: 58%; background: rgba(15,18,17,.8); }
.hero__inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero__copy { width: min(58%, 650px); padding: 56px 0; }
.hero__brand { margin-bottom: 10px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 20px; font-weight: 800; }
.hero h1 { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 55px; }
.hero__lead { max-width: 590px; margin-top: 22px; color: #f1eee8; font-size: 17px; line-height: 1.9; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; }
.hero__facts span { position: relative; padding-left: 16px; font-size: 13px; font-weight: 800; }
.hero__facts span::before { content: ""; position: absolute; top: .72em; left: 0; width: 6px; height: 6px; background: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }

.quick-facts { background: var(--green); color: var(--white); }
.quick-facts__grid { min-height: 96px; display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-facts__grid > div { display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; align-content: center; padding: 14px 24px; border-right: 1px solid rgba(255,255,255,.2); }
.quick-facts__grid > div:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.quick-facts svg { grid-row: 1 / 3; width: 20px; align-self: center; color: #d8c49b; }
.quick-facts span { font-size: 11px; color: #d8e5e0; }
.quick-facts strong { font-size: 15px; }

.section { padding: 94px 0; }
.section--paper { background: var(--paper); }
.section--ink { color: var(--white); background: var(--ink-soft); }
.section--area { color: var(--white); background: var(--green-dark); }
.section-heading h2 { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 38px; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 38px; }
.section-heading--row > p { max-width: 480px; color: var(--muted); }
.section-heading--light h2 { color: var(--white); }

.split-intro { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.prose { color: #3f4441; }
.prose p + p { margin-top: 20px; }
.prose--lead > p:not(.notice):first-child { color: var(--ink); font-size: 20px; font-weight: 700; }
.notice { display: flex; gap: 12px; margin-top: 30px !important; padding: 18px 20px; color: var(--green-dark); background: #e7eee9; border-left: 3px solid var(--green); font-size: 14px; }
.notice svg { width: 20px; flex: 0 0 20px; margin-top: 4px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; padding: 34px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; }
.service-card--accent { color: var(--white); background: var(--green); border-color: var(--green); }
.service-card__number { position: absolute; top: 22px; right: 24px; color: #b3b0a9; font-family: Georgia, serif; font-size: 30px; }
.service-card--accent .service-card__number { color: #9bc3b7; }
.service-card > svg { width: 34px; height: 34px; margin: 18px 0 28px; color: var(--coral); }
.service-card--accent > svg { color: #f1d49e; }
.service-card h3 { margin-bottom: 14px; font-size: 21px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card--accent p { color: #e4efeb; }

.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 44px 0 0; padding: 0; list-style: none; }
.flow-list li { min-height: 220px; padding: 28px; border-top: 1px solid #626a66; border-right: 1px solid #626a66; }
.flow-list li:first-child { border-left: 1px solid #626a66; }
.flow-list li > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 25px; color: var(--ink); background: var(--gold); border-radius: 50%; font-family: Georgia, serif; font-weight: 800; }
.flow-list h3 { margin-bottom: 10px; font-size: 19px; }
.flow-list p { color: #bdc4c0; font-size: 14px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; min-height: 280px; padding: 36px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.price-card--recommended { border: 2px solid var(--coral); }
.price-card__label { position: absolute; top: 0; right: 0; padding: 5px 12px; color: var(--white); background: var(--coral); font-size: 10px; font-weight: 800; }
.price-card__time { color: var(--green); font-size: 23px; font-weight: 800; }
.price-card__price { margin: 22px 0 20px; font-family: Georgia, "Yu Mincho", serif; font-size: 39px; font-weight: 700; line-height: 1.1; }
.price-card__price span { display: block; margin-bottom: 6px; font-family: sans-serif; font-size: 10px; }
.price-card__price small { margin-left: 5px; font-family: sans-serif; font-size: 13px; }
.price-card > p:last-child { color: var(--muted); font-size: 14px; }
.price-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.price-notes p { color: var(--muted); font-size: 13px; }
.price-notes strong { display: block; color: var(--ink); }

.therapist { display: grid; grid-template-columns: minmax(280px, .75fr) 1.25fr; gap: 75px; align-items: center; }
.therapist__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper); }
.therapist__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.therapist__body h2 { font-family: Georgia, serif; font-size: 46px; }
.therapist__body h2 small { margin-left: 12px; font-family: "Yu Gothic", sans-serif; font-size: 15px; }
.therapist__body > p { max-width: 620px; margin-top: 25px; color: var(--muted); }
.profile-list { display: flex; flex-wrap: wrap; gap: 12px 32px; margin: 25px 0 0; padding: 20px 0; border-block: 1px solid var(--line); }
.profile-list div { display: flex; gap: 12px; }
.profile-list dt { color: var(--muted); font-size: 12px; }
.profile-list dd { margin: 0; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--green); font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--green); }
.text-link svg { width: 16px; }

.area-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; }
.area-layout .section-heading > p:last-child { margin-top: 22px; color: #c2d5cf; }
.area-list { border-top: 1px solid rgba(255,255,255,.25); }
.area-list > div { display: grid; grid-template-columns: 160px 1fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.area-list strong { color: #ecd4a7; }
.area-list span { color: #d7e4e0; }

.safety-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.check-list svg { flex: 0 0 19px; width: 19px; margin-top: 5px; color: var(--green); }

.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 19px; width: 19px; transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { padding: 0 42px 24px 0; color: var(--muted); }

.final-cta { padding: 85px 0; color: var(--white); background: var(--coral); }
.final-cta__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; }
.final-cta h2 { font-family: "Yu Mincho", serif; font-size: 37px; }
.final-cta__inner > div:first-child > p:last-child { margin-top: 20px; color: #ffe6e0; }
.contact-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.contact-actions > :last-child:nth-child(odd) { grid-column: 1 / -1; }
.contact-action { min-height: 76px; display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--white); color: var(--ink); border-radius: 5px; text-decoration: none; }
.contact-action--reserve { background: var(--ink); color: var(--white); }
.contact-action svg { width: 22px; flex: 0 0 22px; }
.contact-action span { font-weight: 800; line-height: 1.35; }
.contact-action small { display: block; margin-top: 4px; color: #777; font-size: 10px; font-weight: 500; }
.contact-action--reserve small { color: #c7cbc8; }

.site-footer { padding: 60px 0 110px; color: #c5cbc7; background: var(--ink); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 30px 60px; align-items: start; }
.site-footer .brand__name { color: var(--white); }
.site-footer__inner > div > p:last-child { margin-top: 8px; font-size: 12px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 25px; }
.site-footer nav a { font-size: 12px; text-decoration: none; }
.site-footer__legal, .site-footer__copyright { font-size: 11px; }
.site-footer__copyright { text-align: right; }

.age-gate { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; padding: 24px; background: rgba(12,14,13,.92); }
.age-gate[hidden] { display: none; }
.age-gate__panel { width: min(100%, 470px); padding: 38px; background: var(--white); border-top: 5px solid var(--coral); text-align: center; }
.age-gate__mark { color: var(--coral); font-family: Georgia, serif; font-size: 45px; font-weight: 800; line-height: 1; }
.age-gate h2 { margin-top: 15px; font-family: "Yu Mincho", serif; font-size: 27px; }
.age-gate__panel > p:not(.age-gate__mark) { margin-top: 14px; color: var(--muted); font-size: 14px; }
.age-gate__actions { display: grid; gap: 10px; margin-top: 25px; }

.mobile-bar { display: none; }
.mobile-only { display: none; }

.breadcrumbs { padding: 13px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px 10px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #aaa59d; }
.breadcrumbs a { color: var(--green); text-decoration: none; }

.page-hero { position: relative; padding: 82px 0 76px; color: var(--white); background: var(--green-dark); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0 auto; width: 36%; height: 5px; background: var(--gold); }
.page-hero__inner { position: relative; z-index: 1; max-width: 850px; }
.page-hero h1 { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 47px; }
.page-hero__lead { max-width: 760px; margin-top: 22px; color: #d8e5e0; font-size: 17px; }
.page-hero--photo { min-height: 430px; display: flex; align-items: center; background: var(--ink); }
.page-hero--photo::before { content: ""; position: absolute; inset: 0 0 0 auto; width: 48%; background: url("../images/therapist-yura.webp") center 24% / cover no-repeat; }
.page-hero--photo::after { inset: 0; width: 58%; height: auto; background: rgba(15,18,17,.82); }
.page-hero--photo .page-hero__inner > * { max-width: 52%; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 76px; align-items: start; }
.article { min-width: 0; }
.article > * + * { margin-top: 22px; }
.article h2 { margin-top: 58px; padding-bottom: 14px; border-bottom: 2px solid var(--green); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 31px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 38px; padding-left: 14px; border-left: 3px solid var(--coral); font-size: 21px; }
.article p, .article li { color: #414643; }
.article ul, .article ol { margin-bottom: 0; padding-left: 1.4em; }
.article li + li { margin-top: 9px; }
.article-lead { margin-bottom: 34px; color: var(--ink) !important; font-size: 19px; font-weight: 700; }
.article-note { padding: 19px 21px; color: var(--green-dark) !important; background: #e7eee9; border-left: 3px solid var(--green); font-size: 14px; }
.article-warning { padding: 19px 21px; color: #713a30 !important; background: #f7e7e3; border-left: 3px solid var(--coral); font-size: 14px; }
.article-visual { margin: 34px 0; aspect-ratio: 16 / 8; overflow: hidden; background: var(--paper); }
.article-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.toc { position: sticky; top: calc(var(--header-height) + 24px); padding: 23px 0; border-top: 3px solid var(--green); border-bottom: 1px solid var(--line); }
.toc strong { display: block; margin-bottom: 12px; font-size: 13px; }
.toc ol { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.toc a { color: var(--muted); font-size: 12px; text-decoration: none; }
.toc a:hover { color: var(--green); }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.info-item { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; }
.info-item svg { width: 25px; height: 25px; margin-bottom: 16px; color: var(--coral); }
.info-item h3 { margin: 0 0 9px; padding: 0; border: 0; font-size: 18px; }
.info-item p { font-size: 14px; }

.numbered-list { display: grid; gap: 0; margin: 30px 0 0 !important; padding: 0 !important; list-style: none; border-top: 1px solid var(--line); }
.numbered-list li { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.numbered-list li > span { display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); background: var(--green); border-radius: 50%; font-family: Georgia, serif; font-weight: 800; }
.numbered-list h3 { margin: 0 0 6px; padding: 0; border: 0; font-size: 19px; }
.numbered-list p { margin: 0; font-size: 14px; }

.data-table-wrap { margin-top: 30px; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); }
.data-table th, .data-table td { padding: 16px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { width: 28%; background: var(--paper); font-size: 14px; }
.data-table td { color: #414643; }

.comparison-table th:first-child { width: 24%; }
.comparison-table thead th { color: var(--white); background: var(--green-dark); }
.comparison-table tbody th { color: var(--green-dark); }

.related { padding: 72px 0; background: var(--paper); border-top: 1px solid var(--line); }
.related__heading { margin-bottom: 26px; font-family: "Yu Mincho", serif; font-size: 27px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.related-link { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; }
.related-link:hover { border-color: var(--green); }
.related-link span { color: var(--muted); font-size: 12px; }
.related-link strong { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.related-link svg { width: 18px; flex: 0 0 18px; color: var(--green); }

.contact-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-panel__intro h2 { font-family: "Yu Mincho", serif; font-size: 34px; }
.contact-panel__intro p { margin-top: 18px; color: var(--muted); }
.contact-list { display: grid; gap: 10px; }
.contact-list .contact-action { border: 1px solid var(--line); }

@media (max-width: 980px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .header-cta { display: none; }
  .hero__shade { width: 72%; }
  .hero__copy { width: 68%; }
  .hero h1 { font-size: 47px; }
  .quick-facts__grid > div { padding-inline: 14px; }
  .split-intro, .area-layout, .safety-layout, .faq-layout { gap: 45px; }
  .content-layout { gap: 45px; }
  .page-hero--photo::before { width: 54%; }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  body { padding-bottom: 68px; font-size: 15px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header__inner { justify-content: space-between; }
  .brand__name { font-size: 21px; }
  .brand__sub { font-size: 8px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav { position: absolute; top: var(--header-height); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 8px; border-bottom: 1px solid #ece9e3; font-size: 14px; }

  .hero { min-height: 500px; height: calc(100svh - 128px); max-height: 650px; }
  .hero::after { width: 100%; background-position: 42% 24%; }
  .hero__shade { width: 100%; background: rgba(15,18,17,.72); }
  .hero__copy { width: 100%; padding: 36px 0 40px; }
  .hero__brand { font-size: 17px; }
  .hero h1 { font-size: 37px; }
  .hero__lead { max-width: 95%; margin-top: 16px; font-size: 15px; line-height: 1.75; }
  .hero__facts { gap: 8px 15px; margin-top: 16px; }
  .hero__facts span { font-size: 11px; }
  .hero__actions { margin-top: 23px; }
  .hero__actions .button { min-height: 48px; padding-inline: 15px; font-size: 13px; }

  .quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .quick-facts__grid > div, .quick-facts__grid > div:first-child { min-height: 78px; border-left: 0; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .quick-facts__grid > div:nth-child(even) { border-right: 0; }

  .section { padding: 68px 0; }
  .section-heading h2 { font-size: 31px; }
  .section-heading--row { display: block; margin-bottom: 30px; }
  .section-heading--row > p { margin-top: 14px; }
  .split-intro, .area-layout, .safety-layout, .faq-layout, .final-cta__inner { grid-template-columns: 1fr; gap: 34px; }
  .prose--lead > p:not(.notice):first-child { font-size: 17px; }

  .service-grid, .price-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 28px 24px; }
  .service-card > svg { margin: 14px 0 20px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li, .flow-list li:first-child { min-height: 0; display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-left: 0; border-right: 0; border-top: 1px solid #626a66; }
  .flow-list li:last-child { border-bottom: 1px solid #626a66; }
  .flow-list li > span { margin: 0; }
  .price-card { min-height: 0; }
  .price-card__price { font-size: 36px; }
  .price-notes { grid-template-columns: 1fr; gap: 12px; }

  .therapist { grid-template-columns: 1fr; gap: 35px; }
  .therapist__media { width: min(100%, 480px); }
  .therapist__body h2 { font-size: 38px; }
  .profile-list { gap: 10px 20px; }
  .area-list > div { grid-template-columns: 1fr; gap: 5px; }
  .check-list li { font-size: 14px; }
  .faq-list summary { font-size: 14px; }
  .faq-list details p { padding-right: 0; font-size: 14px; }

  .final-cta { padding: 65px 0; }
  .final-cta h2 { font-size: 30px; }
  .contact-actions { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 55px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 22px; }
  .site-footer nav { justify-content: flex-start; }
  .site-footer__copyright { text-align: left; }

  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; height: 68px; display: grid; grid-template-columns: 1fr 1.35fr; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.12); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--ink); font-size: 10px; font-weight: 800; text-decoration: none; }
  .mobile-bar svg { width: 20px; height: 20px; }
  .mobile-bar__primary { color: var(--white) !important; background: var(--coral); }

  .age-gate__panel { padding: 30px 22px; }
  .mobile-only { display: inline; }

  .breadcrumbs { padding: 10px 0; }
  .page-hero { padding: 58px 0 54px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero__lead { font-size: 15px; }
  .page-hero--photo { min-height: 390px; }
  .page-hero--photo::before { inset: 0; width: 100%; background-position: 47% 24%; }
  .page-hero--photo::after { width: 100%; background: rgba(15,18,17,.7); }
  .page-hero--photo .page-hero__inner > * { max-width: 100%; }
  .content-layout { grid-template-columns: 1fr; gap: 44px; }
  .toc { position: static; order: -1; }
  .article h2 { margin-top: 46px; font-size: 27px; }
  .article h3 { margin-top: 32px; font-size: 19px; }
  .article-lead { font-size: 17px; }
  .info-grid, .related-grid { grid-template-columns: 1fr; }
  .numbered-list li { grid-template-columns: 44px 1fr; gap: 16px; }
  .numbered-list li > span { width: 40px; height: 40px; }
  .data-table th, .data-table td { padding: 13px 12px; font-size: 13px; }
  .related { padding: 58px 0; }
  .contact-panel { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .hero__lead { font-size: 14px; }
  .hero__actions { gap: 8px; }
  .hero__actions .button { width: 100%; }
  .quick-facts__grid > div { grid-template-columns: 28px 1fr; padding-inline: 9px; }
  .quick-facts strong { font-size: 13px; }
  .price-card__price { font-size: 32px; }
}

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