@charset "utf-8";

:root {
  --color-main-pink: #e05a7a;
  --color-bright-pink: #f8b8cb;
  --color-soft-pink: #fde8ef;
  --color-soft-pink-light: #fdf0f5;
  --color-dark-rose: #b54865;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-muted: #67565c;
  --color-faint: #8a737b;
  --color-border: #f8b8cb;
  --color-line: #06c755;
  --shadow-sm: 0 2px 12px rgba(224, 90, 122, 0.10);
  --shadow-md: 0 12px 34px rgba(224, 90, 122, 0.18);
  --radius: 12px;
  --content-width: 1120px;
  --header-height: 72px;
  --font-serif: 'Zen Maru Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
  --font-sans: 'Zen Maru Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body *,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.85;
  text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--color-main-pink);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--color-dark-rose);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(224, 90, 122, 0.35);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--color-dark-rose);
  font-family: var(--font-sans);
  letter-spacing: 0;
  line-height: 1.48;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
}

h1 {
  margin-bottom: 18px;
  font-size: 2.15rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid rgba(248, 184, 203, 0.75);
  box-shadow: 0 2px 18px rgba(181, 72, 101, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 168px;
}

.global-nav,
.header-actions {
  display: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--color-soft-pink);
  border: 1px solid var(--color-bright-pink);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  background: var(--color-dark-rose);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: min(84vw, 330px);
  padding: 84px 18px 24px;
  background: var(--color-white);
  box-shadow: -10px 0 34px rgba(181, 72, 101, 0.22);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a,
.mobile-menu-actions a {
  min-height: 46px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.mobile-nav a {
  color: var(--color-text);
}

.mobile-nav a[aria-current="page"],
.mobile-nav a:hover {
  background: var(--color-soft-pink);
  color: var(--color-dark-rose);
}

.mobile-menu-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(181, 72, 101, 0.35);
}

.tel-link,
.line-link,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  box-shadow: 0 4px 14px rgba(224, 90, 122, 0.18);
}

.tel-link {
  padding: 8px 4px;
  background: transparent;
  color: var(--color-dark-rose);
  box-shadow: none;
  font-weight: 700;
}

.line-link {
  padding: 8px 16px;
  background: var(--color-line);
  color: var(--color-white);
  border-radius: 4px;
}

.primary-button {
  padding: 14px 32px;
  background: var(--color-line);
  color: var(--color-white);
  border-radius: 25px;
  font-size: 1rem;
}

.secondary-button {
  padding: 14px 32px;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 25px;
  font-size: 1rem;
}

.primary-button:hover,
.secondary-button:hover,
.line-link:hover {
  color: var(--color-white);
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.tel-link:hover {
  color: var(--color-main-pink);
}

.hero {
  background: linear-gradient(135deg, #fde8ef 0%, #fdf0f5 100%);
}

.page-hero {
  padding: 48px 0 44px;
  background: linear-gradient(135deg, #fde8ef 0%, #fdf0f5 100%);
  border-bottom: 1px solid var(--color-bright-pink);
}

.breadcrumb {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-faint);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--color-main-pink);
  text-decoration: none;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--color-faint);
}

.page-lead {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1rem;
}

.service-page-hero h1 {
  margin-bottom: 12px;
}

.hero-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 42px 16px 40px;
  display: grid;
  gap: 30px;
}

.hero h1 {
  color: var(--color-dark-rose);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.8vw, 3rem);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-main-pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-lead {
  color: var(--color-muted);
  font-size: 1rem;
}

.hero-badges {
  margin: 22px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.hero-badges li {
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-main-pink);
  border-radius: 20px;
  color: var(--color-main-pink);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ad-info + .hero-actions {
  margin-top: 22px;
}

.small-note {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--color-faint);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hero-media > :is(img, video) {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 6px solid var(--color-white);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.quick-info {
  background: var(--color-dark-rose);
  color: var(--color-white);
}

.quick-info-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-info-item {
  min-height: 76px;
  padding: 13px 14px;
  display: grid;
  align-content: center;
  gap: 2px;
  color: var(--color-white);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-info-item:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.quick-label {
  color: var(--color-soft-pink);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 58px 0;
}

.section:nth-of-type(odd) {
  background: var(--color-white);
}

.section:nth-of-type(even) {
  background: var(--color-soft-pink);
}

.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 16px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: left;
}

.section-heading p:last-child {
  color: var(--color-muted);
}

.trust-grid,
.treatment-grid,
.flow-list {
  display: grid;
  gap: 16px;
}

.feature-card,
.case-rule,
.flow-list li,
.price-category,
.doctor-profile-card,
.credential-card,
.route-card,
.policy-card,
.figure-card,
.device-card,
.laser-card,
.cycle-phase,
.price-link-box {
  background: var(--color-white);
  border: 1px solid var(--color-bright-pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 22px;
}

.trust-section .trust-grid:focus-visible,
.treatments-section .treatment-grid:focus-visible {
  outline: 3px solid rgba(224, 90, 122, 0.35);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card p,
.treatment-card p,
.flow-list p,
.credentials-section p,
.policy-section p,
.route-card p,
.policy-list li {
  color: var(--color-muted);
}

.two-column {
  display: grid;
  gap: 24px;
}

.credential-list,
.case-rule ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.credential-list li,
.case-rule li {
  padding: 12px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-bright-pink);
  border-radius: 10px;
  color: var(--color-dark-rose);
  font-weight: 700;
}

.credentials-section,
.policy-section,
.process-section,
.route-section,
.map-section,
.privacy-policy-section,
.device-section,
.area-section,
.session-section,
.risk-section,
.method-section,
.diagnosis-section,
.credential-section,
.price-list-section {
  background: var(--color-soft-pink);
}

.price-intro-section,
.doctor-profile-section,
.facility-section,
.flow-intro-section,
.visit-notes-section,
.access-overview-section,
.parking-section,
.hours-section,
.privacy-summary-section,
.privacy-contact-section,
.treatment-detail-intro,
.cycle-section,
.price-link-section,
.faq-section,
.aftercare-section {
  background: var(--color-white);
}

.treatment-card {
  overflow: hidden;
  display: grid;
  background: var(--color-white);
  border: 1px solid var(--color-bright-pink);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(224, 90, 122, 0.10);
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.treatment-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.treatment-body p {
  margin-bottom: 0;
}

.treatment-tag,
.price-tag {
  width: fit-content;
  padding: 3px 10px;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.treatment-card .treatment-tag {
  color: var(--color-white);
}

.treatment-card a:not(.primary-button):not(.secondary-button) {
  width: fit-content;
  color: var(--color-main-pink);
  border-bottom: 1px solid var(--color-main-pink);
  font-weight: 700;
  text-decoration: none;
}

.treatment-card a:not(.primary-button):not(.secondary-button):hover {
  color: var(--color-dark-rose);
  border-color: var(--color-dark-rose);
}

.ad-info {
  margin: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  border: 1px solid var(--color-bright-pink);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.65;
}

.ad-info dt,
.ad-info dd {
  margin: 0;
  padding: 9px 10px;
  border-bottom: 1px solid var(--color-bright-pink);
}

.ad-info dt:nth-last-of-type(1),
.ad-info dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.ad-info dt {
  background: var(--color-soft-pink);
  color: var(--color-dark-rose);
  font-weight: 700;
}

.ad-info dd {
  color: var(--color-muted);
}

.case-rule {
  padding: 22px;
}

.price-category {
  margin-bottom: 24px;
  overflow: hidden;
}

.price-category:last-child {
  margin-bottom: 0;
}

.price-category-head {
  padding: 20px;
  background: linear-gradient(135deg, var(--color-soft-pink), var(--color-white));
  border-bottom: 1px solid var(--color-bright-pink);
}

.price-category-head h3,
.credential-card h3,
.process-content h3,
.route-card h3,
.policy-card h3,
.device-card h3,
.laser-card h3,
.cycle-phase h3,
.price-link-box h3 {
  font-family: var(--font-sans);
}

.price-category-head h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.price-category-head p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-bright-pink);
  vertical-align: top;
  text-align: left;
  line-height: 1.65;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  width: 38%;
  background: rgba(253, 232, 239, 0.7);
  color: var(--color-dark-rose);
  font-weight: 700;
}

.price-table td {
  color: var(--color-text);
}

.doctor-profile {
  display: grid;
  gap: 24px;
}

.doctor-profile-media,
.detail-visual {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-soft-pink);
  box-shadow: var(--shadow-sm);
}

.doctor-profile-media img,
.detail-visual img {
  width: 100%;
  display: block;
}

.doctor-profile-card {
  padding: 24px;
}

.doctor-profile-card p:last-of-type {
  margin-bottom: 18px;
}

.profile-list,
.clinic-data {
  display: grid;
  grid-template-columns: 96px 1fr;
  margin: 0;
  border: 1px solid var(--color-bright-pink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.profile-list dt,
.profile-list dd,
.clinic-data dt,
.clinic-data dd {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid var(--color-bright-pink);
  line-height: 1.65;
}

.profile-list dt:nth-last-of-type(1),
.profile-list dd:nth-last-of-type(1),
.clinic-data dt:nth-last-of-type(1),
.clinic-data dd:nth-last-of-type(1) {
  border-bottom: 0;
}

.profile-list dt,
.clinic-data dt {
  background: var(--color-soft-pink);
  color: var(--color-dark-rose);
  font-weight: 700;
}

.credential-grid,
.facility-grid,
.process-list,
.access-overview,
.route-grid,
.policy-stack,
.detail-visual-grid,
.figure-grid,
.device-grid,
.laser-grid,
.cycle-phases,
.access-grid {
  display: grid;
  gap: 18px;
}

.credential-card,
.figure-card,
.device-card {
  overflow: hidden;
}

.credential-card img,
.figure-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-bright-pink);
}

.credential-card img {
  aspect-ratio: 3 / 2;
}

.credential-card div,
.device-card div {
  padding: 18px;
}

.credential-card h3,
.device-card h3,
.laser-card h3,
.cycle-phase h3,
.route-card h3,
.policy-card h3,
.price-link-box h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.credential-card p,
.device-card p:last-child,
.laser-card p:last-child,
.cycle-phase p:last-child,
.price-link-box p:last-of-type,
.route-card p,
.process-content p:last-child {
  margin-bottom: 0;
}

.facility-gallery,
.access-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.facility-gallery img,
.access-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.facility-gallery img:first-child,
.access-photo-grid img:first-child {
  grid-column: 1 / -1;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-step {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-bright-pink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.process-media {
  background: var(--color-soft-pink);
}

.process-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.process-content {
  padding: 22px;
}

.process-number {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-note,
.detail-note {
  padding: 12px 14px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-pink);
  border-radius: 0 12px 12px 0;
  color: var(--color-dark-rose);
  font-size: 0.92rem;
  font-weight: 700;
}

.process-note {
  margin-top: 0;
}

.map-area {
  min-width: 0;
}

.map-area iframe {
  width: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.policy-meta {
  width: fit-content;
  margin-top: 16px;
  padding: 6px 12px;
  background: var(--color-soft-pink);
  border: 1px solid var(--color-bright-pink);
  border-radius: 999px;
  color: var(--color-dark-rose);
  font-size: 0.85rem;
  font-weight: 700;
}

.policy-card,
.laser-card,
.cycle-phase,
.route-card,
.price-link-box {
  padding: 20px;
}

.policy-list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 1.2em;
}

.policy-card p:last-child,
.policy-list:last-child {
  margin-bottom: 0;
}

.detail-visual img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.figure-card figcaption {
  padding: 14px 16px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.device-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: var(--color-soft-pink);
}

.laser-card-alt {
  border-top: 4px solid var(--color-main-pink);
}

.laser-wavelength {
  color: var(--color-dark-rose);
  font-size: 0.9rem;
  font-weight: 700;
}

.method-section .service-cards {
  display: grid;
  gap: 24px;
}

.method-section .service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 20px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.method-section .service-card .price-tag {
  align-self: flex-start;
  margin: 20px 0 14px;
}

.method-section .service-card__media {
  width: calc(100% + 40px);
  aspect-ratio: 4 / 3;
  margin: 0 -20px;
  overflow: hidden;
  background: #f5f5f5;
}

.method-section .service-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.method-section .service-card h3 {
  margin-top: 16px;
}

.method-section .service-card p:last-child {
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .method-section .service-card:hover .service-card__media img {
    transform: scale(1.03);
  }
}

@media (min-width: 768px) {
  .method-section .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .method-section .service-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .method-section .service-cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cycle-phase-active {
  border-left: 4px solid var(--color-main-pink);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: var(--color-white);
  border: 1px solid var(--color-bright-pink);
  border-radius: 12px;
  color: var(--color-dark-rose);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.detail-note {
  margin-top: 14px;
}

.price-link-box .secondary-button {
  margin-top: 16px;
}

.process-step .process-content:only-child {
  grid-column: 1 / -1;
}

.flow-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 22px 22px 22px 76px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 41px;
  top: 64px;
  bottom: -18px;
  border-left: 2px dashed var(--color-bright-pink);
}

.flow-list span {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main-pink);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.final-cta {
  padding: 56px 16px;
  background: linear-gradient(135deg, #b54865, #e05a7a);
  color: var(--color-white);
  text-align: center;
}

.final-cta-inner {
  max-width: 780px;
  margin: 0 auto;
}

.final-cta h2,
.final-cta p {
  color: var(--color-white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--color-dark-rose);
  color: var(--color-white);
}

.footer-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 36px 16px;
  display: grid;
  gap: 24px;
}

.footer-inner img {
  width: 180px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--color-white);
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: var(--color-soft-pink);
  text-decoration: none;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.copyright {
  margin: 0;
  padding: 14px 16px calc(84px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-align: center;
}

.fixed-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 18px rgba(181, 72, 101, 0.2);
}

.fixed-bottom-cta a {
  height: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
}

.fixed-bottom-cta a:first-child {
  background: var(--color-main-pink);
}

.fixed-bottom-cta a:last-child {
  background: var(--color-line);
}

@media (min-width: 640px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-inner,
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quick-info-inner {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 17px;
  }

  .brand,
  .brand img {
    width: 190px;
  }

  .global-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .global-nav a {
    padding: 8px 10px;
    color: var(--color-text);
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .global-nav a:hover,
  .global-nav a[aria-current="page"] {
    background: var(--color-soft-pink);
    color: var(--color-dark-rose);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu-button {
    display: none;
  }

  .hero-inner {
    min-height: 560px;
    padding-top: 62px;
    padding-bottom: 62px;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: center;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 38px;
  }

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

  .two-column {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    align-items: start;
  }

  .doctor-profile {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .doctor-profile-card {
    padding: 34px;
  }

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

  .facility-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    align-items: start;
  }

  .process-step {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    align-items: stretch;
  }

  .process-step:nth-child(even) {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  }

  .process-step:nth-child(even) .process-media {
    order: 2;
  }

  .process-content {
    padding: 30px;
  }

  .process-media img {
    height: 100%;
    min-height: 260px;
  }

  .access-overview {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: start;
  }

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

  .detail-visual-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    align-items: center;
  }

  .device-grid,
  .laser-grid,
  .figure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .access-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: start;
  }

  .fixed-bottom-cta {
    display: none;
  }

  .copyright {
    padding-bottom: 14px;
  }
}

@media (min-width: 1100px) {
  .global-nav a {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .trust-section .section-inner {
    overflow: hidden;
  }

  .trust-section .trust-grid {
    --trust-slider-padding: 16px;
    display: flex;
    gap: 16px;
    margin-inline: calc(var(--trust-slider-padding) * -1);
    padding: 4px var(--trust-slider-padding) 14px;
    overflow-x: auto;
    scroll-padding-inline: var(--trust-slider-padding);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(224, 90, 122, 0.35) transparent;
    -webkit-overflow-scrolling: touch;
  }

  .trust-section .trust-grid::-webkit-scrollbar {
    height: 6px;
  }

  .trust-section .trust-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .trust-section .trust-grid::-webkit-scrollbar-thumb {
    background: rgba(224, 90, 122, 0.28);
    border-radius: 999px;
  }

  .trust-section .feature-card {
    flex: 0 0 84vw;
    max-width: 820px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .treatments-section .section-inner {
    overflow: hidden;
  }

  .treatments-section .treatment-grid {
    --treatment-slider-padding: 16px;
    display: flex;
    gap: 16px;
    margin-inline: calc(var(--treatment-slider-padding) * -1);
    padding: 4px var(--treatment-slider-padding) 16px;
    overflow-x: auto;
    scroll-padding-inline: var(--treatment-slider-padding);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(224, 90, 122, 0.35) transparent;
    -webkit-overflow-scrolling: touch;
  }

  .treatments-section .treatment-grid::-webkit-scrollbar {
    height: 6px;
  }

  .treatments-section .treatment-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .treatments-section .treatment-grid::-webkit-scrollbar-thumb {
    background: rgba(224, 90, 122, 0.28);
    border-radius: 999px;
  }

  .treatments-section .treatment-card {
    flex: 0 0 84vw;
    max-width: 420px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .treatments-section .treatment-card a:not(.primary-button):not(.secondary-button) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .trust-section .trust-grid {
    --trust-slider-padding: 24px;
  }

  .treatments-section .treatment-grid {
    --treatment-slider-padding: 24px;
  }
}

@media (max-width: 899px) {
  .hero-media {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .fixed-bottom-cta {
    display: grid;
  }

  .hero-actions a {
    width: 100%;
  }
}

@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;
  }
}
