:root {
  --bg: #fbf8f5;
  --surface: #ffffff;
  --surface-soft: #f1ebe5;
  --ink: #262322;
  --muted: #6e6864;
  --rose: #d98c80;
  --rose-soft: #f1cbc4;
  --sage: #4f6f58;
  --blue: #49636f;
  --border: #e7ded7;
  --shadow: 0 18px 50px rgba(64, 48, 40, 0.09);
  --radius: 8px;
  --maxw: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin-bottom: 1rem; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); margin-bottom: 1rem; }
h3 { font-size: 1.55rem; margin-bottom: 0.65rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 245, 0.93);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--maxw);
  min-height: 76px;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: 1.45rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  background: var(--rose);
  bottom: -0.45rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}
.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: #fff !important;
  padding: 0.65rem 1.1rem;
}
.nav-cta:hover { background: var(--blue); }
.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 1.7rem;
}

section { padding: 5rem 0; }
.section-soft { background: var(--surface-soft); }
.section-intro {
  margin: 0 auto 3rem;
  max-width: 760px;
  text-align: center;
}
.section-intro .lead { margin-left: auto; margin-right: auto; }
.lead { color: var(--muted); font-size: 1.14rem; max-width: 62ch; }
.kicker {
  color: var(--sage);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.btn {
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--blue); color: #fff; }
.btn-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.cookie-banner {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 50%;
  max-width: min(920px, calc(100vw - 2rem));
  padding: 1.25rem;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}
.cookie-banner h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cookie-banner p {
  font-size: 0.9rem;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-settings {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 999px;
  bottom: 1rem;
  color: var(--muted);
  cursor: pointer;
  font: 600 0.78rem var(--sans);
  left: 1rem;
  padding: 0.55rem 0.8rem;
  position: fixed;
  z-index: 80;
}

.hero {
  background:
    linear-gradient(180deg, rgba(251, 248, 245, 0.8), rgba(241, 235, 229, 0.8)),
    var(--bg);
  padding: 4.75rem 0 4.2rem;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}
.hero-copy h1 { margin-bottom: 1.25rem; max-width: 760px; }
.hero-copy .lead { font-size: 1.22rem; margin-bottom: 1.8rem; }
.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual img {
  aspect-ratio: 4 / 4.5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero-caption {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
}
.caption-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.caption-item strong { display: block; font-size: 1.35rem; line-height: 1; }
.caption-item span { color: var(--muted); display: block; font-size: 0.84rem; margin-top: 0.3rem; }

.proof-strip {
  background: var(--ink);
  color: #fff;
  padding: 1rem 0;
}
.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 1rem;
}
.proof-item:first-child { border-left: 0; padding-left: 0; }
.proof-item strong { display: block; font-size: 0.98rem; }
.proof-item span { color: rgba(255, 255, 255, 0.72); font-size: 0.86rem; }

.grid { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.result-lead-grid {
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 920px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(64, 48, 40, 0.05);
  padding: 1.55rem;
  min-width: 0;
}
.card p:last-child { margin-bottom: 0; }
.card-kicker {
  color: var(--sage);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.card-link {
  color: var(--blue);
  display: inline-block;
  font-weight: 700;
  margin-top: 0.3rem;
}

.journey {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.journey-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 1.45rem;
}
.step-num {
  align-items: center;
  background: var(--rose-soft);
  border-radius: 50%;
  display: flex;
  font-family: var(--serif);
  font-size: 1.3rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 44px;
}

.split {
  align-items: center;
  display: flex;
  gap: 3.5rem;
}
.split > * { flex: 1 1 0; min-width: 0; }
.split-media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
}
.split-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.feature-list {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 1.5rem 0 0;
}
.feature-list li {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 0.9rem 0 0.9rem 1.7rem;
  position: relative;
}
.feature-list li::before {
  background: var(--sage);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0.25rem;
  position: absolute;
  top: 1.52rem;
  width: 7px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
.result-images {
  background: var(--border);
  display: grid;
  gap: 2px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  width: 100%;
}
.result-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ead5cf, #c77870);
  background-position: center;
  background-size: cover;
  min-width: 0;
  position: relative;
}
.result-img.after { background: linear-gradient(135deg, #d7e0d5, #718a76); }
.result-img img {
  height: 100%;
  min-width: 0;
  object-fit: cover;
  width: 100%;
}
.result-img span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  bottom: 0.8rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  left: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  position: absolute;
  text-transform: uppercase;
}
.result-body { padding: 1.35rem; }
.result-photo {
  aspect-ratio: 832 / 476;
  background: var(--surface-soft);
  overflow: hidden;
}
.result-photo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.result-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  min-width: 0;
  width: 100%;
}
.image-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(64, 48, 40, 0.05);
  overflow: hidden;
}
.image-card img {
  aspect-ratio: 832 / 476;
  background: var(--surface-soft);
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.image-card-body { padding: 1.25rem; }
.image-card-body p:last-child { margin-bottom: 0; }
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.team-card-body { padding: 1rem; }
.team-card-body h3 { font-size: 1.25rem; }
.team-card-body p { font-size: 0.92rem; margin-bottom: 0; }

.clinic-list { display: grid; gap: 1rem; }
.clinic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  overflow: hidden;
}
.clinic-map {
  align-items: center;
  background: linear-gradient(135deg, var(--rose-soft), var(--sage));
  color: #fff;
  display: flex;
  font-family: var(--serif);
  font-size: 2rem;
  justify-content: center;
  min-height: 220px;
  padding: 1.2rem;
  text-align: center;
}
.clinic-info { padding: 1.6rem; }
.clinic-info dl { display: grid; gap: 0.8rem; margin-top: 1rem; }
.clinic-info dt {
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.clinic-info dd { color: var(--muted); }

.page-head {
  background: linear-gradient(180deg, var(--bg), var(--surface-soft));
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.page-head p { margin-left: auto; margin-right: auto; max-width: 66ch; }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}
.form-group { margin-bottom: 1rem; }
.form label {
  color: var(--ink);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.form input, .form select, .form textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0.78rem 0.9rem;
  width: 100%;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(113, 138, 118, 0.16);
  outline: none;
}
.form-status {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
}
.form-status-success {
  background: rgba(79, 111, 88, 0.12);
  border-color: var(--sage);
  color: var(--sage);
}
.form-status-error {
  background: rgba(217, 140, 128, 0.15);
  border-color: var(--rose);
  color: #9c4a3f;
}

.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin-left: auto; margin-right: auto; max-width: 58ch; }
.cta-band .btn-secondary { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--ink); }
.cta-band .btn-group { justify-content: center; }

.site-footer {
  background: var(--ink);
  color: #d9d3cd;
  padding: 3.8rem 0 2rem;
}
.site-footer p { color: #d9d3cd; }
.footer-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding-bottom: 2.6rem;
}
.footer-brand {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.footer-heading {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; }
.footer-grid li { color: #bdb5ae; margin-bottom: 0.45rem; }
.footer-grid a { color: #d9d3cd; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  color: #9e958e;
  font-size: 0.85rem;
  padding-top: 1.5rem;
  text-align: center;
}

.notice {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  margin-top: 2rem;
  padding: 1rem;
}

@media (max-width: 940px) {
  .hero-grid, .clinic { grid-template-columns: 1fr; }
  .split { flex-direction: column; }
  .hero-grid { gap: 2rem; }
  .hero-visual img { aspect-ratio: 16 / 10; }
  .proof-grid, .journey, .grid-3, .result-gallery, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .proof-item:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 720px) {
  .nav { min-height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1.2rem 1.5rem 1.5rem;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3.2rem 0; }
  .hero-copy .lead { font-size: 1.08rem; }
  .proof-grid, .journey, .grid-3, .result-gallery, .team-grid, .hero-caption { grid-template-columns: 1fr; }
  .proof-item, .proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 0;
    padding-top: 0.8rem;
  }
  .proof-item:first-child { border-top: 0; padding-top: 0; }
  .btn { width: 100%; }
  .btn-group { width: 100%; }
  .cookie-banner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    flex-direction: column-reverse;
  }
  .result-images { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* ===== Article / knowledge content ===== */
.breadcrumb {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); margin: 0 0.4rem; }

.article-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  font-size: 0.92rem;
}
.toc strong {
  color: var(--ink);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.toc ul { list-style: none; display: grid; gap: 0.5rem; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--ink); }

.prose { max-width: 720px; }
.prose > * { scroll-margin-top: 100px; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { margin: 0 0 1rem 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose .lead { color: var(--muted); font-size: 1.18rem; margin-bottom: 1.6rem; }

.article-meta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  gap: 0.4rem 1.4rem;
  margin: 1.6rem 0 2rem;
  padding: 0.9rem 0;
}
.article-meta strong { color: var(--ink); }

.callout {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  margin: 1.8rem 0;
  padding: 1.1rem 1.25rem;
}
.callout p:last-child { margin-bottom: 0; }

.faq-list { display: grid; gap: 0.8rem; margin-top: 1rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.25rem;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  list-style: none;
  padding: 1.1rem 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--sage);
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 0.85rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 1.1rem; }

.hub-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(64, 48, 40, 0.05);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.hub-card h3 { font-size: 1.3rem; }
.hub-card p { flex: 1; }
.hub-card .card-link { margin-top: 0.6rem; }

.related {
  border-top: 1px solid var(--border);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
}
.related h2 { font-size: 1.6rem; }

@media (max-width: 940px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hub-grid { grid-template-columns: 1fr; }
}
