:root {
  --ink: #163a3a;
  --ink-deep: #0d2b2b;
  --teal: #1f6862;
  --teal-soft: #dceae5;
  --sage: #a8c1b1;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --coral: #d7685d;
  --coral-dark: #b94f47;
  --blush: #efd9d1;
  --sand: #dcc8a4;
  --line: rgba(22, 58, 58, 0.16);
  --muted: #5c716d;
  --logo-plum: #4a2936;
  --logo-rose: #c35171;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --shadow: 0 24px 70px rgba(14, 47, 45, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink-deep);
  color: white;
  transform: translateY(-150%);
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 110px;
}

.care-bar {
  position: relative;
  z-index: 30;
  background: var(--ink-deep);
  color: #ecf4ef;
  font-size: 13px;
}

.care-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.care-bar p {
  margin: 0;
  letter-spacing: 0.01em;
}

.care-bar a {
  color: white;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(14, 47, 45, 0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: 34px;
  height: 30px;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark__l {
  fill: var(--logo-plum);
}

.brand-mark__r {
  fill: var(--logo-rose);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.lang-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.button svg,
.service-card > a svg,
.mobile-book svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 70px 88px;
  background:
    linear-gradient(rgba(22, 58, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 58, 58, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 54px 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -220px -200px;
  width: 500px;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 104, 98, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(31, 104, 98, 0.035), 0 0 0 140px rgba(31, 104, 98, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: 5px 0 0 -2px var(--coral);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 770px;
  font-size: clamp(58px, 6.2vw, 92px);
}

h1 em,
h2 em {
  color: var(--coral-dark);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions,
.clinic-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
}

.trust-row div {
  min-width: 116px;
  display: grid;
  gap: 2px;
}

.trust-row strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% -10% -5% 16%;
  border: 1px solid rgba(22, 58, 58, 0.18);
  border-radius: 45% 45% 12% 44%;
  transform: rotate(5deg);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.77;
  border: 9px solid rgba(255, 253, 248, 0.8);
  border-radius: 46% 46% 28px 28px;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: none;
}

.portrait-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(216, 104, 93, 0.08), transparent 45%, rgba(15, 61, 58, 0.16));
  mix-blend-mode: multiply;
}

.care-note {
  position: absolute;
  right: -42px;
  bottom: 48px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 45px rgba(13, 43, 43, 0.16);
  backdrop-filter: blur(14px);
}

.care-note__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blush);
  color: var(--coral-dark);
}

.care-note svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.care-note p {
  display: grid;
  gap: 1px;
  margin: 0;
  line-height: 1.35;
}

.care-note strong {
  font-family: var(--serif);
  font-size: 17px;
}

.care-note span:last-child {
  color: var(--muted);
  font-size: 11px;
}

.hero-art .cell {
  position: absolute;
  border: 1px solid rgba(215, 104, 93, 0.24);
  border-radius: 50%;
}

.cell--one {
  top: 14%;
  right: 8%;
  width: 90px;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 18px rgba(215, 104, 93, 0.05);
}

.cell--two {
  top: 28%;
  right: 3%;
  width: 34px;
  aspect-ratio: 1;
  background: rgba(168, 193, 177, 0.18);
}

.cell--three {
  right: 42%;
  bottom: 9%;
  width: 18px;
  aspect-ratio: 1;
  background: rgba(215, 104, 93, 0.12);
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading h2,
.about h2,
.clinic h2,
.faq h2,
.contact h2 {
  font-size: clamp(44px, 5.1vw, 72px);
}

.section-heading--wide {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.section-heading--wide .eyebrow {
  justify-content: center;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-heading--wide > p:not(.eyebrow) {
  max-width: 670px;
  margin: 26px auto 0;
}

.guidance {
  position: relative;
  background: var(--paper);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: 42px clamp(24px, 3vw, 42px);
}

.path-card + .path-card {
  border-left: 1px solid var(--line);
}

.path-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(22, 58, 58, 0.28);
  font-family: var(--serif);
  font-size: 16px;
}

.path-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--teal);
}

.path-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.path-card h3,
.service-card h3,
.research-feature h3,
.publication-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}

.path-card h3 {
  font-size: 28px;
}

.path-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  margin: 0 0 6px;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 26px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(14, 47, 45, 0.08);
}

.service-card--featured {
  color: #f7f3eb;
  background: var(--teal);
  border-color: var(--teal);
}

.service-card--featured:hover {
  background: #175a55;
}

.service-card--featured .service-kicker,
.service-card--featured p,
.service-card--featured .service-number {
  color: rgba(255, 255, 255, 0.72);
}

.service-number {
  color: rgba(22, 58, 58, 0.36);
  font-family: var(--serif);
  font-size: 16px;
}

.service-kicker {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(26px, 2.5vw, 35px);
}

.service-card p:not(.service-kicker) {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card > a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.additional-services {
  margin-top: 18px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--teal-soft);
}

.additional-services__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 24px;
}

.additional-services__heading .service-kicker {
  margin: 0 0 6px;
}

.additional-services__heading h3 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.additional-service {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.additional-service:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 66, 103, 0.34);
  box-shadow: 0 14px 32px rgba(84, 44, 60, 0.08);
}

.additional-service__number {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 14px;
}

.additional-service h4 {
  margin: 25px 34px 0 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.08;
}

.additional-service p {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.additional-service__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--coral-dark);
  font-size: 17px;
}

.service-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: #f8f3ea;
}

.about-pattern {
  position: absolute;
  right: -240px;
  bottom: -240px;
  width: 700px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.015);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.83fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.about-visual {
  position: relative;
}

.about-photo {
  overflow: hidden;
  aspect-ratio: 0.85;
  border-radius: 180px 180px 24px 24px;
  background: var(--teal);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.72) contrast(1.06);
}

.signature-card {
  position: absolute;
  right: -58px;
  bottom: 35px;
  width: min(300px, 76%);
  padding: 26px;
  border-radius: 20px;
  background: var(--blush);
  color: var(--ink-deep);
  box-shadow: var(--shadow);
}

.signature-card > span {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.5;
}

.signature-card p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.eyebrow--light {
  color: var(--sage);
}

.about-copy h2 em {
  color: #eab0a7;
}

.about-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(247, 243, 235, 0.74);
}

.credential-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(247, 243, 235, 0.9);
  font-size: 13px;
}

.credential-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--coral);
  border-radius: 50%;
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--blush);
  background: var(--blush);
}

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

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

.metrics-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.metrics-heading .eyebrow {
  justify-content: center;
}

.metrics-heading h2 {
  font-size: clamp(44px, 5.1vw, 72px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-block: 1px solid var(--line);
}

.metrics-grid > div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(24px, 3vw, 40px);
}

.metrics-grid > div:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.metrics-grid > div:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.metrics-grid dt {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.metrics-grid dd {
  max-width: 260px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.metrics-source {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.metrics-source a {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  color: var(--coral-dark);
  font-weight: 700;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.research-feature {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--teal-soft);
}

.research-orbit {
  position: absolute;
  top: 8%;
  right: 7%;
  width: min(280px, 60%);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 104, 98, 0.22);
  border-radius: 50%;
}

.research-orbit::before,
.research-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(31, 104, 98, 0.18);
  border-radius: 50%;
}

.research-orbit::before {
  inset: 18%;
}

.research-orbit::after {
  inset: 38%;
  background: rgba(215, 104, 93, 0.12);
  border-color: rgba(215, 104, 93, 0.25);
}

.research-orbit span {
  position: absolute;
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
}

.research-orbit span:nth-child(1) { top: 14%; left: 21%; }
.research-orbit span:nth-child(2) { right: -2%; bottom: 38%; width: 8px; background: var(--teal); }
.research-orbit span:nth-child(3) { bottom: 3%; left: 35%; width: 18px; background: var(--sand); }

.research-feature h3 {
  position: relative;
  max-width: 570px;
  font-size: clamp(35px, 3.4vw, 50px);
}

.research-feature > p:not(.service-kicker) {
  position: relative;
  max-width: 550px;
  margin: 20px 0 0;
  color: var(--muted);
}

.research-links {
  position: relative;
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

.research-links a {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.publication-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.publication-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.publication-card:hover {
  transform: translateX(5px);
  border-color: var(--teal);
}

.publication-card > span {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 20px;
}

.publication-card p {
  margin: 0 0 5px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.publication-card h3 {
  font-size: 23px;
}

.publication-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.publication-card > strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-weight: 500;
}

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

.clinic-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(14, 47, 45, 0.08);
}

.clinic-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.clinic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 43, 43, 0.55));
}

.clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.03);
}

.clinic-photo span {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.clinic-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
}

.clinic-details {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
}

.clinic-details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.clinic-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-details dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.clinic-details dd span {
  color: var(--muted);
  font-weight: 400;
}

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

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

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

.testimonial-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  margin: 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.testimonial-card--pink {
  background: var(--teal-soft);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote::before {
  content: "“";
  display: block;
  height: 32px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.75;
}

.testimonial-card blockquote p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 39px);
  line-height: 1.12;
}

.testimonial-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.testimonial-card figcaption strong {
  color: var(--ink);
  font-size: 13px;
}

.testimonial-source {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.testimonial-source a {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  color: var(--coral-dark);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:not(.eyebrow) {
  margin-top: 24px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 28px 50px 28px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--teal-soft);
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 0 28px;
  padding-right: 50px;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 118px;
  background: var(--teal);
  color: white;
  text-align: center;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 em {
  color: #f2b8af;
}

.contact-inner > p:not(.eyebrow) {
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  justify-content: center;
}

.button--coral {
  border-color: var(--coral);
  background: var(--coral);
}

.button--coral:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
}

.button--outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.contact-art span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-art span:nth-child(1) {
  top: -190px;
  left: -120px;
  width: 500px;
  aspect-ratio: 1;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025);
}

.contact-art span:nth-child(2) {
  top: 80px;
  right: 8%;
  width: 70px;
  aspect-ratio: 1;
  background: rgba(216, 104, 93, 0.14);
}

.contact-art span:nth-child(3) {
  right: -180px;
  bottom: -260px;
  width: 560px;
  aspect-ratio: 1;
}

.site-footer {
  padding-block: 68px 24px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 0.5fr 0.8fr;
  gap: 70px;
}

.brand--footer {
  color: white;
}

.brand--footer .brand-mark__l {
  fill: #f4dbe4;
}

.brand--footer .brand-mark__r {
  fill: #df6f91;
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid > div:first-child > p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom a:hover {
  color: white;
}

.pulsehaus-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.pulsehaus-credit:hover {
  color: white;
}

.pulsehaus-square {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: #e63a2e;
}

.mobile-book {
  display: none;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 118px;
    right: 0;
    left: auto;
    width: 100%;
    min-height: calc(100dvh - 118px);
    display: none;
    align-content: start;
    gap: 0;
    padding: 30px 20px 60px;
    background: var(--cream);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 45px;
  }

  .care-note {
    right: -18px;
    min-width: 240px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-grid {
    gap: 80px;
  }

  .research-layout {
    grid-template-columns: 1fr;
  }

  .research-feature {
    min-height: 460px;
  }

  .clinic-card {
    grid-template-columns: 1fr 1fr;
  }

  .clinic-photo {
    min-height: 600px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 620px);
  }

  .section {
    padding-block: 76px;
  }

  .care-bar__inner {
    min-height: 32px;
  }

  .care-bar p {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 28px;
    height: 25px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-menu {
    top: 104px;
    min-height: calc(100dvh - 104px);
  }

  .hero {
    min-height: auto;
    padding-block: 54px 74px;
    background-size: 42px 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

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

  .trust-row div {
    min-width: 0;
  }

  .trust-row strong {
    font-size: 19px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .hero-visual {
    width: calc(100% - 24px);
    margin-inline: auto;
  }

  .portrait-frame {
    aspect-ratio: 0.84;
  }

  .care-note {
    right: -10px;
    bottom: 24px;
    min-width: 0;
    width: 77%;
    padding: 14px;
  }

  .care-note__icon {
    width: 38px;
    height: 38px;
  }

  .care-note strong {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about h2,
  .metrics-heading h2,
  .clinic h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

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

  .path-card {
    min-height: 0;
    padding: 34px 18px;
  }

  .path-card + .path-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .path-icon {
    margin-bottom: 28px;
  }

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

  .service-card {
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .service-card > a {
    grid-column: 2;
    margin-top: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .about-visual {
    width: calc(100% - 18px);
  }

  .signature-card {
    right: -18px;
    bottom: -28px;
    padding: 20px;
  }

  .signature-card p {
    font-size: 18px;
  }

  .metrics-heading {
    margin-bottom: 30px;
  }

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

  .metrics-grid > div {
    min-height: 174px;
    gap: 18px;
    padding: 24px 18px;
  }

  .metrics-grid > div:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .metrics-grid > div:nth-child(n + 4) {
    border-top: 0;
  }

  .metrics-grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .metrics-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .metrics-grid dt {
    font-size: clamp(42px, 13vw, 56px);
  }

  .metrics-grid dd {
    font-size: 12px;
  }

  .metrics-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .credential-list {
    grid-template-columns: 1fr;
  }

  .research-feature {
    min-height: 520px;
    padding: 30px 24px;
  }

  .publication-card {
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    padding: 22px 16px;
  }

  .publication-card h3 {
    font-size: 20px;
  }

  .publication-card > strong {
    width: 34px;
    height: 34px;
  }

  .clinic-card {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .clinic-photo {
    min-height: 330px;
  }

  .clinic-copy {
    padding: 36px 24px 42px;
  }

  .clinic-details > div {
    grid-template-columns: 88px 1fr;
  }

  .clinic-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .clinic-actions .text-link {
    align-self: flex-start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    font-size: 22px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .contact {
    padding-block: 92px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 20px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-book {
    position: fixed;
    z-index: 50;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: var(--coral);
    color: white;
    box-shadow: 0 14px 36px rgba(13, 43, 43, 0.24);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-book.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual direction v3: white-led breast-oncology palette, minimal geometry. */
:root {
  --ink: #3b3036;
  --ink-deep: #2d2027;
  --teal: #c95379;
  --teal-soft: #fae7ee;
  --sage: #dce8df;
  --cream: #fff9fb;
  --paper: #ffffff;
  --coral: #df6f91;
  --coral-dark: #ad4267;
  --blush: #f4dbe4;
  --sand: #eadfd7;
  --line: rgba(76, 49, 61, 0.14);
  --muted: #74636b;
  --shadow: 0 24px 70px rgba(84, 44, 60, 0.12);
}

body {
  background: var(--paper);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  gap: 11px;
}

.brand-copy strong {
  color: var(--ink-deep);
}

/* The footer background IS --ink-deep, so the rule above painted the name
   invisible against it (contrast 1.00). The footer brand stays white. */
.brand--footer .brand-copy strong {
  color: white;
}

.care-bar,
.site-footer {
  background: var(--ink-deep);
}

.lang-toggle,
.menu-toggle {
  border-radius: 10px;
}

.button,
.mobile-book {
  border-radius: 12px;
}

.button:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.hero {
  background:
    linear-gradient(rgba(201, 83, 121, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 83, 121, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 58px 58px;
}

.hero::before,
.hero-visual::before,
.hero-art,
.about-pattern,
.research-orbit,
.contact-art {
  display: none;
}

.eyebrow::before {
  content: none;
  display: none;
}

.portrait-frame {
  aspect-ratio: 0.79;
  border: 6px solid var(--paper);
  border-radius: 24px;
  background: var(--blush);
}

.portrait-wash {
  background: linear-gradient(180deg, rgba(223, 111, 145, 0.05), transparent 55%, rgba(59, 48, 54, 0.08));
}

.care-note {
  position: static;
  width: 100%;
  min-width: 0;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--teal-soft);
  box-shadow: none;
  backdrop-filter: none;
}

.care-note__icon {
  border-radius: 8px;
  background: var(--paper);
}

.path-icon {
  border-radius: 12px;
  background: var(--teal-soft);
}

.service-card {
  background: var(--paper);
}

.service-card--featured {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink-deep);
}

.service-card--featured:hover {
  background: #e889a6;
}

.service-card--featured .service-kicker,
.service-card--featured .service-number,
.service-card--featured p:not(.service-kicker),
.service-card--featured > a {
  color: var(--ink-deep);
}

.service-card > a,
.publication-card > strong,
.faq-list summary::after {
  border-radius: 9px;
}

.about {
  background: var(--teal-soft);
  color: var(--ink);
}

.about-grid {
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  background: var(--blush);
}

.about-photo img {
  filter: none;
}

.signature-card {
  position: static;
  width: 100%;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.signature-card > span {
  font-size: 42px;
}

.signature-card p {
  max-width: 440px;
  margin-top: 8px;
  font-size: 19px;
}

.eyebrow--light,
.about-copy h2 em {
  color: var(--coral-dark);
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.credential-list li {
  color: var(--ink);
}

.credential-list li::before {
  top: 0.75em;
  width: 13px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: var(--coral);
}

.button--light {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: white;
}

.button--light:hover {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
}

.research-feature {
  background: var(--teal-soft);
}

.research-feature > :not(.awareness-ribbon) {
  position: relative;
  z-index: 2;
}

.awareness-ribbon {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -38px;
  width: 310px;
  height: auto;
  opacity: 0.085;
  pointer-events: none;
  transform: rotate(-7deg);
  transform-origin: center;
}

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

.clinic-photo span {
  border-radius: 8px;
}

.contact {
  background: var(--coral-dark);
}

.contact h2 em {
  color: #ffdce7;
}

.button--coral {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--coral-dark);
}

.button--coral:hover {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  color: white;
}

@media (max-width: 1020px) {
  .care-note {
    min-width: 0;
  }

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

@media (max-width: 760px) {
  .hero {
    background-size: 44px 44px;
  }

  .hero-visual,
  .about-visual {
    width: 100%;
  }

  .care-note {
    position: static;
    width: 100%;
    margin-top: 14px;
    padding: 14px;
  }

  .signature-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .mobile-book {
    border-radius: 12px;
  }

  .additional-services {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .additional-services__heading,
  .additional-services__grid {
    grid-template-columns: 1fr;
  }

  .additional-services__heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .additional-services__heading h3 {
    font-size: 28px;
  }

  .additional-service {
    min-height: 0;
    padding: 18px;
  }

  .additional-service h4 {
    margin-top: 10px;
    font-size: 22px;
  }

  .additional-service p {
    margin-top: 10px;
    padding-top: 0;
  }
}

/* Mobile refinement v5: compact, readable and thumb-friendly. */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  .shell {
    width: min(100% - 36px, 620px);
  }

  .section {
    padding-block: 64px;
  }

  .care-bar__inner {
    min-height: 32px;
    gap: 12px;
  }

  .care-bar p,
  .care-bar a {
    font-size: 11px;
  }

  .care-bar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .lang-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .mobile-menu {
    top: 100px;
    min-height: calc(100dvh - 100px);
    padding: 20px 18px calc(40px + env(safe-area-inset-bottom));
    background: var(--paper);
  }

  .mobile-menu a {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 12px 4px;
    font-size: 27px;
  }

  .hero {
    padding-block: 42px 64px;
    background-size: 44px 44px;
  }

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: clamp(44px, 13.5vw, 58px);
    line-height: 0.98;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 28px;
  }

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

  .hero-actions .text-link,
  .clinic-actions .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .trust-row {
    gap: 10px;
    margin-top: 30px;
    padding-block: 18px;
    border-block: 1px solid var(--line);
  }

  .trust-row strong {
    font-size: 18px;
  }

  .trust-row span {
    font-size: 8px;
    line-height: 1.35;
  }

  .portrait-frame,
  .about-photo {
    border-radius: 18px;
  }

  .care-note,
  .signature-card {
    margin-top: 12px;
    border-radius: 12px;
  }

  .care-note strong {
    font-size: 14px;
  }

  .care-note span {
    font-size: 11px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .about h2,
  .clinic h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1;
  }

  .section-heading > p:not(.eyebrow),
  .section-heading--split > p,
  .faq-heading > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.6;
  }

  .section-heading--wide > p:not(.eyebrow) {
    margin-top: 20px;
  }

  .path-card {
    padding: 28px 18px;
  }

  .path-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .path-card h3 {
    font-size: 25px;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .service-number {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .service-card > div {
    grid-column: 1;
  }

  .service-card > a {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p:not(.service-kicker) {
    margin-top: 12px;
  }

  .about-grid {
    gap: 40px;
  }

  .signature-card {
    padding: 18px 20px;
  }

  .signature-card > span {
    font-size: 34px;
  }

  .signature-card p {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.45;
  }

  .research-feature {
    min-height: 430px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .awareness-ribbon {
    top: 10px;
    right: -42px;
    width: 230px;
    opacity: 0.075;
    transform: rotate(-7deg);
  }

  .publication-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .publication-card > span {
    grid-column: 1 / -1;
    font-size: 16px;
  }

  .publication-card > div {
    grid-column: 1;
  }

  .publication-card > strong {
    grid-column: 2;
    grid-row: 2;
    width: 40px;
    height: 40px;
  }

  .publication-card h3 {
    font-size: 20px;
  }

  .clinic-card {
    border-radius: 18px;
  }

  .clinic-photo {
    min-height: 260px;
  }

  .clinic-copy {
    padding: 30px 20px 34px;
  }

  .clinic-copy > p:not(.eyebrow) {
    margin-top: 20px;
  }

  .clinic-details {
    margin-top: 26px;
  }

  .clinic-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 15px;
  }

  .clinic-details dd,
  .clinic-details a {
    overflow-wrap: anywhere;
  }

  .faq-grid {
    gap: 32px;
  }

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

  .testimonial-card {
    min-height: 220px;
    gap: 32px;
    padding: 26px 22px;
    border-radius: 16px;
  }

  .testimonial-card blockquote p {
    font-size: 29px;
  }

  .testimonial-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 20px 48px 20px 0;
    font-size: 20px;
  }

  .faq-list summary::after {
    top: 16px;
    right: 0;
  }

  .faq-list details p {
    margin-bottom: 22px;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .contact {
    padding-block: 72px;
  }

  .contact-actions {
    width: 100%;
    margin-top: 28px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-block: 54px calc(100px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 36px 22px;
  }

  .footer-links a {
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .footer-bottom {
    gap: 16px;
    margin-top: 38px;
  }

  .footer-bottom div {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .pulsehaus-credit {
    min-height: 36px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .mobile-book {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 54px;
    box-shadow: 0 12px 30px rgba(84, 44, 60, 0.25);
    touch-action: manipulation;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(100% - 28px, 620px);
  }

  h1 {
    font-size: clamp(42px, 13vw, 48px);
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 7px;
  }

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

  .trust-row div:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .publication-card:hover {
    transform: none;
  }
}

@media (min-width: 761px) {
  .service-card {
    align-items: stretch;
  }

  .service-number,
  .service-card > a {
    align-self: start;
  }

  .service-card > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-card p:not(.service-kicker) {
    margin-top: auto;
    padding-top: 22px;
  }
}

/* ── Qualifications & affiliations ─────────────────────────────── */

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

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: start;
}

.credentials-side {
  display: grid;
  gap: 26px;
}

.credentials-block {
  padding: 36px clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.credentials-block h3 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.timeline-list,
.plain-list,
.language-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.timeline-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-year {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.timeline-list strong,
.plain-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.timeline-list small,
.plain-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.timeline-list__ongoing .timeline-year {
  color: var(--teal);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2.2;
  text-transform: uppercase;
}

.plain-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.plain-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.plain-list--compact strong {
  font-size: 14px;
}

.language-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.language-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.language-list strong {
  font-size: 15px;
  font-weight: 600;
}

.language-list span {
  color: var(--muted);
  font-size: 12.5px;
  text-align: right;
}

.credentials-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

/* ── Clinical trials ───────────────────────────────────────────── */

.trials {
  margin-top: 26px;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.trials__intro {
  max-width: 760px;
}

.trials__intro h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
}

.trials__intro p:not(.service-kicker) {
  margin: 0 0 14px;
  color: var(--muted);
}

.trials__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.trials__stats > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px clamp(16px, 2vw, 30px) 4px 0;
}

.trials__stats > div + div {
  padding-left: clamp(16px, 2vw, 30px);
  border-left: 1px solid var(--line);
}

.trials__stats dt {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.trials__stats dd {
  max-width: 250px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.trials__note {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* ── Full publications archive ─────────────────────────────────── */

.pub-archive {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pub-archive summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px clamp(70px, 8vw, 90px) 30px clamp(24px, 3vw, 40px);
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 500;
  line-height: 1.25;
}

.pub-archive summary::-webkit-details-marker {
  display: none;
}

.pub-archive summary em {
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.pub-archive summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: clamp(20px, 3vw, 36px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
  transform: translateY(-50%);
}

.pub-archive details[open] summary::after {
  content: "−";
  background: var(--teal-soft);
}

.pub-archive__body {
  padding: 0 clamp(24px, 3vw, 40px) 12px;
}

.pub-archive__lead {
  max-width: 720px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.pub-archive__list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.pub-year {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.pub-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.pub-archive__list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.pub-doi {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pub-doi:hover {
  color: var(--coral-dark);
}

@media (max-width: 1020px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .credentials-block {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .credentials-block h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .timeline-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .timeline-year {
    font-size: 15px;
  }

  .trials {
    padding: 26px 20px;
    border-radius: 20px;
  }

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

  .trials__stats > div {
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
  }

  .trials__stats > div:first-child {
    border-top: 0;
  }

  .trials__stats > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .trials__stats dd {
    max-width: none;
  }

  .pub-archive {
    border-radius: 20px;
  }

  .pub-archive summary {
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 62px 24px 20px;
    font-size: 20px;
  }

  .pub-archive summary::after {
    right: 16px;
    width: 30px;
    height: 30px;
  }

  .pub-archive__body {
    padding: 0 20px 8px;
  }

  .pub-archive__list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .pub-year {
    font-size: 15px;
  }

  .pub-title {
    font-size: 14px;
  }
}

/* Hero trust row carries four credentials — equal columns so it never wraps ragged. */
@media (min-width: 761px) {
  .trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}

@media (max-width: 360px) {
  .trust-row div:last-child {
    grid-column: auto;
  }
}

/* ── Pagina CV ─────────────────────────────────────────────── */

.desktop-nav a.is-current,
.mobile-menu a.is-current {
  color: var(--coral-dark);
  font-weight: 600;
}

.cv-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.cv-hero h1 {
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 7vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cv-hero__titles {
  margin: 0 0 18px;
  font-size: clamp(15px, 2.2vw, 17.5px);
  font-weight: 500;
  color: var(--teal);
}

.cv-hero__lede {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cv-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
}

.cv-stats div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.cv-stats dt {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cv-stats dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.cv-section--alt {
  background: var(--cream);
}

.cv-section .section-heading {
  margin-bottom: 30px;
}

.cv-trials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.cv-trial-figure {
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.cv-trial-figure strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.cv-trial-figure span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.cv-note {
  max-width: 74ch;
  margin: 0 0 12px;
  color: var(--muted);
}

.cv-disclaimer {
  max-width: 74ch;
  margin: 0;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .cv-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cv-stats dd {
    font-size: 26px;
  }
}

/* ── Pagini legale (confidențialitate, termeni) ──────────────── */

.legal-page {
  padding-block: 72px 104px;
  background: var(--cream);
}

.legal-shell {
  width: min(720px, calc(100% - 40px));
}

.legal-head {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

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

.legal-head h1 {
  margin: 0 0 18px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 500;
  line-height: 1.12;
}

.legal-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-section {
  padding-top: 38px;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ink-deep);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.legal-num {
  min-width: 20px;
  color: var(--teal);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.75;
}

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

.legal-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.legal-emphasis {
  font-weight: 500;
}

/* Deliberately off-palette: an unfilled blank must never read as finished UI. */
.legal-blank {
  margin-top: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  background: #fdf1d6;
  color: #7a5606;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .legal-page {
    padding-block: 44px 72px;
  }

  .legal-section {
    padding-top: 30px;
  }

  .legal-section h2 {
    gap: 9px;
  }
}

/* ── Legătura CV ↔ lista completă de publicații ──────────────── */

.pub-more {
  margin: 28px 0 0;
}

.pub-more .button {
  display: inline-flex;
  align-items: center;
}

.cv-hero .pub-more {
  margin-top: 22px;
}

/* ── Added 2026-08-31 from Cristina's notes 23.08.2026 ───────────── */

/* B2B research feasibility block */
.b2b {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}
.b2b__copy { flex: 1 1 420px; }
.b2b__copy h3 { margin: 6px 0 8px; }
.b2b__copy p { margin: 0; color: var(--muted); }

/* Newsletter band */
.newsletter { background: var(--teal-soft); }
.newsletter-inner { display: grid; gap: 28px; align-items: center; }
@media (min-width: 780px) {
  .newsletter-inner { grid-template-columns: 1.2fr 1fr; }
}
.newsletter-copy h2 { margin: 10px 0 12px; }
.newsletter-copy p:not(.eyebrow) { margin: 0; color: var(--muted); max-width: 46ch; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}
.newsletter-form input[disabled] { opacity: .7; }
.newsletter-form .button[disabled] { opacity: .55; cursor: not-allowed; }
.newsletter-note { flex-basis: 100%; margin: 0; font-size: 14px; color: var(--muted); }

/* Keep the coral fill on light backgrounds (a mobile rule repaints
   .button--coral in paper for the dark contact band) */
.b2b .button--coral,
.newsletter-form .button--coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* --- Premii: featured award cards ---------------------------------------- */
.award-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 860px) {
  .award-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.award-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.award-card__media {
  margin: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.award-card__media img {
  width: 100%;
  height: auto;
}

.award-card__body {
  padding: clamp(24px, 3vw, 34px);
}

.award-card__year {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.award-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 25px);
  font-weight: 500;
  line-height: 1.25;
}

.award-card__issuer {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.award-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.award-source {
  display: inline-block;
  margin-top: 18px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.award-source:hover {
  color: var(--ink);
}

.award-archive {
  max-width: 760px;
  margin: 0 auto;
}

.award-archive .timeline-list li {
  grid-template-columns: 84px minmax(0, 1fr);
}

@media (max-width: 520px) {
  .award-archive .timeline-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }
}


/* --- Nav: "Despre" dropdown (desktop) + grouped mobile menu -------------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: inherit;
  cursor: pointer;
}

.nav-dropdown__trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-dropdown__trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

.nav-dropdown__trigger.is-current {
  color: var(--coral-dark);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -14px;
  z-index: 60;
  display: none;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: grid;
}

.desktop-nav .nav-dropdown__menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.desktop-nav .nav-dropdown__menu a::after {
  display: none;
}

.desktop-nav .nav-dropdown__menu a:hover,
.desktop-nav .nav-dropdown__menu a:focus-visible {
  background: var(--teal-soft);
  outline: none;
}

.desktop-nav .nav-dropdown__menu a.is-current {
  color: var(--coral-dark);
  font-weight: 600;
}

.mobile-menu__label {
  display: none;
}

@media (max-width: 1020px) {
  .mobile-menu {
    overflow-y: auto;
    max-height: calc(100dvh - 100px);
  }

  .mobile-menu__label {
    display: block;
    margin: 30px 0 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu a.mobile-menu__secondary {
    min-height: 50px;
    padding: 10px 4px;
    font-size: 21px;
  }
}

/* Hero: plain paper, no grid pattern (2026-09-08). */
.hero {
  background: var(--paper);
}

/* Home: professional-profile CTA reuses the research layout, minus the ribbon. */
.research-feature--profile {
  min-height: 0;
  justify-content: center;
}

/* Mobile menu fix (2026-09-08): `body.menu-open{overflow:hidden}` turned <body>
   into its own scroll container (html has overflow-x: clip, so it no longer
   propagated to the viewport) → the sticky header unstuck and the menu, whose
   containing block is the header (backdrop-filter), scrolled off-screen.
   Lock scroll on <html> instead and hang the menu directly under the header. */
html.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow-x: clip; /* not hidden: hidden on one axis forces the other to auto → body becomes a scroll container → sticky header unsticks */
  overflow-y: visible;
}

@media (max-width: 1020px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: auto;
    min-height: 0;
    height: var(--menu-h, calc(100dvh - 68px));
    max-height: none;
    overflow-y: auto;
  }
}

/* Despre without the second portrait: text left, her quote as a pull-quote right. */
@media (min-width: 761px) {
  .about-grid--quote {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
    gap: clamp(40px, 6vw, 96px);
  }
}

.about-grid--quote .signature-card {
  margin-top: 0;
}

.publication-list--four {
  grid-template-rows: repeat(4, 1fr);
}

/* Cifre on phones: `1fr` = minmax(auto, 1fr), so "160.000" at 13vw pushed the
   right column ~35px past the viewport (html clips it, so no side-scroll — the
   numbers were simply cut off). Columns may now shrink, and the numerals are
   sized to fit a 375px cell: (339 − 2×16) / 2 ≈ 137px ≥ "160.000" at 9.5vw. */
@media (max-width: 760px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid > div {
    min-width: 0;
    padding: 22px 16px;
  }

  .metrics-grid dt {
    font-size: clamp(30px, 9.5vw, 56px);
  }
}

@media (max-width: 760px) {
  /* Tiny content, big cell: let the number and its label sit together. */
  .metrics-grid > div {
    min-height: 0;
    justify-content: flex-start;
    gap: 10px;
  }
}
