:root {
  --ink: #032126;
  --blue: #1253a3;
  --blue-dark: #0f468d;
  --muted: rgba(3, 33, 38, 0.5);
  --soft-muted: rgba(3, 33, 38, 0.3);
  --line: rgba(3, 33, 38, 0.1);
  --surface: #ffffff;
  --surface-alt: #f4f7f8;
  --surface-tint: #ccdbff;
  --section-tint: #cce8ff;
  --treat-background: url("https://www.figma.com/api/mcp/asset/fd7c8a18-afff-4a0b-abe4-3f5d3ac4f19f");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 120px;
}

.wrap--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

.section-heading {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.65px;
}

.section-heading--compact {
  max-width: none;
  font-size: 46px;
  letter-spacing: -1.38px;
}

.section-heading--center {
  max-width: none;
  text-align: center;
}

.section-intro {
  width: min(723px, 100%);
  margin: 0 auto 64px;
  display: grid;
  gap: 24px;
  text-align: center;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 20px 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  background: var(--blue);
  color: #eeebff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pill-button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.pill-button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 4px rgba(171, 171, 171, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 76px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 147px;
  height: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

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

.header-cta {
  flex: 0 0 auto;
  gap: 8px;
}

.header-cta i {
  font-size: 17px;
}

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

.hamburger {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: url('assets/BG.png') center / cover no-repeat;
}



.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 495px 1fr;
  gap: 23px;
  min-height: 745px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-top: 196px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 495px;
  color: var(--ink);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.65px;
}

.hero-copy p {
  margin: 20px 0 48px;
  max-width: 417px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-figure {
  width: 92%;
  max-width: 630px;
  height: auto;
  object-fit: contain;
}

.about-section {
  padding: 100px 0 110px;
  border-radius: 40px 40px 0 0;
  background: var(--surface);
  position: relative;
  margin-top: -40px;
  z-index: 1;
}

.split-layout {
  display: grid;
  grid-template-columns: 458px 485px;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.about-visual {
  justify-self: end;
}

.about-visual img {
  width: 458px;
}

.section-copy {
  display: grid;
  gap: 30px;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

.check-list img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.expert-section {
  padding: 49px 0 120px;
}

.expert-grid {
  display: grid;
  grid-template-columns: 566px 531px;
  justify-content: space-between;
  align-items: center;
  gap: 72px;
}

.expert-visual img {
  width: 566px;
}

.expert-copy {
  gap: 24px;
}

.expert-heading {
  display: grid;
  gap: 8px;
}

.expert-role,
.expert-description,
.expert-subtitle {
  margin: 0;
}

.expert-role,
.expert-description,
.expert-subtitle {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

.expert-divider {
  width: 509px;
  height: 1px;
  background: rgba(3, 33, 38, 0.12);
}

.team-section {
  padding-bottom: 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  gap: 64px;
}

.team-card {
  display: grid;
  justify-items: center;
  gap: 40px;
}

.team-card img {
  width: 400px;
}

.team-card h3,
.team-card p,
.team-card a {
  margin: 0;
  text-align: center;
}

.team-card h3 {
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.96px;
}

.team-card p {
  max-width: 377px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

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

.team-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.treat-section {
  position: relative;
  overflow: hidden;
  background: var(--section-tint);
}

.treat-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.22) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.22) 100%);
}

.treat-bg-image.is-visible {
  opacity: 1;
}

.treat-bg-image.is-fading-out {
  opacity: 0;
}

.treat-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-tint);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.treat-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 193px 531px;
  column-gap: 348px;
  min-height: 858px;
  padding-top: 100px;
  padding-bottom: 90px;
  padding-left: 169px;
}

.treat-menu {
  position: relative;
  display: grid;
  gap: 39px;
  align-content: start;
}

.treat-menu::before {
  content: "";
  position: absolute;
  top: -39px;
  left: -44px;
  width: 2px;
  height: 655px;
  border-radius: 10px;
  background: rgba(18, 134, 163, 0.2);
}

.treat-link {
  position: relative;
  width: max-content;
  padding: 0;
  color: var(--soft-muted);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.66px;
  text-align: left;
  transition: color 0.3s ease;
}

.treat-link:focus-visible {
  outline: 2px solid rgba(18, 83, 163, 0.28);
  outline-offset: 6px;
  border-radius: 18px;
}

.treat-link span {
  display: none;
  margin-left: 4px;
}

.treat-link.is-active {
  color: var(--blue);
}

.treat-link.is-active span {
  display: inline;
}

.treat-link.is-active::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -47px;
  width: 8px;
  height: 45px;
  border-radius: 3px;
  background: var(--blue);
}

.treat-panel {
  align-self: center;
  display: grid;
  gap: 24px;
}

.treat-panel.is-changing {
  animation: treatPanelFade 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes treatPanelFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.treat-icon {
  color: var(--blue);
  font-size: 42px;
}

.treat-panel h2,
.treat-panel p {
  margin: 0;
}

.treat-panel h2 {
  width: 531px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.38px;
}

.treat-panel p {
  width: 531px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}


/* Treatment panel read more link (matches blog card style) */
.treat-panel .blog-card__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.treat-panel .blog-card__link img {
  width: 20px;
  height: 20px;
}
.treat-panel .blog-card__link:hover {
  opacity: 0.65;
}

.beliefs-section {
  padding: 90px 0 90px;
}

.beliefs-head {
  display: grid;
  grid-template-columns: 549px 417px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 48px;
}

.beliefs-head .section-label {
  margin-bottom: 24px;
}

.beliefs-summary {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

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

.belief-card {
  display: grid;
  gap: 16px;
}

.belief-card img {
  width: 100%;
  aspect-ratio: 347 / 200;
  object-fit: cover;
  border-radius: 16px;
}

.belief-card h3,
.belief-card p {
  margin: 0;
}

.belief-card h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.belief-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonials-section {
  padding: 48px 0 90px;
}

.carousel {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 45px;
}

.carousel-window {
  overflow: hidden;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(3, 33, 38, 0.12);
  border-radius: 999px;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.testimonial-track,
.video-track {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar,
.video-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  grid-auto-columns: 340px;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(3, 33, 38, 0.09);
  border-radius: 24px;
  background: #f8f9f9;
  overflow: hidden;
}

.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.testimonial-body strong,
.testimonial-body p,
.testimonial-rating {
  margin: 0;
}

.testimonial-body strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-body p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2a23c;
  font-size: 14px;
  font-weight: 700;
}

.appointment-section {
  padding: 80px 0 80px;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 593px;
  justify-content: space-between;
  gap: 84px;
  align-items: start;
}

.appointment-copy {
  max-width: 464px;
}

.appointment-copy .section-label {
  margin-bottom: 24px;
}

.appointment-copy .section-heading {
  max-width: 424px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(3, 33, 38, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(18, 83, 163, 0.09);
  color: var(--blue);
  font-size: 18px;
}

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

.contact-card__content strong,
.contact-card__content span {
  display: block;
}

.contact-card__content strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.contact-card__content span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.appointment-form {
  display: grid;
  gap: 18px;
}

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

.appointment-form label,
.form-field {
  display: grid;
  gap: 10px;
}

.appointment-form label > span,
.form-field > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(3, 33, 38, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(3, 33, 38, 0.36);
}

.appointment-form textarea {
  min-height: 148px;
  resize: vertical;
}

.upload-field {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 18px;
  border: 1.5px dashed rgba(18, 83, 163, 0.35);
  border-radius: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.upload-field input {
  display: none;
}

.upload-field span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.appointment-submit {
  width: 100%;
}

.video-section {
  padding: 24px 0 78px;
}

.carousel--videos {
  gap: 45px;
}

.video-track {
  grid-auto-columns: 331px;
  gap: 48px;
}

.video-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.video-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.video-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

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

.video-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.4;
  pointer-events: none;
}

.video-card img {
  width: 100%;
  aspect-ratio: 331 / 183;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.site-footer {
  background: rgba(204, 232, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 464px repeat(3, minmax(0, 1fr));
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 44px;
}

.footer-logo {
  width: 147px;
  margin-bottom: 26px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 42px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 83, 163, 0.22);
  border-radius: 999px;
  color: var(--blue);
  font-size: 16px;
}

.footer-locations {
  display: grid;
  gap: 12px;
}

.footer-locations p,
.footer-column h3,
.footer-column a,
.footer-bottom p {
  margin: 0;
}

.footer-locations p,
.footer-column h3 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-locations a,
.footer-column a {
  color: rgba(3, 33, 38, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-bottom {
  border-top: 1px solid rgba(3, 33, 38, 0.08);
}

.footer-bottom .wrap {
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-bottom p {
  color: rgba(3, 33, 38, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Section-specific slower reveals */
.hero-section .reveal,
.hero-section .reveal-left,
.hero-section .reveal-right {
  transition-duration: 1.8s;
}

.about-section .reveal-left {
  transition-duration: 1.6s;
}

.treat-section .reveal-left,
.treat-section .reveal-right {
  transition-duration: 1.6s;
}

.video-section .reveal {
  transition-duration: 1.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1280px) {
  .wrap {
    padding: 0 72px;
  }

  .hero-grid,
  .split-layout,
  .expert-grid,
  .appointment-grid,
  .beliefs-head {
    gap: 56px;
  }

  .treat-grid {
    padding-left: 110px;
    column-gap: 180px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .wrap {
    padding: 0 36px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .split-layout,
  .expert-grid,
  .appointment-grid,
  .beliefs-head {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0 0;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-figure {
    right: 50%;
    transform: translateX(50%);
    width: min(620px, 88vw);
  }

  .stat-card--patients {
    left: 0;
  }

  .stat-card--doctors {
    right: 12px;
  }

  .split-layout,
  .expert-grid,
  .appointment-grid,
  .beliefs-head {
    justify-items: start;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .team-card img,
  .about-visual img,
  .expert-visual img {
    width: min(100%, 566px);
  }

  .treat-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 64px;
    padding: 96px 36px;
  }

  .treat-menu::before {
    display: none;
  }

  .treat-link.is-active::before {
    display: none;
  }

  .treat-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

  .carousel {
    gap: 24px;
  }

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

/* ── Nav dropdown ── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  margin-top: 8px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-dropdown__menu a:hover {
  background: var(--surface-alt);
}

/* ── Mobile nav links: hidden on desktop ── */
.nav-mobile-links {
  display: none;
}

/* Footer columns wrapper: transparent on desktop */
.footer-columns-row {
  display: contents;
}

@media (max-width: 780px) {
  .wrap {
    padding: 0 20px;
  }

  /* ── Hamburger ── */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-bar {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    min-height: auto;
  }

  .brand {
    position: relative;
    z-index: 101;
  }

  .brand img {
    width: 124px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 101;
  }

  /* ── CTA on mobile ── */
  .header-cta {
    min-height: auto;
    padding: 12px 18px;
    border-radius: 62px;
    font-size: 12px;
  }

  /* ── Mobile nav panel ── */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    padding: 80px 20px 40px;
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--ink);
    white-space: nowrap;
  }

  /* ── Dropdown chevron ── */
  .nav-dropdown > a span[aria-hidden] {
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  .nav-dropdown > a span[aria-hidden]::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .nav-dropdown.is-open > a span[aria-hidden]::after {
    transform: rotate(-135deg);
  }

  /* ── Nav dropdown accordion ── */
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
    border-radius: 0;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 0 16px;
  }

  .nav-dropdown__menu a {
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    line-height: 19.2px;
  }

  .nav-dropdown__menu a:hover {
    background: transparent;
  }

  /* ── Hide old mobile link columns ── */
  .nav-mobile-links {
    display: none !important;
  }

  /* ── Hero mobile ── */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 0;
    text-align: center;
  }

  .hero-copy {
    padding-top: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 32px;
    max-width: 307px;
    letter-spacing: -0.96px;
  }

  .hero-copy p {
    font-size: 14px;
    max-width: 277px;
    margin: 16px 0 36px;
    letter-spacing: -0.28px;
  }

  .hero-visual {
    justify-content: center;
    min-height: auto;
  }

  .hero-figure {
    position: relative;
    right: auto;
    transform: none;
    width: min(420px, 90vw);
    max-width: none;
  }

  /* ── Section typography mobile ── */
  .section-label,
  .hero-copy p,
  .expert-role,
  .expert-description,
  .expert-subtitle,
  .check-list li,
  .team-card p,
  .treat-panel p,
  .beliefs-summary {
    font-size: 16px;
  }

  .section-heading,
  .hero-copy h1 {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .section-heading--compact,
  .treat-panel h2 {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  /* ── About mobile ── */
  .about-section {
    padding: 60px 0 70px;
    border-radius: 44px 44px 0 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual img {
    width: 100%;
  }

  .section-copy {
    gap: 20px;
  }

  /* ── Expert mobile ── */
  .expert-section {
    padding: 40px 0 60px;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .expert-visual img {
    width: 100%;
  }

  .expert-divider {
    width: 100%;
  }

  /* ── Team mobile ── */
  .team-section {
    padding-bottom: 60px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-card img {
    width: 268px;
    margin: 0 auto;
  }

  .team-card h3 {
    font-size: 24px;
    letter-spacing: -0.72px;
  }

  .team-card p {
    font-size: 14px;
  }

  /* ── Treatments mobile ── */
  .treat-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 60px 20px;
    padding-left: 56px;
  }

  .treat-menu {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .treat-menu::before {
    top: -32px;
    left: -44px;
    height: 100%;
  }

  .treat-link {
    font-size: 26px;
    letter-spacing: -0.52px;
  }

  .treat-link.is-active::before {
    top: -8px;
    left: -47px;
    height: 42px;
  }

  .treat-panel h2,
  .treat-panel p {
    width: auto;
    max-width: none;
  }

  .treat-panel h2 {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  /* ── Beliefs mobile ── */
  .beliefs-section {
    padding: 60px 0 60px;
  }

  .beliefs-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
    width: auto;
    max-width: none;
  }

  .beliefs-head .section-heading,
  .section-heading,
  .hero-copy h1 {
    width: auto;
    max-width: none;
  }

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

  .belief-card {
    background: var(--surface-alt);
    border-radius: 28px;
    padding: 16px;
    gap: 24px;
  }

  .belief-card img {
    border-radius: 18px;
  }

  .belief-card h3 {
    font-size: 28px;
    letter-spacing: -0.84px;
  }

  /* ── Testimonials mobile ── */
  .testimonials-section {
    padding: 40px 0 60px;
  }

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

  .carousel-button {
    display: none;
  }

  .testimonial-track {
    grid-auto-columns: 312px;
    gap: 16px;
    padding: 0 4px;
  }

  .testimonial-card {
    border-radius: 36px;
  }

  /* ── Appointment mobile ── */
  .appointment-section {
    padding: 60px 0 60px;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .appointment-copy {
    max-width: none;
  }

  .appointment-copy .section-heading {
    max-width: none;
  }

  .appointment-form {
    width: 100%;
  }

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

  .appointment-form input,
  .appointment-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .upload-field {
    width: 100%;
    box-sizing: border-box;
  }

  .appointment-submit {
    width: 100%;
  }

  /* ── Videos mobile ── */
  .video-section {
    padding: 24px 0 60px;
  }

  .carousel--videos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .carousel--videos .carousel-button {
    display: none;
  }

  .video-track {
    grid-auto-columns: 84%;
    gap: 16px;
  }

  /* ── Footer mobile ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 36px;
  }

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

  .footer-columns-row .footer-column:last-child {
    margin-top: 32px;
    grid-column: 1 / -1;
  }

  .footer-socials {
    margin-bottom: 24px;
  }
}

/* ── FAQ (shared across pages) ── */
.treatment-faq {
  padding: 48px 0;
}
.treatment-faq__title {
  font-size: 46px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1.38px;
  margin-bottom: 32px;
  text-align: center;
}
.treatment-faq__list {
  display: flex;
  flex-direction: column;
}
.treatment-faq__item {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 24px 0;
}
.treatment-faq__item:first-child {
  border-top: none;
}
.treatment-faq__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.treatment-faq__q {
  font-size: 20px;
  font-weight: 600;
  color: #121224;
  opacity: 0.8;
  line-height: 1.3;
  flex: 1;
}
.treatment-faq__toggle {
  width: 26px;
  height: 26px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: none;
  color: var(--blue);
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.treatment-faq__item.is-open .treatment-faq__toggle {
  transform: rotate(45deg);
}
.treatment-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.treatment-faq__answer p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: -0.16px;
  padding-top: 8px;
}

@media (max-width: 780px) {
  .treatment-faq { padding: 32px 0; }
  .treatment-faq__title { font-size: 28px; letter-spacing: -0.84px; }
  .treatment-faq__q { font-size: 16px; }
}
