:root {
  --bg: #f0f4f8;
  --panel: #ffffff;
  --text: #0c1629;
  --muted: #5a6b7f;
  --brand: #0a8f8a;
  --brand-dark: #0b4f6c;
  --accent: #e8940c;
  --line: #cfd8e3;
  --shadow: 0 20px 44px rgba(8, 34, 60, 0.11);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 16px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 143, 138, 0.45);
  outline-offset: 2px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 225, 234, 0.6);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 8px;
  width: 44px;
  height: 40px;
  font-weight: 700;
  background: #dff5f4;
  color: var(--brand-dark);
  cursor: pointer;
  position: relative;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.hero-slider {
  position: relative;
  background: #081523;
}

.slides {
  position: relative;
  height: min(84vh, 760px);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s ease, transform 4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 20, 36, 0.75), rgba(11, 79, 108, 0.55));
}

.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 760px;
}

.slide-content .eyebrow {
  color: #d5f9f5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  margin-bottom: 18px;
}

.slide-content .lead {
  color: #e6eef7;
  max-width: 62ch;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #c7780a);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), #123252);
}

.slide-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.slide-dots button.active {
  width: 26px;
  border-radius: 10px;
  background: #fff;
}

.stats-strip {
  background: linear-gradient(90deg, #0b4f6c, #0a8f8a);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
}

.stats-grid div {
  color: #e8ffff;
  display: grid;
  gap: 2px;
  text-align: center;
}

.stats-grid strong {
  font-size: 1.4rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-intro {
  max-width: 62ch;
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 65ch;
}

.about-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: -6px 0 18px;
  font-family: "Manrope", system-ui, sans-serif;
}

.subpage-main {
  padding-bottom: 72px;
}

.doc-page-header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a5a72 48%, #123252 100%);
  color: #fff;
  padding: 40px 0 36px;
}

.doc-page-header .container {
  max-width: min(1120px, 92%);
}

.doc-page-header h1 {
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.2;
}

.doc-page-lead {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(230, 243, 250, 0.92);
  font-weight: 500;
}

.breadcrumb {
  margin: 0 0 14px;
  font-size: 0.875rem;
  font-family: "Manrope", system-ui, sans-serif;
}

.breadcrumb a {
  color: #9ee5df;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.doc-page-shell {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.doc-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(28px, 4vw, 44px);
  padding-top: 40px;
  align-items: start;
}

.doc-aside {
  position: sticky;
  top: 92px;
}

.doc-aside-figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doc-aside-figure img:not(.doc-aside-logo):not(.doc-aside-thumb) {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.doc-aside-figure--brand {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  background: linear-gradient(165deg, #fff 0%, #f4f9fc 100%);
}

.doc-aside-thumb {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #e8eef4;
}

.doc-aside-brand-inner {
  padding: clamp(14px, 3vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.doc-aside-clinic-line {
  margin: 0 0 12px;
  padding: 0 6px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(0.58rem, 1.45vw, 0.68rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--brand-dark);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: none;
}

.doc-aside-figure--brand .doc-aside-logo {
  margin-bottom: 4px;
}

.doc-aside-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.doc-aside-figure figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  font-size: 0.895rem;
  color: var(--muted);
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(250, 252, 253, 1) 0%, #fff 55%);
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.doc-aside-figure--brand figcaption {
  text-align: center;
  border-top: none;
  padding-top: 8px;
  background: transparent;
}

.prose {
  max-width: 65ch;
  margin: 0 auto;
  padding: 40px 0 0;
}

.prose h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.prose h2:first-of-type {
  margin-top: 1.5rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.prose.prose--article {
  max-width: min(80ch, 100%);
  margin: 0;
  padding-top: 0;
}

.prose.prose--article > p:first-of-type {
  font-size: 1.07rem;
  color: var(--text);
  opacity: 0.92;
}

.prose-back {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.prose-cross {
  margin: 2rem 0 0 !important;
  font-family: "Manrope", system-ui, sans-serif;
}

.prose-cross a {
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(10, 143, 138, 0.4);
}

.prose-cross a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.prose-back .mv-readmore {
  border-bottom: none;
}

.prose-back .mv-readmore:hover {
  text-decoration: underline;
}

.credentials {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.cred-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.cred-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.cred-card p {
  margin: 0;
  font-size: 0.95rem;
}

.reviews-intro {
  color: rgba(216, 231, 246, 0.85);
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mission-vision {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mv-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #fafcfd 100%);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.mv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin: 0 0 12px;
  color: var(--text);
}

.mv-summary {
  margin: 0 0 18px;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
}

a.mv-readmore {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(10, 143, 138, 0.45);
  align-self: flex-start;
  padding-bottom: 2px;
  margin-top: auto;
}

a.mv-readmore:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.subpage .site-header {
  position: relative;
}

.resources {
  background: linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
}

.resource-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.resource-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.resource-card h3 {
  margin-bottom: 0;
}

.resource-card p {
  flex: 1;
  margin: 0;
}

a.resource-download {
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(10, 143, 138, 0.35);
  align-self: flex-start;
  padding-bottom: 2px;
}

a.resource-download:hover {
  border-bottom-color: var(--brand);
  color: var(--brand);
}

.services {
  background: radial-gradient(circle at top right, #dff7f7 0%, #f7fbfe 50%);
}

.service-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.reviews {
  background: #0f1f35;
}

.reviews .section-tag,
.reviews h2 {
  color: #fff;
}

.review-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.review-card p {
  color: #d8e7f6;
}

.review-card cite {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.book-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.book-checklist {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  max-width: 55ch;
}

.book-checklist li {
  margin-bottom: 0.55rem;
}

.insights-card {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #eaf6ff);
  box-shadow: var(--shadow);
}

.insights-card h3 {
  margin-bottom: 8px;
}

.insights-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.insight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #d8f4f2;
  color: #0d5f71;
  font-size: 0.8rem;
  font-weight: 700;
}

.book-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  gap: 10px 12px;
}

.book-form .field {
  display: block;
  width: 100%;
  min-width: 0;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid #c8d5e2;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
}

.book-form .field.full {
  grid-column: 1 / -1;
}

.form-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #eef8ff;
  border: 1px solid #cde5f8;
  border-radius: 10px;
  padding: 10px 12px;
  color: #30516f;
  font-size: 0.92rem;
}

.tip-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  background: #2a86c8;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-message {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.booking-message.success {
  background: #e7f8ef;
  border: 1px solid #b8e7cb;
  color: #15633c;
}

.booking-message.error {
  background: #fdecec;
  border: 1px solid #f6c0c0;
  color: #8b1f1f;
}

.book-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-copy .lead-text {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
}

.contact-list a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #edf6ff);
  padding: 22px;
}

.map-card h3 {
  margin-top: 0;
}

.map-embed {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.map-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.map-note code {
  font-size: 0.78em;
  padding: 2px 6px;
  background: rgba(11, 79, 108, 0.08);
  border-radius: 4px;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(120%);
  max-width: min(420px, 92vw);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  z-index: 200;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.site-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.site-toast.success {
  border-color: #b8e7cb;
  background: #e7f8ef;
  color: #15633c;
}

.site-toast.error {
  border-color: #f6c0c0;
  background: #fdecec;
  color: #8b1f1f;
}

.site-footer {
  background: #081523;
  color: #d4deea;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding: 50px 0 24px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer a {
  display: block;
  color: #d4deea;
  text-decoration: none;
  margin: 6px 0;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-login {
  margin-top: 14px;
}

.footer-login a {
  display: inline !important;
  font-size: 0.88rem;
  opacity: 0.85;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0 18px;
  font-size: 0.92rem;
}

.copyright-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
}

.copyright .footer-copy,
.copyright .footer-credit {
  margin: 0;
  color: rgba(224, 232, 240, 0.88);
}

.footer-copy {
  text-align: left;
}

.footer-credit {
  font-size: 0.86rem;
  opacity: 0.92;
  text-align: right;
  flex-shrink: 0;
}

.footer-credit a {
  display: inline;
  color: #9ee5df;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .book-wrap,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .slides {
    height: min(82vh, 670px);
  }

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

  .service-grid,
  .review-grid,
  .resource-grid,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .book-form {
    grid-template-columns: 1fr;
  }

  .copyright-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer-credit {
    align-self: flex-end;
    text-align: right;
  }

  .doc-page-grid {
    grid-template-columns: 1fr;
  }

  .doc-aside {
    position: static;
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .doc-aside-figure img:not(.doc-aside-logo):not(.doc-aside-thumb) {
    aspect-ratio: 16 / 10;
    max-height: 280px;
    object-position: center 15%;
  }

  .doc-aside-thumb {
    max-height: none;
  }
}
