:root {
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "General Sans", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --navy: #2e4157;
  --navy-deep: #202e3d;
  --navy-soft: #3a5468;
  --teal: #577c8d;
  --teal-bright: #46687a;
  --teal-pale: #e5ebee;
  --teal-wash: #f7f2ed;
  --ink: #2a3947;
  --body: #555b5c;
  --line: #e6ded4;
  --white: #ffffff;
  --success: #9cb7b0;
  --shadow: 0 24px 70px rgba(46, 65, 87, 0.14);
  --radius: 20px;
  --background: #ffffff;
  --foreground: #2a3947;
  --card: #ffffff;
  --card-foreground: #2a3947;
  --primary: #577c8d;
  --primary-foreground: #ffffff;
  --secondary: #e5ebee;
  --secondary-foreground: #2a3947;
  --muted: #f2ede6;
  --muted-foreground: #6b716f;
  --accent: #e5ebee;
  --accent-foreground: #3a5468;
  --destructive: #dc2626;
  --border: #e6ded4;
  --input: #ddd4c8;
  --ring: #577c8d;
  --green: #9cb7b0;
  --green-pale: #eaf0ee;
  --green-deep: #6e8f86;
  --cyan: #3a5468;
  --cyan-pale: #e5ebee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, .brand strong {
  font-family: var(--font-display);
}

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

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

.is-hidden {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

.button,
.header-booking,
.primary-button,
.outline-button,
.ghost-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.button svg,
.header-booking svg,
.primary-button svg,
.outline-button svg,
.ghost-button svg,
.light-button svg {
  width: 16px;
  height: 16px;
}

.site-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(46, 65, 87, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(46, 65, 87, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50% 50% 45% 45%;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(87, 124, 141, 0.3);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.55px;
}

.brand strong span {
  color: var(--teal);
}

.brand small {
  color: #817e75;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #524f49;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal);
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.header-phone > svg {
  color: var(--teal);
}

.header-phone span {
  display: flex;
  flex-direction: column;
}

.header-phone small {
  color: #7b7870;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.header-booking {
  height: 42px !important;
  padding: 0 17px !important;
  border-radius: 12px !important;
  background: var(--teal) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(87, 124, 141, 0.22);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
}

.mobile-nav {
  display: none;
}

.hero,
.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(46, 65, 87, 0.96), rgba(32, 40, 50, 1)),
    var(--navy);
  color: #fff;
}

.hero {
  min-height: 690px;
  padding: 92px 0 120px;
}

.hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.65px, transparent 0.65px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, #000, transparent 50%, #000);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb-one {
  width: 460px;
  height: 460px;
  top: -260px;
  right: -80px;
  background: radial-gradient(circle, rgba(87, 124, 141, 0.32), rgba(87, 124, 141, 0));
}

.hero-orb-two {
  width: 320px;
  height: 320px;
  left: 35%;
  bottom: -250px;
  background: radial-gradient(circle, rgba(156, 183, 176, 0.16), rgba(156, 183, 176, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #6e8f86;
}

.hero-copy h1,
.inner-hero h1 {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 720;
  letter-spacing: -1.8px;
  line-height: 1.15;
}

.hero-copy h1 em,
.inner-hero h1 em {
  color: #c3d2cc;
  font-style: normal;
}

.hero-copy > p:not(.eyebrow),
.inner-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

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

.primary-button,
.outline-button,
.ghost-button,
.light-button {
  min-height: 48px !important;
  padding: 0 20px !important;
  border-radius: 13px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.primary-button {
  border: 0 !important;
  background: var(--teal) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(87, 124, 141, 0.26) !important;
}

.primary-button:hover {
  background: var(--teal-bright) !important;
  box-shadow: 0 18px 38px rgba(87, 124, 141, 0.34) !important;
  transform: translateY(-2px);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px);
}

.outline-button {
  border: 1px solid #ddd6cc !important;
  background: #fff !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 112px;
}

.hero-stats strong {
  color: #fff;
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.8px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px 34px 34px 92px;
  background: #2e4157;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(46, 65, 87, 0.06), rgba(32, 40, 50, 0.3));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(30, 25, 20, 0.24);
  backdrop-filter: blur(12px);
}

.floating-review {
  top: 36px;
  right: -38px;
  min-width: 190px;
  padding: 15px;
}

.floating-review strong,
.floating-review small {
  display: block;
}

.floating-review > svg {
  width: 22px;
  color: var(--teal);
}

.floating-review strong {
  margin-top: 8px;
  font-size: 12px;
}

.floating-review small {
  color: #74716b;
  font-size: 9px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 7px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #cfe0da;
  color: #6e8f86;
}

.floating-doctor {
  left: -32px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
}

.doctor-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
}

.doctor-dot svg {
  width: 19px;
}

.floating-doctor div {
  display: flex;
  flex-direction: column;
}

.floating-doctor strong {
  font-size: 11px;
}

.floating-doctor small {
  color: #726f69;
  font-size: 8px;
}

.info-strip {
  position: relative;
  z-index: 10;
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.86fr;
  align-items: stretch;
  margin-top: -50px;
  overflow: hidden;
  border: 1px solid rgba(46, 65, 87, 0.09);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-strip > a:not(.info-strip-cta),
.info-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.info-strip > * > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-pale);
  color: var(--teal);
}

.info-strip > * > span svg {
  width: 19px;
}

.info-strip > * > div {
  display: flex;
  flex-direction: column;
}

.info-strip small {
  color: #7c7a72;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.info-strip strong {
  color: var(--navy);
  font-size: 14px;
}

.info-strip-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  transition: filter 180ms ease;
}

.info-strip-cta:hover {
  filter: brightness(1.06);
}

.info-strip-cta svg {
  width: 17px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 84px;
}

.image-composition {
  position: relative;
}

.about-image {
  height: 540px;
}

.about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px 110px 34px 34px;
  box-shadow: 0 30px 70px rgba(46, 65, 87, 0.13);
}

.experience-badge {
  position: absolute;
  right: -22px;
  bottom: 30px;
  width: 150px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 22px 22px 22px 46px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 18px 42px rgba(87, 124, 141, 0.3);
}

.experience-badge strong {
  font-size: 36px;
  letter-spacing: -1.6px;
  line-height: 1;
}

.experience-badge span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.faq-column h2,
.form-card h2,
.treatment-faq-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 720;
  letter-spacing: -2px;
  line-height: 1.12;
}

.section-copy > p:not(.eyebrow),
.section-heading > p,
.centered-heading > p,
.treatment-faq-grid > div > p {
  margin: 22px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.8;
}

.section-copy > p + p {
  margin-top: 12px !important;
}

.metric-row {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.metric-row div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-row strong {
  color: var(--teal);
  font-size: 28px;
  letter-spacing: -1px;
}

.metric-row span {
  color: #74716b;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.5;
  text-transform: uppercase;
}

.inline-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.inline-profile .primary-button {
  margin-right: 10px;
}

.inline-profile img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.inline-profile > span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.inline-profile strong {
  color: var(--ink);
  font-size: 11px;
}

.inline-profile small {
  color: #7c7971;
  font-size: 8px;
}

.services-section,
.content-section {
  background: var(--teal-wash);
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.heading-row > div {
  max-width: 760px;
}

.heading-row .outline-button {
  flex-shrink: 0;
}

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

.service-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #e6ded4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(46, 65, 87, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 55px rgba(46, 65, 87, 0.12);
  transform: translateY(-7px);
}

.service-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-title-row > span,
.service-title-row > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.service-title-row > span {
  background: var(--teal-pale);
  color: var(--teal);
}

.service-title-row > span svg,
.service-title-row > a svg {
  width: 18px;
}

.service-title-row > a {
  border: 1px solid var(--line);
  color: #74716c;
  transition: border-color 180ms ease, color 180ms ease;
}

.service-title-row > a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.service-card h3,
.post-card h3,
.treatment-card h3,
.process-grid h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.55px;
  line-height: 1.3;
}

.service-card > p,
.treatment-card > p,
.process-grid article > p {
  margin: 10px 0 22px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

.service-card > img {
  width: 100%;
  height: 190px;
  margin-top: auto;
  object-fit: cover;
  border-radius: 15px;
}

.wellness-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
}

.check-list li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 9px;
  background: var(--green-pale);
  color: var(--green-deep);
}

.check-list li > span svg {
  width: 14px;
  stroke-width: 3;
}

.check-list li > div {
  display: flex;
  flex-direction: column;
}

.check-list strong {
  color: var(--ink);
  font-size: 14px;
}

.check-list p {
  margin: 3px 0 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.6;
}

.wellness-collage {
  position: relative;
  min-height: 590px;
}

.collage-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 34px 34px 86px 34px;
  box-shadow: 0 25px 70px rgba(46, 65, 87, 0.15);
}

.collage-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 52%;
  object-fit: cover;
  border: 9px solid #fff;
  border-radius: 30px;
  box-shadow: 0 25px 55px rgba(46, 65, 87, 0.16);
}

.patient-chip {
  position: absolute;
  right: 18px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.patient-chip > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green-pale);
  color: var(--green-deep);
}

.patient-chip svg {
  width: 18px;
}

.patient-chip > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.patient-chip strong {
  font-size: 13px;
}

.patient-chip small {
  color: #75726c;
  font-size: 8px;
}

.trust-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(87, 124, 141, 0.34), transparent 28%),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.05) 50%, transparent 50.2%);
}

.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 0.8fr 0.95fr;
  align-items: end;
  min-height: 610px;
  gap: 46px;
}

.trust-copy {
  align-self: center;
  padding: 88px 0;
}

.trust-copy h2,
.testimonials-heading h2,
.light-heading h2,
.treatment-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 720;
  letter-spacing: -2px;
  line-height: 1.12;
}

.trust-copy > p:not(.eyebrow),
.treatment-cta p {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.doctor-portrait {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: 180px 180px 0 0;
  filter: saturate(0.82) contrast(1.04);
}

.portrait-glow {
  position: absolute;
  z-index: 1;
  bottom: -40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 124, 141, 0.5), rgba(87, 124, 141, 0));
  filter: blur(12px);
}

.trust-benefits {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 70px 0;
}

.trust-benefits > div {
  display: flex;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-benefits > div:last-child {
  border: 0;
}

.trust-benefits span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(87, 124, 141, 0.16);
  color: #6e8f86;
}

.trust-benefits span svg {
  width: 19px;
}

.trust-benefits strong {
  display: block;
  font-size: 13px;
}

.trust-benefits p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

.journey-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.journey-collage {
  position: relative;
  height: 520px;
}

.journey-collage img {
  position: absolute;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: 0 18px 48px rgba(46, 65, 87, 0.14);
}

.journey-a {
  top: 0;
  left: 0;
  width: 53%;
  height: 47%;
  border-radius: 30px 30px 18px 30px;
}

.journey-b {
  top: 50px;
  right: 0;
  width: 48%;
  height: 58%;
  border-radius: 20px 44px 28px 20px;
}

.journey-c {
  left: 12%;
  bottom: 0;
  width: 52%;
  height: 48%;
  border-radius: 28px 20px 34px 70px;
}

.journey-mini {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 24px;
  display: grid;
  grid-template-columns: 38px auto;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.journey-mini > span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  align-self: center;
  margin-right: 9px;
  border-radius: 10px;
  background: var(--green-pale);
  color: var(--green-deep);
}

.journey-mini svg {
  width: 17px;
}

.journey-mini strong {
  font-size: 13px;
  line-height: 1.4;
}

.journey-mini small {
  color: #75726c;
  font-size: 8px;
}

.journey-accordion,
.faq-accordion {
  margin-top: 26px;
}

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

.accordion details:last-child {
  border-bottom: 0;
}

.accordion summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 18px;
  font-weight: 500;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion .accordion-content {
  padding: 0 45px 20px 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}

.journey-accordion summary b {
  margin-right: 14px;
  color: var(--teal);
  font-size: 11px;
}

.journey-accordion [data-slot="accordion-item"],
.faq-accordion [data-slot="accordion-item"] {
  border-color: var(--line);
}

.journey-accordion [data-slot="accordion-trigger"],
.faq-accordion [data-slot="accordion-trigger"] {
  min-height: 70px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.journey-accordion [data-slot="accordion-trigger"] b {
  margin-right: 14px;
  color: var(--teal);
  font-size: 11px;
}

.journey-accordion [data-slot="accordion-content"],
.faq-accordion [data-slot="accordion-content"] {
  padding-right: 45px;
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}

.testimonials-section {
  position: relative;
  padding: 96px 0 106px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -300px;
  bottom: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 124, 141, 0.32), rgba(87, 124, 141, 0));
}

.testimonials-wrap {
  position: relative;
}

.testimonials-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.testimonials-heading > div {
  max-width: 680px;
}

.testimonial-card {
  position: relative;
  max-width: 880px;
  min-height: 350px;
  margin: 54px auto 0;
  padding: 62px 74px 40px;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.quote-icon {
  position: absolute;
  top: 36px;
  left: 45px;
  width: 42px;
  height: 42px;
  color: #c3d2cc;
  fill: #e5ebee;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #ffbf3f;
}

.stars svg {
  width: 15px;
}

.testimonial-card blockquote {
  max-width: 710px;
  margin: 22px auto 26px;
  color: #2a3947;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.65;
}

.testimonial-person {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.testimonial-person img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-person > span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial-person strong {
  font-size: 11px;
}

.testimonial-person small {
  color: #7a776f;
  font-size: 8px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ddd6cc;
  cursor: pointer;
}

.testimonial-dots button.active {
  width: 21px;
  border-radius: 5px;
  background: var(--teal);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.result-card {
  position: relative;
  height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e6ded4;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transform: scale(1.18);
}

.result-before img {
  filter: grayscale(0.12) saturate(0.9) brightness(0.93) sepia(0.08);
  transform: scale(1.14) translateX(-2%);
}

.result-after img {
  filter: saturate(1.14) brightness(1.05);
}

.result-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(32, 40, 50, 0.75));
}

.result-card figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.result-card figcaption span {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.results-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #7b7971;
  font-size: 10px;
  text-align: center;
}

.results-note svg {
  width: 15px;
  color: var(--green-deep);
}

.booking-section {
  background: #faf7f2;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 76px;
}

.faq-column h2,
.form-card h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.direct-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.direct-contact > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--teal-pale);
  color: var(--teal);
}

.direct-contact svg {
  width: 18px;
}

.direct-contact div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.direct-contact small {
  color: #75726c;
  font-size: 9px;
}

.direct-contact a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
}

.form-card {
  padding: 42px;
  border: 1px solid #e6ded4;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(46, 65, 87, 0.11);
}

.form-card > p:not(.eyebrow) {
  margin: 13px 0 26px;
  color: var(--body);
  font-size: 13px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking-form label > span:first-child {
  color: #4a4f4f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.25px;
}

.booking-form input:not([type="checkbox"]),
.booking-form textarea,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ded7cd;
  border-radius: 12px;
  background: #faf7f2;
  color: var(--ink);
  font-size: 12px;
  box-shadow: none;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:not([type="checkbox"]) {
  padding: 0 14px;
}

.booking-form select {
  padding: 0 13px;
}

.booking-form textarea {
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(87, 124, 141, 0.12);
}

.consent-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 9px !important;
  color: #726f68;
  font-size: 9px;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 2px;
  accent-color: var(--teal);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.booking-success {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-success > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf0ee;
  color: #6e8f86;
}

.booking-success > span svg {
  width: 30px;
}

.booking-success h3 {
  margin: 20px 0 8px;
  font-size: 25px;
}

.booking-success p {
  max-width: 390px;
  margin: 0 0 24px;
  color: var(--body);
  font-size: 13px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid #e6ded4;
  border-radius: 20px;
  background: #fff;
  padding: 13px 13px 22px;
}

.post-image {
  position: relative;
  height: 205px;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.post-card > small {
  display: block;
  margin: 19px 8px 0;
  color: #837f77;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1px;
}

.post-card h3 {
  margin: 8px 8px 0;
  font-size: 17px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 17px 8px 0;
  color: var(--teal);
  font-size: 10px;
  font-weight: 750;
}

.read-more svg {
  width: 14px;
}

.site-footer {
  padding: 74px 0 0;
  background: var(--navy-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.72fr 0.95fr 1.45fr;
  gap: 60px;
  padding-bottom: 58px;
}

.brand-light strong {
  color: #fff;
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.75;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3d2cc;
  font-size: 11px;
  font-weight: 700;
}

.instagram-link svg {
  width: 16px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 2px 0 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: #fff;
}

.footer-contact p,
.footer-contact > a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.65;
}

.footer-contact svg {
  width: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #6e8f86;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 18px;
}

/* Treatments page */

.inner-hero {
  padding: 88px 0 96px;
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 74px;
}

.inner-hero h1 {
  font-size: clamp(40px, 4vw, 60px);
}

.inner-hero-visual {
  position: relative;
  height: 500px;
}

.inner-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px 36px 96px 36px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.inner-hero-chip {
  left: -28px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
}

.inner-hero-chip > svg {
  width: 28px;
  color: var(--teal);
}

.inner-hero-chip div {
  display: flex;
  flex-direction: column;
}

.inner-hero-chip strong {
  font-size: 11px;
}

.inner-hero-chip small {
  color: #75726c;
  font-size: 8px;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

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

.centered-heading > p {
  max-width: 650px;
  margin-inline: auto;
}

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

.treatment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  scroll-margin-top: 110px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.treatment-card h3 {
  font-size: 24px;
}

.treatment-card > p {
  font-size: 15px;
  line-height: 1.75;
}

.treatment-card:hover {
  border-color: #d6e0da;
  box-shadow: 0 24px 58px rgba(46, 65, 87, 0.12);
  transform: translateY(-6px);
}

.treatment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.treatment-card-top > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--teal);
}

.treatment-card-top svg {
  width: 21px;
}

.treatment-card-top small {
  color: #ddd4c8;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
}

.treatment-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.treatment-card li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 7px;
  background: #f7f2ed;
  color: #555b5c;
  font-size: 11.5px;
  font-weight: 700;
}

.treatment-card li svg {
  width: 13px;
}

.treatment-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--teal);
  font-size: 13.5px;
  font-weight: 750;
}

.treatment-card > a svg {
  width: 16px;
}

.feature-treatment {
  background: var(--teal-wash);
}

.feature-treatment-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 88px;
}

.feature-treatment-images {
  position: relative;
  min-height: 590px;
}

.feature-main {
  position: absolute;
  inset: 0 11% 13% 0;
  width: 89%;
  height: 87%;
  object-fit: cover;
  border-radius: 36px 94px 36px 36px;
  box-shadow: var(--shadow);
}

.feature-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 40%;
  object-fit: cover;
  border: 8px solid var(--teal-wash);
  border-radius: 25px;
  box-shadow: 0 22px 55px rgba(46, 65, 87, 0.17);
}

.feature-badge {
  position: absolute;
  left: -18px;
  bottom: 42px;
  display: grid;
  grid-template-columns: 38px auto;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-badge > svg {
  grid-row: span 2;
  width: 24px;
  align-self: center;
  color: var(--teal);
}

.feature-badge strong {
  font-size: 11px;
  line-height: 1.4;
}

.feature-badge small {
  color: #75726c;
  font-size: 8px;
}

.compact-checks {
  margin-bottom: 30px;
}

.care-process {
  padding: 105px 0;
  background: var(--navy-deep);
  color: #fff;
}

.light-heading {
  margin-bottom: 44px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.process-grid article > span {
  position: absolute;
  top: 23px;
  right: 22px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 24px;
  font-weight: 800;
}

.process-grid article > div {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(87, 124, 141, 0.16);
  color: #c3d2cc;
}

.process-grid article > div svg {
  width: 20px;
}

.process-grid h3 {
  color: #fff;
  font-size: 16px;
}

.process-grid article > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.treatment-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 100px;
}

.treatment-faq-grid h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.treatment-faq-grid .outline-button {
  margin-top: 25px;
}

.treatments-faq {
  margin-top: 0;
}

.treatment-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--teal), #3a5468);
  color: #fff;
}

.treatment-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.treatment-cta-inner > div {
  max-width: 740px;
}

.treatment-cta h2 {
  font-size: clamp(32px, 3vw, 44px);
}

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

.light-button {
  flex-shrink: 0;
  border: 0 !important;
  background: #fff !important;
  color: var(--teal) !important;
  box-shadow: 0 16px 35px rgba(46, 65, 87, 0.2) !important;
}

.light-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid,
  .inner-hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .split-grid,
  .feature-treatment-grid {
    gap: 56px;
  }

  .trust-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .desktop-nav,
  .header-booking {
    display: none !important;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px 25px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(30, 25, 20, 0.14);
  }

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

  .mobile-nav > a {
    padding: 11px 8px;
    border-bottom: 1px solid #ede6dc;
    color: var(--ink);
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-phone {
    display: flex !important;
    align-items: center;
    gap: 9px;
    margin-top: 5px;
    color: var(--teal) !important;
  }

  .hero {
    padding: 76px 0 110px;
  }

  .hero-grid,
  .inner-hero-grid,
  .split-grid,
  .booking-grid,
  .feature-treatment-grid,
  .treatment-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .inner-hero h1 {
    max-width: 720px;
  }

  .hero-copy > p:not(.eyebrow),
  .inner-hero-grid > div:first-child > p:not(.eyebrow) {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-wrap {
    inset: 0 6% 0 6%;
  }

  .floating-doctor {
    left: 2%;
  }

  .floating-review {
    right: 2%;
  }

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

  .info-strip-cta {
    grid-column: span 2;
    min-height: 66px;
  }

  .about-image,
  .wellness-collage,
  .journey-collage,
  .feature-treatment-images {
    max-width: 660px;
    width: 100%;
    margin-inline: auto;
  }

  .about-image {
    order: 2;
  }

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

  .trust-grid {
    grid-template-columns: 1fr 0.9fr;
    min-height: unset;
  }

  .trust-copy {
    padding: 75px 0 20px;
  }

  .doctor-portrait {
    grid-row: span 2;
  }

  .trust-benefits {
    padding: 20px 0 75px;
  }

  .testimonials-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card {
    padding-inline: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.9fr;
  }

  .footer-contact {
    grid-column: span 3;
  }

  .inner-hero-visual {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .site-container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-nav {
    top: 72px;
  }

  .hero,
  .inner-hero {
    padding: 62px 0 88px;
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 14px;
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-stats span {
    font-size: 7px;
  }

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

  .hero-actions > * {
    width: 100%;
  }

  .hero-visual,
  .inner-hero-visual {
    min-height: 400px;
    height: 400px;
  }

  .hero-image-wrap {
    inset: 0;
    border-radius: 26px 26px 26px 64px;
  }

  .floating-review {
    top: 18px;
    right: -7px;
    min-width: 160px;
  }

  .floating-doctor {
    left: -7px;
    bottom: 18px;
  }

  .info-strip {
    grid-template-columns: 1fr;
    margin-top: -38px;
  }

  .info-strip > a:not(.info-strip-cta),
  .info-strip > div {
    padding: 19px 21px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-strip-cta {
    grid-column: auto;
  }

  .section-copy h2,
  .section-heading h2,
  .faq-column h2,
  .form-card h2,
  .treatment-faq-grid h2,
  .trust-copy h2,
  .testimonials-heading h2,
  .treatment-cta h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }

  .about-image,
  .wellness-collage,
  .journey-collage,
  .feature-treatment-images {
    height: 430px;
    min-height: 430px;
  }

  .about-image > img {
    border-radius: 26px 70px 26px 26px;
  }

  .experience-badge {
    right: -8px;
    width: 128px;
    min-height: 110px;
  }

  .metric-row {
    gap: 20px;
  }

  .metric-row strong {
    font-size: 24px;
  }

  .inline-profile {
    flex-wrap: wrap;
  }

  .inline-profile .primary-button {
    width: 100%;
    margin: 0 0 7px;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
  }

  .service-grid,
  .posts-grid,
  .treatment-grid,
  .process-grid,
  .results-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .treatment-grid {
    gap: 0;
  }

  .treatment-card {
    position: sticky;
    top: 74px;
    box-shadow: 0 -18px 45px rgba(46, 65, 87, 0.18);
  }

  .treatment-card:nth-child(1) { z-index: 1; }
  .treatment-card:nth-child(2) { z-index: 2; }
  .treatment-card:nth-child(3) { z-index: 3; }
  .treatment-card:nth-child(4) { z-index: 4; }
  .treatment-card:nth-child(5) { z-index: 5; }
  .treatment-card:nth-child(6) { z-index: 6; }

  .service-card {
    min-height: 430px;
  }

  .collage-main {
    width: 84%;
  }

  .collage-small {
    width: 49%;
    height: 46%;
  }

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

  .trust-copy {
    padding: 68px 0 0;
  }

  .doctor-portrait {
    grid-row: auto;
    height: 440px;
  }

  .doctor-portrait img {
    height: 100%;
    width: min(100%, 390px);
  }

  .trust-benefits {
    padding: 25px 0 68px;
  }

  .journey-b {
    right: -4px;
  }

  .journey-mini {
    right: 0;
  }

  .testimonials-section {
    padding: 76px 0 82px;
  }

  .testimonial-card {
    min-height: 390px;
    padding: 70px 24px 34px;
  }

  .quote-icon {
    top: 26px;
    left: 28px;
  }

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

  .result-card {
    height: 300px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .inner-hero-visual > img {
    border-radius: 26px 26px 70px 26px;
  }

  .inner-hero-chip {
    left: -7px;
    bottom: 18px;
  }

  .centered-heading {
    text-align: left;
  }

  .centered-heading .eyebrow {
    justify-content: flex-start;
  }

  .feature-main {
    inset: 0 0 15% 0;
    width: 100%;
    height: 85%;
  }

  .feature-detail {
    width: 48%;
  }

  .feature-badge {
    left: -7px;
    bottom: 20px;
  }

  .treatment-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .light-button {
    width: 100%;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

.site-header {
  transition: box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(46, 65, 87, 0.1);
}

.hero-orb {
  will-change: transform;
}

.hero-stats strong,
.metric-row strong,
.experience-badge strong,
.patient-chip strong,
.journey-mini strong {
  font-variant-numeric: tabular-nums;
}

/* Artigo */
.article-hero { padding: 48px 0 0; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-size: 12px; color: var(--body); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; color: var(--teal); }
.article-hero h1 { max-width: 760px; margin: 0 0 20px; font-size: clamp(32px, 4vw, 48px); font-weight: 780; letter-spacing: -1.2px; line-height: 1.12; color: var(--ink); }
.article-lead { max-width: 680px; font-size: 17px; line-height: 1.7; color: var(--body); }
.article-cover { margin: 40px 0 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: 420px; object-fit: cover; }
.article-body { width: min(760px, 100% - 48px); margin-inline: auto; padding: 64px 0 40px; font-size: 16px; line-height: 1.8; color: var(--body); }
.article-body h2 { margin: 44px 0 16px; font-size: 26px; font-weight: 780; letter-spacing: -.6px; color: var(--ink); }
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin: 0 0 20px; }
.article-body ul { margin: 0 0 24px; padding: 0; list-style: none; display: grid; gap: 12px; }
.article-body ul li { display: flex; align-items: flex-start; gap: 10px; }
.article-body ul li i { flex-shrink: 0; margin-top: 3px; color: var(--teal); width: 18px; height: 18px; }
.article-cta-box { margin: 40px 0; padding: 28px; border-radius: var(--radius); background: var(--teal-pale); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.article-cta-box p { margin: 0; font-weight: 700; color: var(--ink); max-width: 420px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 13px; font-weight: 700; color: var(--body); }
.article-back:hover { color: var(--teal); }

@media (max-width: 680px) {
  .article-cover img { height: 260px; }
  .article-cta-box { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
