:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #14212b;
  --muted: #5b6873;
  --line: #d9e3e3;
  --primary: #07576b;
  --primary-dark: #053a48;
  --teal: #0c7b83;
  --accent: #8a5b23;
  --soft-blue: #edf7f8;
  --soft-gold: #f7efe1;
  --focus: #d98500;
  --shadow: 0 14px 40px rgba(5, 58, 72, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 92px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(5, 58, 72, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  min-width: 0;
}

.brand-name {
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.8rem;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 52px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--primary-dark);
  font: inherit;
  font-weight: 700;
  padding: 8px 10px;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-bars {
  position: relative;
  transition: background-color 0.16s ease;
}

.menu-bars::before,
.menu-bars::after {
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.menu-bars::before,
.menu-bars::after {
  transition: top 0.16s ease, transform 0.16s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 76px 12px auto 12px;
  z-index: 120;
  display: none;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}

.site-nav a:hover {
  background: var(--soft-blue);
}

.site-nav small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.nav-reserve,
.nav-line {
  color: #fff;
  justify-content: center;
}

.nav-reserve small,
.nav-line small {
  color: inherit;
}

.site-nav .nav-reserve {
  background: var(--primary);
}

.site-nav .nav-line {
  background: #177a44;
}

main {
  overflow: clip;
}

.hero,
.hero-hours-section,
.section,
.article-page,
.reserve-page,
.site-footer {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 22px;
  padding: 34px 0 42px;
}

.hero-with-photo {
  gap: 18px;
  padding: 26px 0 16px;
}

.hero-copy {
  padding: 26px 0 4px;
}

.hero-with-photo .hero-copy {
  padding: 0;
}

.hero-kicker,
.section-kicker,
.article-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.45;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.84rem;
  font-weight: 800;
}

h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

.hero-actions,
.center-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 22px;
  text-align: center;
}

.hero-with-photo .hero-actions {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(5, 58, 72, 0.16);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-secondary {
  background: var(--accent);
  color: #fff;
}

.button-line {
  background: #177a44;
  color: #fff;
}

.hero-hours,
.hours-table-wrap {
  min-width: 0;
}

.hero-hours-section {
  padding: 0 0 42px;
}

.hero-hours {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-hours-section .hero-hours {
  max-width: 760px;
  margin-inline: auto;
}

.hero-photo-frame {
  margin: 0;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  object-fit: cover;
  object-position: center;
}

.hours-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hours-table th,
.hours-table td {
  border: 1px solid var(--line);
  padding: 7px 3px;
  text-align: center;
  vertical-align: middle;
}

.hours-table th:first-child {
  width: 27%;
}

.hours-table thead th {
  background: var(--soft-blue);
  color: var(--primary-dark);
}

.hours-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 48px 0;
  border-top: 1px solid rgba(5, 58, 72, 0.10);
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
  justify-items: start;
}

.section-heading.compact {
  margin-top: 36px;
}

.concerns-panel,
.message-panel,
.lead-copy,
.story-card,
.first-price,
.article-body,
.reserve-hero {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.concerns-panel,
.message-panel,
.lead-copy,
.story-card,
.article-body,
.reserve-hero {
  padding: 22px;
}

.concerns-panel {
  border-left: 6px solid var(--teal);
}

.message-panel {
  margin-top: 18px;
  background: var(--soft-gold);
  border-color: #ead9b7;
}

.line-lead,
.line-layout,
.profile-layout,
.access-layout,
.flow-intro {
  display: grid;
  gap: 22px;
  align-items: center;
}

.line-lead {
  margin-top: 24px;
}

.line-image,
.flow-image,
.profile-image,
.article-image,
.reserve-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  object-fit: cover;
}

.line-image {
  aspect-ratio: 16 / 9;
}

.flow-image {
  aspect-ratio: 3 / 2;
}

.profile-image {
  aspect-ratio: 2 / 3;
  max-height: 720px;
}

.promise-grid,
.price-grid,
.voice-grid,
.benefit-list,
.hygiene-list,
.treatment-grid,
.symptom-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.promise-card,
.price-card,
.voice-card,
.benefit-item,
.hygiene-item,
.faq-item,
.flow-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.promise-card h3,
.hygiene-item h3 {
  color: var(--primary);
}

.first-price {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 18px;
  border-color: #ead9b7;
  background: var(--soft-gold);
}

.first-price p,
.price-card p,
.voice-card p,
.benefit-item p,
.hygiene-item p,
.faq-item p,
.flow-list p {
  margin-bottom: 0;
}

.first-price strong,
.price span {
  color: var(--primary-dark);
  font-size: 1.55rem;
}

.price {
  margin: 6px 0;
  font-weight: 800;
}

.duration,
.price-note,
.voice-person {
  color: var(--muted);
  font-weight: 700;
}

.flow-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  padding-left: 56px;
}

.flow-list li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  counter-increment: flow;
  content: counter(flow);
}

.flow-note {
  color: var(--muted);
  font-weight: 700;
}

.treatment-grid a,
.symptom-grid a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 800;
}

.treatment-grid a:hover,
.symptom-grid a:hover {
  border-color: var(--teal);
  background: var(--soft-blue);
}

.voice-card {
  border-top: 4px solid var(--teal);
}

.faq-item h3 {
  color: var(--primary);
}

.line-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  background: #f1f8f7;
}

.benefit-item {
  background: #fff;
}

.safe-list {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #cfe5df;
  border-radius: 8px;
  background: #fff;
}

.story-card {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.story-card h3,
.story-sign {
  color: #fff;
}

.story-sign {
  margin-top: 20px;
  font-weight: 800;
}

.profile-name {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 5px solid var(--primary);
  background: var(--soft-blue);
}

.profile-name p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.profile-name strong {
  display: block;
  font-size: 1.4rem;
}

.access-section {
  padding-bottom: 28px;
}

.access-copy {
  padding: 20px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.address-link,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 800;
}

.home-hero {
  padding-top: 22px;
  padding-bottom: 34px;
}

.home-hero .hero-copy {
  display: grid;
  gap: 12px;
}

.home-hero h1 {
  font-size: 1.9rem;
  line-height: 1.35;
}

.home-hero .hero-kicker,
.home-hero .hero-lead {
  margin: 0;
}

.home-hero .hero-lead {
  max-width: 34rem;
  color: #29434a;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.hero-trust-list li {
  position: relative;
  padding: 2px 0 2px 17px;
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-trust-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: '';
}

.home-hero .hero-actions {
  width: 100%;
  margin-top: 0;
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.cta-row .button {
  width: 100%;
  min-height: 52px;
  padding-inline: 9px;
  font-size: 0.92rem;
}

.cta-note {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.home-concerns,
.home-first-visit,
.home-faq {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  background: #f6f9f8;
}

.home-hero ~ .section .section-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.concern-list {
  display: grid;
  gap: 0;
  max-width: 920px;
  padding: 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  list-style: none;
}

.concern-list li {
  border-bottom: 1px solid var(--line);
}

.concern-list a {
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 13px 8px 13px 36px;
  color: var(--ink);
  text-decoration: none;
}

.concern-list a::before {
  align-self: start;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-left: -28px;
  color: var(--teal);
  font-weight: 900;
  content: '✓';
}

.concern-list span {
  font-weight: 800;
}

.concern-list small {
  color: var(--muted);
  font-size: 0.82rem;
}

.link-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  width: fit-content;
  margin-top: 4px;
  line-height: 1.5;
}

.link-cue-symbol {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
}

.more-links {
  max-width: 920px;
  margin: 22px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.more-links summary,
.faq-accordion summary {
  position: relative;
  min-height: 52px;
  padding: 14px 46px 14px 16px;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.more-links summary::-webkit-details-marker,
.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.more-links summary::after,
.faq-accordion summary::after {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.2rem;
  content: '+';
}

.more-links[open] summary::after,
.faq-accordion[open] summary::after {
  content: '−';
}

.compact-symptom-grid {
  padding: 0 14px 16px;
}

.approach-grid {
  display: grid;
  gap: 18px;
}

.approach-card {
  padding: 22px 0;
  border-top: 3px solid var(--teal);
}

.approach-number {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.approach-evidence {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.approach-evidence strong {
  display: block;
  margin-bottom: 3px;
  color: var(--primary-dark);
}

.compact-profile {
  align-items: start;
}

.compact-profile .profile-image {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-position: center top;
}

.profile-summary {
  padding-block: 6px;
}

.profile-role {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.profile-summary > h3 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 1.6rem;
}

.profile-facts {
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: var(--muted);
  font-weight: 700;
}

.profile-facts dd {
  margin: 0;
  font-weight: 800;
}

.first-visit-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}

.compact-flow-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.compact-flow-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.compact-flow-list li > span {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
}

.compact-flow-list h3,
.compact-flow-list p {
  margin-bottom: 3px;
}

.compact-flow-list p {
  color: #3b5157;
  font-size: 0.92rem;
}

.first-visit-price {
  padding: 20px;
  border: 1px solid #dac79f;
  border-radius: 8px;
  background: var(--soft-gold);
}

.first-visit-price p {
  margin-bottom: 8px;
}

.first-visit-price .price-label {
  color: var(--muted);
  font-weight: 800;
}

.first-visit-amount {
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 900;
}

.risk-note {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 14px 16px;
  border-left: 4px solid #b28c3d;
  background: #fff;
  color: #4e4a40;
  font-size: 0.88rem;
}

.guide-cta {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 22px auto 0;
}

.compact-price-card {
  display: grid;
  align-content: start;
}

.compact-treatment-grid a {
  display: grid;
  align-content: center;
  gap: 6px;
}

.compact-treatment-grid small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-accordion-list {
  max-width: 880px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-accordion > div {
  padding: 0 16px 16px;
  color: #3b5157;
}

.faq-accordion p {
  margin-bottom: 0;
}

.final-cta-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  border-top: 0;
  background: var(--primary-dark);
  color: #fff;
}

.final-cta-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.final-cta-section h2,
.final-cta-section .section-kicker {
  color: #fff;
}

.final-benefit {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
}

.final-cta-actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.final-cta-actions .button,
.final-cta-actions .text-link {
  width: 100%;
}

.final-cta-actions .text-link {
  justify-content: center;
  background: #fff;
}

.final-cta-actions p {
  margin: 2px 0 0;
  color: #d9e9ec;
  font-size: 0.84rem;
}

.site-footer {
  padding: 28px 0 104px;
  color: var(--muted);
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.article-page {
  padding: 34px 0 44px;
}

.article-hero {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.article-image {
  aspect-ratio: 16 / 9;
}

.article-body {
  max-width: 820px;
  margin-inline: auto;
}

.article-body h2 {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article-body h3 {
  margin-top: 24px;
  color: var(--primary);
}

.prose-block {
  margin: 14px 0 22px;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.article-cta {
  display: grid;
  justify-items: center;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid #ead9b7;
  border-radius: 8px;
  background: var(--soft-gold);
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #8b999f;
}

.breadcrumb a {
  text-underline-offset: 3px;
}

.rich-article-hero {
  margin-bottom: 34px;
}

.rich-article-hero h1 {
  max-width: 18em;
}

.article-lead {
  max-width: 44em;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.rich-article-body > section,
.rich-article-body > aside {
  scroll-margin-top: 98px;
}

.article-quick-answers {
  padding: 22px;
  border-left: 5px solid var(--teal);
  background: var(--soft-blue);
}

.article-section-label {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 900;
}

.article-quick-answers h2,
.article-position-note h2,
.article-safety h2,
.article-approach h2,
.article-faq h2,
.article-sources h2,
.article-conversion h2 {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.article-quick-answers ul,
.rich-article-section ul,
.article-safety ul {
  margin: 14px 0 0;
  padding-left: 1.35em;
}

.article-quick-answers li + li,
.rich-article-section li + li,
.article-safety li + li {
  margin-top: 8px;
}

.rich-article-section {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.rich-article-section h2 {
  margin: 0 0 15px;
  padding: 0;
  border: 0;
}

.rich-article-section p:last-child {
  margin-bottom: 0;
}

.article-position-note {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid #cddfdd;
  background: #f4f8f7;
}

.article-position-note p:last-child {
  margin-bottom: 0;
}

.article-safety {
  margin-top: 34px;
  padding: 22px;
  border-left: 5px solid #9a493d;
  background: #fff4f1;
}

.article-safety-closing {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e8c9c2;
  font-weight: 700;
}

.article-approach,
.article-faq,
.article-sources {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-approach ol {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.article-approach li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.article-approach li > span {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 900;
}

.article-approach h3,
.article-approach p {
  margin: 0;
}

.article-faq > div {
  border-top: 1px solid var(--line);
}

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

.article-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 800;
}

.article-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 1.35rem;
}

.article-faq-item[open] summary::after {
  content: "−";
}

.article-faq-item p {
  margin: 0;
  padding: 0 0 18px;
}

.article-sources > p {
  color: var(--muted);
  font-size: 0.91rem;
}

.article-sources ol {
  margin: 18px 0 0;
  padding-left: 1.4em;
}

.article-sources li + li {
  margin-top: 16px;
}

.article-sources a {
  color: var(--primary);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-sources li p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.article-related-links a {
  color: var(--primary);
  font-weight: 800;
  text-underline-offset: 4px;
}

.article-conversion {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 46px auto 0;
  padding: 26px;
  border-top: 5px solid var(--primary);
  background: var(--soft-gold);
}

.article-conversion p:last-child {
  margin-bottom: 0;
}

.article-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trigger-point-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f8f7;
}

.trigger-point-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.trigger-point-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #cddfdd;
  border-radius: 8px;
  background: var(--paper);
}

.trigger-point-card h3,
.medical-priority-note h3,
.section-bridge h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.trigger-point-card p,
.medical-priority-note p,
.section-bridge p {
  margin: 0;
}

.trigger-point-number {
  margin-bottom: 8px !important;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.medical-priority-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 5px solid #9a493d;
  background: #fff4f1;
}

.evidence-disclosure {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-disclosure summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 800;
}

.evidence-disclosure summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.35rem;
}

.evidence-disclosure[open] summary::after {
  content: "−";
}

.evidence-disclosure > div {
  padding: 0 0 18px;
}

.evidence-disclosure ul {
  margin: 10px 0 0;
  padding-left: 1.3em;
}

.evidence-disclosure a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-bridge {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #cddfdd;
  background: var(--paper);
}

.section-bridge .cta-row {
  margin-top: 8px;
}

.reserve-page {
  padding: 34px 0 46px;
}

.reserve-hero {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.reserve-guide {
  display: grid;
  gap: 18px;
}

.reserve-zoom-item {
  margin: 0;
}

.reserve-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.reserve-zoom-trigger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.reserve-zoom-trigger .reserve-image {
  pointer-events: none;
}

.reserve-image {
  max-width: 560px;
  margin-inline: auto;
}

.zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 58, 72, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(5, 58, 72, 0.18);
}

.reserve-footer {
  padding-top: 0;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(5, 58, 72, 0.16);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -8px 24px rgba(5, 58, 72, 0.12);
}

body.menu-open .fixed-cta,
body.modal-open .fixed-cta {
  display: none;
}

.fixed-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.fixed-cta a:first-child {
  background: var(--primary);
}

.fixed-cta a:last-child {
  background: #177a44;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(3, 31, 40, 0.68);
}

.image-modal-panel {
  width: min(100%, 980px);
  max-height: calc(100dvh - 32px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(3, 31, 40, 0.3);
}

.image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.image-modal-header h2 {
  margin: 0;
  font-size: 1rem;
}

.image-modal-close {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.image-modal-body {
  min-height: 0;
  overflow: auto;
  padding: 12px;
  -webkit-overflow-scrolling: touch;
}

.image-modal-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 124px);
  margin: auto;
  object-fit: contain;
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 680px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero,
  .line-lead,
  .profile-layout,
  .access-layout,
  .flow-intro,
  .article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  }

  .line-layout {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  }

  .hero-with-photo {
    grid-template-areas:
      "copy photo"
      "actions photo";
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
    gap: 12px 34px;
    align-items: center;
  }

  .hero-with-photo .hero-copy {
    grid-area: copy;
    align-self: end;
  }

  .hero-with-photo .hero-photo-frame {
    grid-area: photo;
  }

  .hero-with-photo .hero-actions {
    grid-area: actions;
    align-self: start;
    margin-top: 16px;
  }

  .home-hero h1 {
    font-size: 2.1rem;
  }

  .concern-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trigger-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-conversion {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: center;
  }

  .concern-list li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .compact-symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-grid,
  .promise-grid,
  .voice-grid,
  .benefit-list,
  .hygiene-list,
  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reserve-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-inline: 28px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .site-nav .nav-reserve,
  .site-nav .nav-line {
    padding-inline: 14px;
  }

  .fixed-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
    min-height: 560px;
    align-items: center;
  }

  .hero.hero-with-photo {
    grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
    min-height: 500px;
    padding-top: 36px;
    padding-bottom: 22px;
    column-gap: 48px;
  }

  .hero.home-hero {
    min-height: 520px;
  }

  .home-hero h1 {
    font-size: 2.85rem;
  }

  .home-hero .hero-lead {
    font-size: 1.03rem;
  }

  .approach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .compact-profile {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 48px;
  }

  .first-visit-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    gap: 40px;
  }

  .final-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 54px;
  }

  .hero-with-photo .hero-photo {
    max-height: 430px;
  }

  .hero-hours-section {
    padding-bottom: 52px;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding-block: 68px;
  }

  .price-grid,
  .promise-grid,
  .voice-grid,
  .benefit-list,
  .hygiene-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .line-section .line-layout {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    column-gap: 36px;
  }

  .line-section .line-image.large {
    justify-self: center;
    max-width: 360px;
  }

  .line-section .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .symptom-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (min-width: 1280px) {
  .site-nav a {
    font-size: 0.95rem;
  }
}

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

/* Homepage visual polish: stronger hierarchy without adding runtime weight. */
.home-hero.hero-with-photo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-areas:
    "copy"
    "actions";
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px;
  width: 100%;
  max-width: none;
  min-height: min(650px, calc(100svh - 76px));
  padding: 56px max(16px, calc((100% - 1120px) / 2)) 34px;
  overflow: hidden;
  background: var(--primary-dark);
  color: #fff;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 35, 44, 0.58);
  content: "";
}

.home-hero .hero-photo-frame {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.home-hero .hero-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero .hero-copy {
  grid-area: copy;
  align-self: end;
  max-width: 650px;
  gap: 14px;
}

.home-hero h1,
.home-hero .hero-kicker,
.home-hero .hero-lead,
.home-hero .hero-trust-list li {
  color: #fff;
}

.home-hero h1 {
  max-width: 13em;
  line-height: 1.28;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.home-hero .hero-kicker {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
}

.home-hero .hero-lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.home-hero .hero-trust-list {
  gap: 8px 20px;
}

.home-hero .hero-trust-list li::before {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.home-hero .hero-actions {
  grid-area: actions;
  justify-items: start;
  max-width: 560px;
}

.home-hero .button {
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.home-hero .button-primary {
  background: #fff;
  color: var(--primary-dark);
}

.button,
.site-nav a,
.concern-list a,
.treatment-grid a,
.symptom-grid a,
.faq-accordion summary,
.more-links summary {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:active,
.site-nav a:active,
.concern-list a:active,
.treatment-grid a:active,
.symptom-grid a:active {
  transform: scale(0.98);
  transition-duration: 90ms;
}

.home-concerns,
.trigger-point-section,
.home-about,
.home-profile,
.home-first-visit,
.home-menu,
.home-treatment,
.home-faq,
.access-section,
.final-cta-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  border-top: 0;
}

.home-concerns,
.home-first-visit,
.home-faq {
  background: #f3f7f6;
}

.trigger-point-section,
.home-profile,
.home-treatment,
.access-section {
  background: #fff;
}

.home-about,
.home-menu {
  background: var(--bg);
}

.home-hero ~ .section .section-heading {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.home-hero ~ .section .section-heading h2 {
  max-width: 19em;
  margin-inline: auto;
  line-height: 1.4;
  text-wrap: balance;
}

.home-hero ~ .section .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
}

.home-hero ~ .section .section-kicker::before,
.home-hero ~ .section .section-kicker::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  content: "";
}

.concern-list {
  border-top-color: rgba(5, 58, 72, 0.18);
}

.concern-list a {
  position: relative;
  min-height: 82px;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 34px;
}

.concern-list a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  color: var(--teal);
  font-size: 1.1rem;
  transform: translateY(-50%);
  content: "\2192";
}

.more-links {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(5, 58, 72, 0.06);
}

.trigger-point-grid {
  gap: 16px;
}

.trigger-point-card {
  position: relative;
  padding: 26px 24px 24px;
  overflow: hidden;
  border-color: rgba(5, 58, 72, 0.14);
  box-shadow: 0 12px 30px rgba(5, 58, 72, 0.06);
}

.trigger-point-number {
  color: #7d3748;
}

.approach-card {
  position: relative;
  padding: 26px 0 10px;
}

.approach-number {
  color: #7d3748;
  font-size: 1rem;
}

.compact-profile .profile-image {
  border-color: rgba(5, 58, 72, 0.14);
  box-shadow: 0 18px 44px rgba(5, 58, 72, 0.12);
}

.profile-role {
  color: #7d3748;
}

.compact-flow-list li {
  padding-block: 18px;
}

.first-visit-price {
  border-color: #d8c39d;
  box-shadow: 0 16px 36px rgba(138, 91, 35, 0.10);
}

.price-grid {
  gap: 16px;
}

.price-card {
  border-top: 3px solid #7d3748;
  box-shadow: 0 12px 28px rgba(5, 58, 72, 0.06);
}

.compact-treatment-grid a {
  position: relative;
  min-height: 76px;
  padding-right: 42px;
  box-shadow: 0 8px 22px rgba(5, 58, 72, 0.05);
}

.compact-treatment-grid a::after {
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--teal);
  transform: translateY(-50%);
  content: "\2192";
}

.faq-accordion-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 58, 72, 0.06);
}

.faq-accordion {
  border-bottom-color: rgba(5, 58, 72, 0.12);
}

.faq-accordion:last-child {
  border-bottom: 0;
}

.final-cta-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #042f3a;
}

@media (max-width: 679px) {
  .home-hero .hero-photo {
    object-position: left center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(5, 58, 72, 0.20);
  }

  .concern-list a:hover,
  .faq-accordion summary:hover,
  .more-links summary:hover {
    background: rgba(255, 255, 255, 0.72);
  }

  .treatment-grid a:hover,
  .symptom-grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(5, 58, 72, 0.10);
  }
}

@media (min-width: 680px) {
  .home-hero.hero-with-photo {
    grid-template-areas:
      "copy"
      "actions";
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: min(680px, calc(100svh - 76px));
    padding-top: 82px;
    padding-bottom: 48px;
  }

  .home-hero .hero-copy,
  .home-hero .hero-actions {
    width: min(100%, 610px);
  }

  .home-hero .hero-actions {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .site-header {
    min-height: 72px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(18px) saturate(150%);
  }

  .home-hero.hero-with-photo,
  .hero.home-hero {
    min-height: min(700px, calc(100svh - 72px));
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .home-hero .hero-photo {
    object-position: center 42%;
  }

  .home-hero h1 {
    font-size: 3.15rem;
  }

  .home-hero .hero-lead {
    font-size: 1.06rem;
  }

  .home-hero ~ .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
  }
}
