:root {
  --ink: #16211f;
  --muted: #5c6864;
  --paper: #fbfaf6;
  --cream: #f2eee5;
  --sage: #879a8d;
  --deep-sage: #31483f;
  --champagne: #c5aa72;
  --line: rgba(22, 33, 31, 0.14);
  --shadow: 0 24px 80px rgba(22, 33, 31, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-elevated {
  background: rgba(251, 250, 246, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 268px);
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(22, 33, 31, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.72);
}

.site-nav .language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(22, 33, 31, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.site-nav .language-switch a.is-active {
  color: white;
  background: var(--deep-sage);
}

.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--deep-sage);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
}

.gateway-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.78) 38%, rgba(251, 250, 246, 0.1) 72%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.7) 0%, rgba(251, 250, 246, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.gateway-content {
  position: relative;
  width: min(1120px, 100%);
}

.gateway-content h1 {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 94px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  color: white;
  background: var(--deep-sage);
  border-color: var(--deep-sage);
}

.button.secondary {
  background: rgba(251, 250, 246, 0.62);
}

.button.line {
  color: var(--deep-sage);
  background: rgba(135, 154, 141, 0.14);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(820px, 100%);
  margin-top: 34px;
}

.gateway-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.gateway-choice {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(22, 33, 31, 0.14);
  border-radius: 8px;
  color: white;
  background: #16211f;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.gateway-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 170, 114, 0.7);
}

.gateway-choice img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 220ms ease;
}

.gateway-choice:hover img {
  transform: scale(1.03);
}

.gateway-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 21, 0.08) 0%, rgba(15, 23, 21, 0.86) 84%),
    linear-gradient(90deg, rgba(15, 23, 21, 0.52), rgba(15, 23, 21, 0.08));
}

.gateway-choice.maternity-choice img {
  object-position: 62% center;
}

.gateway-choice.wellness-choice img {
  object-position: center 20%;
}

.gateway-choice > div {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 44px);
}

.gateway-choice span,
.gateway-choice b {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gateway-choice strong {
  display: block;
  max-width: 520px;
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.gateway-choice p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.gateway-choice b {
  display: inline-flex;
  margin-top: 18px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(22, 33, 31, 0.13);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.88);
  box-shadow: 0 18px 60px rgba(22, 33, 31, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.choice-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.82);
  transition: opacity 180ms ease, transform 220ms ease;
}

.choice-card:hover img {
  transform: scale(1.03);
  opacity: 0.25;
}

.maternity-choice img {
  object-position: 62% center;
}

.wellness-choice img {
  opacity: 0.28;
  object-position: center 20%;
}

.wellness-choice:hover img {
  opacity: 0.34;
}

.choice-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 170, 114, 0.56);
  background: rgba(251, 250, 246, 0.98);
}

.choice-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-card strong {
  display: block;
  max-width: 360px;
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.choice-card small {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.wellness-choice {
  color: white;
  background: linear-gradient(145deg, #31483f, #172623);
}

.wellness-choice:hover {
  background: linear-gradient(145deg, #385247, #172623);
}

.wellness-choice small,
.wellness-choice span {
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 610px;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 18px;
  background: rgba(251, 250, 246, 0.86);
}

.trust-strip dt {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: 92svh;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  background: var(--paper);
}

.service-hero-copy {
  max-width: 760px;
}

.service-hero-copy h1 {
  font-size: clamp(46px, 7vw, 88px);
}

.service-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: white;
}

.service-hero-media img {
  display: block;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 62% center;
}

.portrait-media img {
  object-position: center 18%;
}

.maternity-service {
  background: #f8f4ed;
}

.wellness-service {
  color: white;
  background:
    linear-gradient(90deg, rgba(22, 33, 31, 0.94), rgba(49, 72, 63, 0.88)),
    url("assets/dr-dawn-luxury-clinic-hero.png") center / cover;
}

.wellness-service .eyebrow,
.wellness-service .hero-copy {
  color: rgba(255, 255, 255, 0.76);
}

.wellness-service .button.secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.intro > p,
.doctor p,
.maternity p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.credentials article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.credentials span,
.program-grid span,
.product-card > p,
.care-card > p {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credentials p,
.program-grid p,
.care-card h3,
.product-card li {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.philosophy-section {
  background: #fbfaf6;
}

.philosophy-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-inner h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.philosophy-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.philosophy-copy p {
  margin: 0;
}

.philosophy-copy p + p {
  margin-top: 16px;
}

.philosophy-copy strong {
  color: var(--deep-sage);
  font-weight: 700;
}

.values-section {
  background: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.values-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.76);
}

.values-grid span {
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
}

.values-grid h3 {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.values-grid p {
  color: var(--muted);
}

.mission-section {
  background: #f0f2ed;
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: 8px;
  background: #fbfaf6;
}

.mission-copy,
.why-choose {
  min-width: 0;
}

.mission-copy h2 {
  margin-bottom: 20px;
}

.mission-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.mission-copy strong {
  color: var(--deep-sage);
  font-weight: 700;
}

.why-choose {
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px solid rgba(22, 33, 31, 0.12);
}

.why-choose ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-choose li {
  position: relative;
  padding-left: 34px;
  color: var(--deep-sage);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.why-choose li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--champagne);
  content: "✓";
  font-weight: 800;
}

.care {
  background: var(--cream);
}

.care-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.care-card {
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.7);
}

.care-card.featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-row: span 2;
  color: white;
  background: linear-gradient(145deg, #31483f, #172623);
}

.care-card.featured p,
.care-card.featured h3,
.care-card.featured a {
  color: white;
}

.care-card.featured h3 {
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.care-card a {
  font-weight: 800;
}

.programs {
  background: var(--paper);
}

.media-section {
  background: #eef1ec;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.media-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #16211f;
  color: white;
}

.media-tile.large {
  grid-row: span 2;
  min-height: 640px;
}

.media-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88);
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 21, 0) 35%, rgba(15, 23, 21, 0.82) 100%);
}

.media-tile > div {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
}

.media-tile span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-tile h3 {
  max-width: 540px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.04;
}

.media-tile p {
  color: rgba(255, 255, 255, 0.72);
}

.video-link {
  display: grid;
  align-items: stretch;
  grid-column: 1 / -1;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(49, 72, 63, 0.96), rgba(15, 23, 21, 0.96)),
    url("assets/dr-dawn-white-coat.jpg") center / cover;
}

.video-link::after {
  display: none;
}

.video-link > div {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
}

.video-link .button {
  margin-top: 18px;
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.clinic-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.clinic-video-grid figure {
  margin: 0;
}

.clinic-video-grid video {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 9 / 16;
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f1715;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.clinic-video-grid figcaption {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

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

.service-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-program-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e6ece7;
}

.service-program-card span,
.product-feature span {
  margin: 26px 28px 0;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-program-card h3,
.service-program-card p,
.service-program-card strong,
.service-program-card small,
.service-program-card a {
  margin-left: 28px;
  margin-right: 28px;
}

.service-program-card h3 {
  margin-top: 18px;
}

.service-program-card p {
  color: var(--muted);
}

.service-program-card strong {
  margin-top: auto;
  color: var(--deep-sage);
  font-size: 15px;
}

.service-program-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.service-program-card a {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 28px;
  color: var(--deep-sage);
  font-weight: 800;
  border-bottom: 1px solid rgba(49, 72, 63, 0.42);
}

.program-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.program-grid h3 {
  margin-top: 24px;
}

.program-grid .booking-card {
  color: white;
  background: #16211f;
}

.program-grid .booking-card p {
  color: rgba(255, 255, 255, 0.72);
}

.program-grid .booking-card .button {
  margin-top: 18px;
}

.product-showcase {
  background: #f8f4ed;
}

.product-catalog {
  background: #fbfaf6;
}

.price-brochure-panel {
  overflow: hidden;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.price-brochure-panel > div {
  padding: clamp(30px, 5vw, 58px);
}

.price-brochure-panel span,
.catalog-group-heading span,
.catalog-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-brochure-panel p {
  color: var(--muted);
}

.catalog-group {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.catalog-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.catalog-group-heading h3 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  background: #f7f6f2;
}

.catalog-card span,
.catalog-card h4,
.catalog-card p,
.catalog-card strong {
  margin-left: 22px;
  margin-right: 22px;
}

.catalog-card span {
  margin-top: 22px;
}

.catalog-card h4 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
}

.catalog-card p {
  color: var(--muted);
}

.catalog-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  margin-bottom: 24px;
  padding-top: 16px;
  color: var(--deep-sage);
  font-size: 18px;
}

.knowledge-preview,
.knowledge-categories,
.article-list-section {
  background: var(--paper);
}

.knowledge-strip {
  background: #eef1ec;
}

.maternity-knowledge {
  background: #fbfaf6;
}

.knowledge-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-card-grid.compact .knowledge-card {
  min-height: 260px;
}

.knowledge-card {
  display: block;
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 170, 114, 0.58);
  box-shadow: 0 18px 54px rgba(22, 33, 31, 0.1);
}

.knowledge-card span,
.knowledge-category-list span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-card p {
  color: var(--muted);
}

.knowledge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: 92svh;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  color: white;
  background:
    linear-gradient(90deg, rgba(22, 33, 31, 0.96), rgba(49, 72, 63, 0.9)),
    url("assets/dr-dawn-luxury-clinic-hero.png") center / cover;
}

.knowledge-hero .eyebrow,
.knowledge-hero .hero-copy {
  color: rgba(255, 255, 255, 0.76);
}

.knowledge-hero .button.secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.knowledge-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.knowledge-hero-media img {
  display: block;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 18%;
}

.knowledge-category-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.knowledge-category-list a {
  display: grid;
  grid-template-columns: 64px minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  min-height: 96px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, padding-left 160ms ease;
}

.knowledge-category-list a:hover {
  color: var(--deep-sage);
  padding-left: 10px;
}

.knowledge-category-list strong {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.knowledge-category-list small {
  color: var(--muted);
  font-size: 15px;
}

.article-section {
  background: #f8f4ed;
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.article-feature.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.article-feature p {
  color: var(--muted);
  font-size: 18px;
}

.article-feature img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.skin-article {
  background: #eef1ec;
}

.product-education {
  background: #f8f4ed;
}

.filler-aftercare {
  background: #fbfaf6;
}

.aftercare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 16px;
}

.aftercare-panel {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.aftercare-panel.featured {
  color: white;
  background: linear-gradient(145deg, #31483f, #172623);
}

.aftercare-panel.warning {
  background: #f8f4ed;
  border-color: rgba(197, 170, 114, 0.42);
}

.aftercare-panel span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aftercare-panel p,
.aftercare-panel li,
.medical-note {
  color: var(--muted);
}

.aftercare-panel.featured p,
.aftercare-panel.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.aftercare-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.medical-note {
  max-width: 860px;
  margin: 28px 0 0;
  font-size: 15px;
}

.faq-section {
  background: #fbfaf6;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px clamp(22px, 4vw, 34px);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 22px clamp(22px, 4vw, 34px);
  color: var(--muted);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: 92svh;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  background: #f8f4ed;
}

.about-hero img {
  display: block;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-profile {
  background: var(--paper);
}

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

.profile-grid article {
  min-height: 280px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.profile-grid span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-grid p {
  color: var(--muted);
}

.doctor-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  background: #eef1ec;
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 148px clamp(20px, 5vw, 72px) clamp(72px, 10vw, 132px);
}

.article-page h1 {
  max-width: 900px;
}

.article-body {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  margin-top: 44px;
  font-size: clamp(30px, 4vw, 48px);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
}

.article-body ul {
  padding-left: 22px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.sticky-booking {
  position: fixed;
  z-index: 18;
  right: clamp(18px, 4vw, 38px);
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(15, 23, 21, 0.22);
  font-weight: 900;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: clamp(16px, 3vw, 34px);
  object-fit: contain;
  background: #f6f1ea;
  box-sizing: border-box;
}

.product-feature > div {
  align-self: center;
  padding: clamp(30px, 5vw, 58px);
}

.product-feature span {
  display: block;
  margin: 0 0 18px;
}

.product-feature p {
  color: var(--muted);
}

.product-feature .button {
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--deep-sage);
  font-weight: 800;
  border-bottom: 1px solid rgba(49, 72, 63, 0.42);
}

.doctor {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.doctor-panel,
.quote-panel,
.product-card {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.education-list {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.education-list span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.education-video-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #16211f;
  color: white;
  box-shadow: var(--shadow);
}

.education-video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0f1715;
}

.education-video-panel > div {
  padding: clamp(26px, 4vw, 42px);
}

.education-video-panel .eyebrow,
.education-video-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.education-video-panel h3 {
  color: white;
}

.video-open-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--champagne);
  font-weight: 800;
  border-bottom: 1px solid rgba(197, 170, 114, 0.5);
}

.doctor-portrait {
  display: block;
  width: 164px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(197, 170, 114, 0.58);
  box-shadow: 0 18px 50px rgba(22, 33, 31, 0.14);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e6ece7;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.maternity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #f8f4ed;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

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

.media-card > div {
  padding: clamp(26px, 4vw, 42px);
}

.product-stack {
  display: grid;
  gap: 18px;
}

.product-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: white;
  background: #16211f;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact h2 {
  max-width: 780px;
}

.contact .button.secondary,
.contact .button.line {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact .button.primary {
  color: var(--ink);
  background: var(--champagne);
  border-color: var(--champagne);
}

.map-card {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  filter: saturate(0.86);
}

.map-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.map-card a::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--champagne);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.64);
  background: #0f1715;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 20px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .language-switch {
    margin: 8px 14px;
    align-self: flex-start;
  }

  .site-nav .language-switch a {
    padding: 5px 9px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 900px;
    align-items: end;
  }

  .gateway-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.4) 0%, rgba(251, 250, 246, 0.96) 55%, rgba(251, 250, 246, 1) 100%),
      linear-gradient(90deg, rgba(251, 250, 246, 0.54), rgba(251, 250, 246, 0.08));
  }

  .hero-image {
    object-position: 62% center;
  }

  .trust-strip,
  .credentials,
  .gateway-choice-grid,
  .choice-grid,
  .care-grid,
  .mission-panel,
  .media-grid,
  .clinic-video-grid,
  .knowledge-card-grid,
  .values-grid,
  .price-brochure-panel,
  .product-card-grid,
  .knowledge-hero,
  .about-hero,
  .profile-grid,
  .doctor-story,
  .article-feature,
  .article-feature.reverse,
  .aftercare-grid,
  .service-program-grid,
  .product-feature,
  .program-grid,
  .doctor,
  .maternity,
  .service-hero,
  .intro {
    grid-template-columns: 1fr;
  }

  .knowledge-category-list a {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
  }

  .knowledge-category-list small {
    grid-column: 2;
  }

  .why-choose {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(22, 33, 31, 0.12);
  }

  .gateway-choice {
    min-height: 390px;
  }

  .service-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .knowledge-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .service-hero-media img {
    min-height: 440px;
  }

  .knowledge-hero-media img,
  .about-hero img,
  .article-feature img {
    min-height: 420px;
  }

  .care-card.featured {
    grid-row: auto;
  }

  .media-tile.large {
    grid-row: auto;
    min-height: 480px;
  }

  .video-link {
    grid-column: auto;
  }

  .clinic-video-grid video {
    width: min(100%, 320px);
    max-height: 570px;
  }

  .contact,
  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
    max-width: 210px;
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    min-height: 820px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .gateway-hero,
  .service-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gateway-choice {
    min-height: 350px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .sticky-booking {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }
}
