:root {
  --ivory: #fff9ee;
  --ivory-muted: rgba(255, 249, 238, 0.84);
  --gold-accent: #f3c9a8;
  --gold-glow: #e6b382;
  --ink: #16100b;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --page-padding: clamp(1.5rem, 5vw, 5.5rem);
  --header-height: 5.25rem;
}

* { box-sizing: border-box; }

html { background: var(--ink); scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
}

a { color: inherit; }

section[id] { scroll-margin-top: 1rem; }

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

/* Fixed Cinematic Background System */
.fixed-bg-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--ink);
}

.fixed-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 800ms;
}

.fixed-bg-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.fixed-bg-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(12, 8, 5, 0.58) 0%,
    rgba(12, 8, 5, 0.46) 50%,
    rgba(12, 8, 5, 0.65) 100%
  );
}

.fixed-bg-slide .bg-img {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.fixed-bg-slide .hero-bg {
  object-position: 52% center;
  filter: brightness(1.05) contrast(1.06) saturate(0.9) sepia(0.055) hue-rotate(-2deg);
}

.fixed-bg-slide .philosophy-bg {
  object-position: 44% 40%;
  filter: brightness(1.01) contrast(0.94) saturate(0.56) sepia(0.035) hue-rotate(-2deg);
}

.fixed-bg-slide .treatments-bg {
  object-position: center 65%;
  filter: brightness(0.98) contrast(1.02);
}

.fixed-bg-slide .journey-bg {
  object-position: center 47%;
  filter: brightness(0.86) contrast(1.03) saturate(0.86) sepia(0.075);
}

.fixed-bg-slide .contact-bg {
  object-position: center 48%;
  filter: blur(8px) brightness(0.52) contrast(1.1) saturate(0.85);
  transform: scale(1.05);
}



.hero {
  isolation: isolate;
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: transparent;
}



.hero::after {
  display: none;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-padding);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.5rem);
  min-width: 0;
}

.brand-wordmark {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 8.2vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-decoration: none;
  text-rendering: optimizeLegibility;
}

.brand-wordmark--menu { font-size: clamp(2rem, 8vw, 2.5rem); }

.desktop-nav { display: none; }

.menu-button {
  display: grid;
  place-content: center;
  gap: 0.43rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--ivory);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 1.75rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(0.23rem) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.23rem) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: max(0.75rem, env(safe-area-inset-top)) var(--page-padding) max(2.1rem, env(safe-area-inset-bottom));
  color: var(--ivory);
  background: #0e180f;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 480ms cubic-bezier(.22, .8, .22, 1), opacity 420ms ease, visibility 0s linear 480ms;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition: transform 480ms cubic-bezier(.22, .8, .22, 1), opacity 420ms ease;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.mobile-menu__links {
  display: grid;
  gap: clamp(1.45rem, 4vh, 2.4rem);
  align-content: center;
  flex: 1;
  padding: 2.5rem 0 5rem;
}

.mobile-menu__links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
  padding: 0.45rem 0;
  font-size: clamp(1.4rem, 7vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.75rem;
  padding-bottom: 0.6rem !important;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 7.7vw, 2.05rem) !important;
  font-style: italic;
  text-transform: none !important;
}

.menu-close {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--ivory);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

.menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

body.menu-is-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html:has(body.menu-is-open) {
  overflow: hidden;
  overscroll-behavior: none;
}

.mobile-menu a,
.desktop-nav a,
.text-action {
  text-underline-offset: 0.35em;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: min(100%, 44rem);
  padding: 0 var(--page-padding) max(4rem, env(safe-area-inset-bottom));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h1 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.6rem, 13vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero__statement {
  margin: 1.75rem 0 0;
  color: var(--ivory-muted);
  font-size: clamp(1.1rem, 4.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.48;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.45rem;
  margin-top: 2.25rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-width: 13rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.75rem;
  color: var(--ivory);
  border: 1px solid rgba(243, 201, 168, 0.45);
  border-radius: 9999px;
  background: rgba(22, 16, 11, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 250ms ease, background-color 250ms ease, border-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: var(--gold-accent);
  background: var(--gold-accent);
  box-shadow: 0 8px 24px rgba(243, 201, 168, 0.3);
}

.primary-action span { font-size: 1rem; line-height: 0; }
.text-action { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

.section-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 248, 233, 0.2);
  border-radius: 9999px;
  background: rgba(22, 16, 11, 0.35);
  backdrop-filter: blur(8px);
  font: 600 0.66rem/1 var(--sans);
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.section-back-top span { font-size: 1rem; line-height: 0; }
.section-back-top:hover,
.section-back-top:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-accent);
  background: rgba(22, 16, 11, 0.65);
}
.section-back-top--ink { color: var(--ivory); }
.section-back-top--light { color: var(--ivory); }

.primary-action:hover,
.primary-action:focus-visible {
  color: var(--ink);
  background: var(--ivory);
}

:focus-visible { outline: 2px solid var(--ivory); outline-offset: 4px; }

.philosophy-section {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--page-padding);
  color: var(--ivory);
  background: transparent;
}

.philosophy-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: min(100%, 76rem);
  margin: 0 auto;
}

.philosophy-heading-group { max-width: 34rem; }

.philosophy-eyebrow {
  margin: 0 0 clamp(1rem, 4vw, 1.4rem);
  color: var(--gold-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.philosophy-title {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 12vw, 4.85rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.philosophy-body {
  max-width: 36rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 0;
}

.philosophy-body p {
  margin: 0;
  color: var(--ivory);
}

.philosophy-support {
  max-width: 31rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.28;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.philosophy-body .philosophy-closing {
  max-width: 33rem;
  margin-top: clamp(1.5rem, 5vw, 2.25rem);
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 3.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.62;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.philosophy-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 6vw, 2.75rem);
}

.philosophy-action {
  color: var(--ivory);
  border-color: var(--gold-accent);
  background: rgba(22, 16, 11, 0.55);
  backdrop-filter: blur(8px);
}

.philosophy-action:hover,
.philosophy-action:focus-visible {
  color: var(--ink);
  background: var(--gold-accent);
}

.philosophy-body .section-back-top { margin-top: clamp(2rem, 8vw, 2.75rem); }

@media (max-width: 47.9375rem) {
  :root {
    --page-padding: clamp(1.25rem, 4.5vw, 1.65rem);
    --header-height: 4.5rem;
  }

  .hero__content {
    padding-bottom: max(3.5rem, 8svh, env(safe-area-inset-bottom));
  }

  .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
    line-height: 1.02;
  }

  .hero__statement {
    max-width: 22rem;
    margin-top: 1.1rem;
    font-size: clamp(1rem, 3.8vw, 1.15rem);
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 1.75rem;
  }

  .primary-action {
    min-width: 11.5rem;
    min-height: 3.15rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.66rem;
  }

  .philosophy-section,
  .journey-section,
  .contact-section {
    padding-top: calc(3.5rem + 4.5rem);
    padding-bottom: 3.5rem;
  }

  .philosophy-title,
  .care-section__title,
  .journey-title,
  .doctors-title,
  .contact-title {
    font-size: clamp(2.1rem, 7.5vw, 2.85rem) !important;
    line-height: 1.02 !important;
  }

  .philosophy-body {
    padding-top: 3rem;
  }

  .philosophy-support {
    font-size: clamp(1.3rem, 4.8vw, 1.6rem);
    line-height: 1.35;
  }

  .philosophy-body .philosophy-closing {
    margin-top: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .doctor-card {
    border-radius: 1.15rem;
  }

  .doctor-photo {
    height: clamp(13rem, 42vw, 16rem);
  }

  .doctor-description {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .doctor-name {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .doctor-role {
    margin-top: 0.5rem;
    font-size: 0.72rem;
  }

  .doctor-credentials {
    font-size: 0.85rem;
  }

  .doctor-bio {
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .doctor-availability {
    margin-top: 1.35rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 20rem) {
  .hero__image { object-position: 50% center; }
  .philosophy__image { object-position: 42% 36%; }
}

@media (min-width: 20.0625rem) and (max-width: 22.5rem) {
  .hero__image { object-position: 52% center; }
  .philosophy__image { object-position: 43% 38%; }
}

@media (min-width: 22.5625rem) and (max-width: 23.4375rem) {
  .hero__image { object-position: 53% center; }
  .philosophy__image { object-position: 44% 39%; }
}

@media (min-width: 23.5rem) and (max-width: 24.375rem) {
  .hero__image { object-position: 54% center; }
  .philosophy__image { object-position: 45% 40%; }
}

@media (min-width: 24.4375rem) and (max-width: 25.875rem) {
  .hero__image { object-position: 55% center; }
  .philosophy__image { object-position: 46% 41%; }
}

@media (max-width: 359px) {
  .brand-lockup { gap: 0.55rem; }
  .brand-wordmark { font-size: 1.82rem; }
  .hero__content { padding-bottom: max(4.2rem, env(safe-area-inset-bottom)); }
  .eyebrow { margin-bottom: 0.7rem; }
  h1 { font-size: clamp(3rem, 14vw, 3.5rem); }
  .hero__statement { margin-top: 1.35rem; font-size: 1rem; }
  .hero__actions { margin-top: 1.5rem; gap: 0.75rem; }
  .primary-action { width: 100%; min-height: 3.25rem; }
}

@media (min-width: 48rem) {
  .hero__image { object-position: center center; }
  .site-header { min-height: 5.3rem; }
  .brand-wordmark { font-size: 3rem; }
  .menu-button, .mobile-menu { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3.3vw, 3.5rem);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .hero__content {
    padding-bottom: clamp(3.6rem, 7vw, 6.5rem);
  }
  h1 { font-size: clamp(4.8rem, 8.2vw, 8.5rem); }
  .hero__statement { max-width: 22rem; font-size: clamp(1.15rem, 1.6vw, 1.45rem); }
  .philosophy-section {
    margin-top: -6rem;
    padding-block: clamp(8.75rem, 13vw, 11.25rem);
    padding-top: calc(clamp(8.75rem, 13vw, 11.25rem) + 6rem);
  }

  .philosophy-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
    grid-template-areas: "heading body";
    gap: clamp(4rem, 8vw, 7.5rem);
    align-items: end;
    align-content: end;
  }
  .philosophy-heading-group { grid-area: heading; }
  .philosophy-body {
    grid-area: body;
    max-width: 34rem;
    margin-top: 0;
    padding-top: 0;
  }
  .philosophy-title { font-size: clamp(3.4rem, 6.2vw, 6.25rem); }
  .philosophy-support { font-size: clamp(1.7rem, 2.3vw, 2rem); }
  .philosophy-closing { font-size: clamp(1.125rem, 1.4vw, 1.3rem); }
}

@media (min-width: 64rem) {
  .hero__image { object-position: 58% center; }
  .hero__content { width: min(100%, 43rem); }
}

.care-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: var(--ivory);
}

.care-section::before {
  display: none;
}

.care-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
  padding: 0 var(--page-padding);
}

.care-section__title {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 12.8vw, 3.625rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.care-controls {
  display: none;
  gap: 0.55rem;
}

.care-control {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  color: #263420;
  border: 1px solid rgb(38 52 32 / 0.36);
  border-radius: 50%;
  place-items: center;
  background: rgb(255 252 242 / 0.32);
  font: 500 1rem/1 var(--sans);
  cursor: pointer;
  transition: color 220ms ease-out, background-color 220ms ease-out, border-color 220ms ease-out, opacity 220ms ease-out;
}

.care-control:hover,
.care-control:focus-visible {
  color: #fffaf0;
  border-color: #263420;
  background: #263420;
}

.care-control:disabled {
  opacity: 0.3;
  cursor: default;
}

.care-control:disabled:hover,
.care-control:disabled:focus-visible {
  color: #263420;
  border-color: rgb(38 52 32 / 0.36);
  background: rgb(255 252 242 / 0.32);
}

.care-carousel { outline: none; }

.care-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3.5vw, 2.25rem);
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  overflow: visible;
}

.care-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: clamp(16.5rem, 30vw, 20.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 248 233 / 0.22);
  border-radius: 1.35rem;
  background: #140e0a;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.28);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), border-color 320ms ease;
}

.care-card:hover {
  transform: translateY(-5px);
  border-color: rgb(255 248 233 / 0.45);
  box-shadow: 0 1.5rem 3.25rem rgb(0 0 0 / 0.42);
}

.care-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #b59d89;
}

.care-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

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

.care-card:nth-child(3) .care-card__media img { object-position: 50% 40%; }
.care-card:nth-child(5) .care-card__media img { object-position: 50% 76%; }
.care-card:nth-child(6) .care-card__media img { object-position: 47% 58%; }
.care-card:nth-child(7) .care-card__media img { object-position: 49% 53%; }
.care-card:nth-child(8) .care-card__media img { object-position: 50% 43%; }

.care-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(1.25rem, 3.5vw, 1.85rem);
  background: linear-gradient(to top, rgb(10 6 4 / 0.94) 0%, rgb(10 6 4 / 0.6) 55%, rgb(10 6 4 / 0) 100%);
}

.care-card__body h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.5);
}

.care-card__body p {
  max-width: 28rem;
  margin: 0.5rem 0 0;
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: clamp(0.86rem, 1.8vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.48;
  text-shadow: 0 2px 8px rgb(0 0 0 / 0.5);
}

@media (min-width: 48rem) {
  .care-section {
    margin-top: -6rem;
    padding-block: clamp(7rem, 11vw, 10rem);
    padding-top: calc(clamp(7rem, 11vw, 10rem) + 6rem);
  }

  .care-section__header,
  .care-carousel {
    width: min(100%, 76rem);
    margin-right: auto;
    margin-left: auto;
  }

  .care-section__header { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }

  .care-section__title {
    font-size: clamp(3.625rem, 5vw, 5.25rem);
    line-height: 0.92;
  }
}

.care-section__back-top {
  width: min(100%, 76rem);
  margin: clamp(2.5rem, 8vw, 4rem) auto 0;
  padding: 0 9vw;
}

.journey-section {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--page-padding);
  color: var(--ivory);
  background: transparent;
}

.journey-section::before,
.journey-section::after {
  display: none;
}

.journey-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 76rem);
  margin: 0 auto;
}

.journey-content {
  max-width: 36rem;
}

.journey-title {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 13vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.journey-title span {
  display: block;
  margin-top: 0.16em;
  color: var(--gold-accent);
  font-size: 0.78em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.journey-story {
  max-width: 32rem;
  margin-top: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: clamp(1.04rem, 4vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.journey-story p { margin: 0; }

.journey-story p + p { margin-top: clamp(1.2rem, 4vw, 1.6rem); }

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 6vw, 2.75rem);
}

.journey-action {
  width: auto;
  color: var(--ivory);
  border-color: var(--gold-accent);
  background: rgba(22, 16, 11, 0.55);
  backdrop-filter: blur(8px);
}

.journey-action:hover,
.journey-action:focus-visible {
  color: var(--ink);
  background: var(--gold-accent);
}

.journey-content .section-back-top { margin-top: clamp(2rem, 8vw, 2.75rem); }

.doctors-section {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: var(--ivory);
  background: transparent;
}

.doctors-intro {
  width: min(100%, 76rem);
  margin: 0 auto clamp(2rem, 6vw, 3.5rem);
  padding: 0 var(--page-padding);
}

.doctors-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-accent);
  font: 600 clamp(0.66rem, 2.4vw, 0.76rem)/1.2 var(--sans);
  letter-spacing: 0.16em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.doctors-title {
  max-width: 14ch;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 13.2vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.doctors-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.doctor-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(255 248 233 / 0.22);
  border-radius: 1.35rem;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.25);
  background: rgb(27 19 14 / 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease;
}

.doctor-card:hover {
  transform: translateY(-5px);
  border-color: rgb(255 248 233 / 0.42);
  box-shadow: 0 1.5rem 3.25rem rgb(0 0 0 / 0.38);
}

.doctor-photo {
  position: relative;
  height: clamp(16rem, 30vw, 22rem);
  overflow: hidden;
  background: #b59d89;
}

.doctor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.doctor-card:hover .doctor-photo img {
  transform: scale(1.03);
}

.doctor-photo--minakshee img { object-position: 50% 68%; }
.doctor-photo--vijay img { object-position: 50% 8%; }

.doctor-description {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.8rem, 4.5vw, 2.75rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.doctor-description--minakshee {
  color: #fff3e3;
  background-color: #8b3c30;
  background-image:
    linear-gradient(105deg, rgb(67 29 21 / 0.76), rgb(94 39 29 / 0.5)),
    url("./assets/images/minakshee-background.png");
}

.doctor-description--vijay {
  color: #fff3e3;
  background-color: #8b3c30;
  background-image:
    linear-gradient(105deg, rgb(67 29 21 / 0.76), rgb(94 39 29 / 0.5)),
    url("./assets/images/vijay-background.png");
}

.doctors-title {
  max-width: 16ch;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 10vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.doctor-name {
  max-width: 12ch;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 8vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.doctor-role {
  margin: 0.85rem 0 0;
  color: var(--gold-accent);
  font: 600 0.78rem/1.35 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor-credentials {
  margin: 0.65rem 0 0;
  color: var(--ivory-muted);
  font: 500 0.92rem/1.5 var(--sans);
  letter-spacing: 0.01em;
}

.doctor-bio {
  max-width: 32rem;
  margin: 1.35rem 0 0;
  color: var(--ivory-muted);
  font: 400 clamp(0.96rem, 2vw, 1.05rem)/1.68 var(--sans);
  letter-spacing: -0.01em;
}

.doctor-availability {
  margin-top: 1.85rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: 0.95rem;
  background: rgba(14, 9, 6, 0.45);
  font: 500 0.92rem/1.6 var(--sans);
  letter-spacing: 0.005em;
}

.doctor-availability p { margin: 0; color: var(--ivory-muted); }
.doctor-availability p + p { margin-top: 0.6rem; }

.doctor-availability__label {
  margin-bottom: 0.5rem !important;
  color: var(--gold-accent) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doctor-description--minakshee .doctor-role,
.doctor-description--minakshee .doctor-availability__label,
.doctor-description--vijay .doctor-role,
.doctor-description--vijay .doctor-availability__label { color: rgb(255 238 216 / 0.74); }

.doctors-back-top {
  width: min(100%, 76rem);
  margin: clamp(1.5rem, 6vw, 2.5rem) auto 0;
  padding: 0 var(--page-padding) clamp(2.75rem, 9vw, 4rem);
}

.stories-section {
  display: none;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--page-padding);
  color: var(--ivory);
  background: transparent;
}

.contact-section::before,
.contact-section::after {
  display: none;
}

.contact-layout,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(100%, 76rem);
  margin: 0 auto;
}

.contact-content {
  max-width: 37rem;
}

.contact-eyebrow {
  margin: 0 0 clamp(1rem, 4vw, 1.4rem);
  color: var(--gold-accent);
  font: 600 clamp(0.66rem, 2.65vw, 0.76rem)/1.2 var(--sans);
  letter-spacing: 0.16em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.contact-title {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.25rem, 14.2vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.89;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.95);
}

.contact-support {
  max-width: 29rem;
  margin: clamp(1.6rem, 7vw, 2.25rem) 0 0;
  color: var(--ivory-muted);
  font: 500 clamp(1rem, 4.25vw, 1.15rem)/1.55 var(--sans);
  letter-spacing: -0.017em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: clamp(2.25rem, 10vw, 3rem);
}

.contact-primary {
  width: min(100%, 20rem);
  min-height: 3.5rem;
  color: var(--ivory);
  border-color: var(--gold-accent);
  background: rgba(22, 16, 11, 0.65);
  backdrop-filter: blur(8px);
}

.contact-primary:hover,
.contact-primary:focus-visible {
  color: var(--ink);
  background: var(--gold-accent);
}

.contact-secondary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: rgb(255 247 232 / 0.94);
  font: 600 0.68rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-secondary:hover,
.contact-secondary:focus-visible { color: #fff8e9; text-decoration: underline; text-underline-offset: 0.45rem; }

.contact-address,
.contact-hours {
  margin: 0;
  color: var(--ivory);
  font: 500 clamp(0.94rem, 3.9vw, 1.08rem)/1.6 var(--sans);
  font-style: normal;
  letter-spacing: -0.012em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.contact-address p,
.contact-hours p { margin: 0; }
.contact-hours p + p { margin-top: 0.8rem; }

.contact-address { margin-top: clamp(3.5rem, 15vw, 5rem); }
.contact-hours { margin-top: clamp(3rem, 12vw, 4.5rem); }

.contact-details__label {
  margin-bottom: 0.95rem !important;
  color: var(--gold-accent);
  font-size: 0.74em;
  font-weight: 600;
  letter-spacing: 0.145em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.95);
}

.contact-map-column { margin-top: clamp(2.25rem, 9vw, 3.25rem); }

.contact-map {
  overflow: hidden;
  padding: 0.16rem;
  border: 1px solid rgb(255 247 232 / 0.32);
  border-radius: 1.1rem;
  background: rgb(9 26 16 / 0.28);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(15rem, 66vw, 17.5rem);
  border: 0;
  border-radius: 0.96rem;
}

.contact-map-link {
  display: inline-flex;
  margin-top: 1rem;
  color: rgb(255 247 232 / 0.9);
  font: 600 0.67rem/1.2 var(--sans);
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-map-link:hover,
.contact-map-link:focus-visible { color: #fff8e9; text-decoration: underline; text-underline-offset: 0.45rem; }

.contact-back-top {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 76rem);
  margin: clamp(3.25rem, 12vw, 4.75rem) auto 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: clamp(4.25rem, 18vw, 6.5rem);
  padding: 1.45rem 0 max(1.7rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgb(255 247 232 / 0.22);
  color: rgb(255 247 232 / 0.72);
  font: 500 clamp(0.68rem, 2.6vw, 0.76rem)/1.45 var(--sans);
  letter-spacing: 0.025em;
}

.site-footer p { margin: 0; }

@media (min-width: 48rem) {
  .journey-section {
    margin-top: -6rem;
    padding: calc(clamp(9rem, 12vw, 12rem) + 6rem) var(--page-padding) clamp(7.5rem, 10vw, 10rem);
  }

  .journey-section::before,
  .journey-section::after {
    mask-image: linear-gradient(to bottom, transparent 0, #000 6rem, #000 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6rem, #000 100%);
  }

  .journey-section::before { background-position: center 49%; }

  .journey-inner {
    width: min(calc(100% - (var(--page-padding) * 2)), 49rem);
    margin-left: max(var(--page-padding), calc((100% - 76rem) / 2));
  }

  .journey-title { font-size: clamp(4.1rem, 6.4vw, 6.5rem); }

  .journey-story { margin-top: clamp(3.25rem, 5vw, 4.75rem); }

  .doctors-section {
    margin-top: -6rem;
    padding-top: calc(clamp(7rem, 10vw, 10rem) + 6rem);
    background: transparent;
  }

  .doctors-intro {
    margin-bottom: clamp(4.5rem, 7vw, 7rem);
    padding: 0;
  }

  .doctors-title {
    max-width: 15ch;
    font-size: clamp(4.2rem, 6vw, 6.3rem);
  }

  .doctors-spread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
  }

  .doctor-photo--minakshee img { object-position: 50% 70%; }
  .doctor-photo--vijay img { object-position: 50% 10%; }

  .doctors-back-top {
    padding-right: 0;
    padding-left: 0;
  }

  .stories-section {
    min-height: clamp(14rem, 20vw, 19rem);
    margin-top: -6rem;
    padding-top: calc(clamp(5.5rem, 8vw, 7rem) + 6rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
    background: transparent;
  }

  .contact-section {
    margin-top: -6rem;
    padding-top: calc(clamp(8rem, 12vw, 11rem) + 6rem);
    padding-bottom: 0;
  }

  .contact-section::before { background-position: center 50%; }

  .contact-section::before,
  .contact-section::after {
    mask-image: linear-gradient(to bottom, transparent 0, #000 6rem, #000 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6rem, #000 100%);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(22rem, 0.86fr);
    grid-template-areas:
      "content map"
      "hours map";
    column-gap: clamp(4rem, 8vw, 9rem);
    row-gap: clamp(2.75rem, 5vw, 4.5rem);
    align-items: start;
  }

  .contact-content { grid-area: content; max-width: 34rem; }

  .contact-title { font-size: clamp(4.4rem, 6.4vw, 6.8rem); }

  .contact-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
  }

  .contact-primary { width: auto; }

  .contact-address { margin-top: clamp(3.5rem, 5vw, 5rem); }

  .contact-hours {
    grid-area: hours;
    margin-top: 0;
  }

  .contact-map-column {
    grid-area: map;
    margin-top: 0;
    padding-bottom: 0.2rem;
  }

  .contact-map iframe { height: clamp(26.25rem, 34vw, 30rem); }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(5.5rem, 9vw, 8.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
}

@media (pointer: fine) {
  .care-track { cursor: grab; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .fixed-bg-slide { transition: none !important; }
}
