.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 245, 237, 0.92);
  box-shadow: 0 10px 34px rgba(16, 63, 46, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.brand-copy small {
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 0.86rem;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 6px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 142px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 22%, rgba(220, 232, 220, 0.85), transparent 31%),
    linear-gradient(115deg, var(--ivory) 0%, var(--paper) 54%, #eef5eb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
}

.hero-copy {
  padding-block: 64px 52px;
}

.hero h1 em {
  display: block;
  color: var(--forest);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 650px;
  padding: 34px 0 0;
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 4px;
}

.hero-facts strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  margin: 0;
}

.portrait-frame {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  border-radius: 48% 48% 20px 20px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 38%;
}

.hero-portrait figcaption {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: grid;
  max-width: 275px;
  gap: 4px;
  padding: 18px 22px;
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 16px 40px rgba(9, 47, 34, 0.22);
}

.hero-portrait figcaption span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 58px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.hero-note p {
  margin: 0;
  color: var(--forest);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-botanical {
  position: absolute;
  z-index: 1;
  right: -40px;
  bottom: 5%;
  width: 260px;
  height: 480px;
  opacity: 0.19;
  transform: rotate(18deg);
}

.hero-botanical::before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  border-radius: 50%;
  background: var(--forest);
  content: "";
  transform: rotate(6deg);
}

.hero-botanical span {
  position: absolute;
  left: 50%;
  width: 130px;
  height: 58px;
  border-radius: 100% 0 100% 0;
  background: var(--fern);
  transform-origin: left center;
}

.hero-botanical span:nth-child(1) { top: 50px; transform: rotate(28deg) scale(0.55); }
.hero-botanical span:nth-child(2) { top: 130px; transform: rotate(150deg) scale(0.72); }
.hero-botanical span:nth-child(3) { top: 210px; transform: rotate(23deg) scale(0.9); }
.hero-botanical span:nth-child(4) { top: 300px; transform: rotate(154deg) scale(1); }
.hero-botanical span:nth-child(5) { top: 390px; transform: rotate(18deg) scale(1.08); }

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

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.doctor-copy > p {
  max-width: 700px;
}

.doctor-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-block: 40px;
}

.doctor-credentials div {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.doctor-credentials strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
}

.doctor-credentials span {
  color: var(--muted);
  font-size: 0.74rem;
}

.doctor-copy blockquote {
  margin-bottom: 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.25;
}

.directions-section {
  background: var(--sage-soft);
}

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

.direction-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.direction-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.direction-card--accent {
  color: var(--paper);
  background: var(--forest);
}

.direction-card--accent p {
  color: rgba(255, 253, 248, 0.72);
}

.card-mark {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.direction-card h3 {
  max-width: 330px;
}

.direction-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.emg-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 100%, rgba(189, 145, 56, 0.18), transparent 32%),
    var(--forest-deep);
}

.emg-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 145px);
}

.emg-copy h2 {
  font-size: clamp(3rem, 4.5vw, 4.7rem);
}

.emg-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.7);
}

.emg-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.emg-details h3 {
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.line-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.line-list li {
  padding-block: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 248, 0.79);
  font-size: 0.88rem;
}

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

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(70px, 11vw, 165px);
}

.approach-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.steps-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.steps-list > li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps-list > li > span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.steps-list h3 {
  margin-bottom: 6px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.steps-list p {
  margin-bottom: 0;
}

.prices-section {
  background: var(--sage-soft);
}

.price-list {
  border-top: 1px solid var(--forest);
}

.price-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: var(--forest-deep);
}

.price-list strong {
  color: var(--forest);
  font-weight: 600;
}

.price-note {
  margin: 20px 0 0;
  font-size: 0.74rem;
}

.resources-section {
  background: var(--ivory);
}

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

.resource-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: end;
  gap: 7px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.resource-card:hover {
  color: var(--paper);
  background: var(--forest);
  transform: translateY(-5px);
}

.resource-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

.resource-card:hover span {
  color: rgba(255, 253, 248, 0.67);
}

.resource-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.resource-card em {
  position: absolute;
  top: 25px;
  right: 28px;
  color: var(--gold);
  font-style: normal;
  font-size: 1.4rem;
}

.clinic-section {
  padding-block: clamp(64px, 7vw, 96px);
  background: var(--paper);
}

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

.clinic-heading .eyebrow {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.clinic-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

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

.clinic-photo {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  aspect-ratio: 4 / 3;
}

.clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 260ms ease, transform 500ms ease;
}

.clinic-photo:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}
