/* ==========================================================================
   Dr Shumard — site styles
   Rebuilt from the original Bricks/WordPress site as static HTML + CSS.
   Root font-size is 62.5%, so 1rem = 10px throughout.
   ========================================================================== */

/* ---- Fonts (self-hosted Inter variable font) --------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var-italic.woff2") format("woff2");
}

/* ---- Design tokens ----------------------------------------------------- */
:root {
  /* Brand colours */
  --brand: #256AF4;          /* main blue */
  --brand-dark: #1B55CC;     /* hover state, small blue text on light backgrounds */
  --brand-tint: #EAF1FF;     /* chips, feature icons */
  --brand-tint-border: #BFD4FA;
  --accent: #FFC24A;         /* yellow: buttons, highlights on blue */
  --accent-hover: #F5B32E;
  --btn-text: #0B1F4B;       /* text on yellow buttons */
  --text: #0B1F4B;
  --text-secondary: #526580;
  --text-light: #FFFFFF;
  --dark-bg: #0A2463;        /* deep blue sections */
  --light-bg: #EEF3FF;       /* tinted sections */
  --surface: #FFFFFF;
  --surface-alt: #F5F8FF;
  --border: #D5E0F7;
  --white: #FFFFFF;

  /* Fluid type scale */
  --text-s: clamp(1.42rem, calc(0.00074 * (100vw - 36rem) + 1.42rem), 1.5rem);
  --text-m: clamp(1.6rem, calc(0.00185 * (100vw - 36rem) + 1.6rem), 1.8rem);
  --text-l: clamp(1.8rem, calc(0.00333 * (100vw - 36rem) + 1.8rem), 2.16rem);
  --text-xl: clamp(2.02rem, calc(0.00528 * (100vw - 36rem) + 2.02rem), 2.59rem);
  --h-4: clamp(1.6rem, calc(0.0012 * (100vw - 36rem) + 1.6rem), 1.73rem);
  --h-3: clamp(2rem, calc(0.00556 * (100vw - 36rem) + 2rem), 2.6rem);
  --h-2: clamp(2.5rem, calc(0.01296 * (100vw - 36rem) + 2.5rem), 3.9rem);
  --h-1: clamp(3.13rem, calc(0.02519 * (100vw - 36rem) + 3.13rem), 5.85rem);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #fff;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--text-m);
  font-weight: 400;
  line-height: 1.4;
  font-optical-sizing: none; /* the original site shipped Inter's text cut at every size */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  text-rendering: optimizelegibility;
}
h1 { font-size: var(--h-1); }
h2 { font-size: var(--h-2); }
h3 { font-size: var(--h-3); }
h4 { font-size: var(--h-4); }

.site-header, main, .site-footer { width: 100%; }

img { max-width: 100%; height: auto; vertical-align: middle; border-style: none; }
svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.skip-link {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 1px;
  padding: 5px 10px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  background: #000;
  color: #fff;
  font-weight: 700;
  border-bottom-right-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { clip: auto; width: auto; height: auto; overflow: visible; }

p { margin: 0; }

/* Rich-text areas (paragraph rhythm and link colour as on the original site) */
.rich-text p { margin-bottom: 1.2em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text ul, .rich-text ol { margin: 1em 0; padding-left: 40px; }
.rich-text a { color: var(--brand); }
.rich-text a:hover { color: var(--brand-dark); }

/* ---- Layout primitives ------------------------------------------------- */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 16px;
}
@media (max-width: 767px) { .section { padding-top: 6rem; padding-bottom: 6rem; } }
@media (max-width: 478px) { .section { padding-top: 4rem; padding-bottom: 4rem; } }

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: .5em 1em;
  border: 0;
  letter-spacing: .5px;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--btn-text);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border-radius: 999px;
  padding: 1.45rem 2.6rem;
  transition: background-color .2s ease, transform .2s ease;
}
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-.2rem); }

.btn-ghost {
  background-color: color-mix(in srgb, var(--white) 8%, transparent);
  color: var(--text-light);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--white) 28%, transparent);
  border-radius: 999px;
  padding: 1.45rem 2.6rem;
  transition: background-color .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background-color: color-mix(in srgb, var(--white) 16%, transparent); }

@media (max-width: 478px) {
  .btn-primary, .btn-ghost { width: 100%; }
}

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: relative;
  z-index: 9999;
  --header-transition: 300ms;
}
.site-header__bar {
  background-color: #fff;
  padding: 1.5rem 16px;
  margin-bottom: 1px;
  box-shadow: 0 0 10px 0 rgba(128, 128, 128, .24);
}
.site-header__inner {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 2rem;
  column-gap: 4rem;
}
@media (max-width: 767px) { .site-header__inner { flex-wrap: nowrap; } }

.site-logo { width: 100%; max-width: 170px; line-height: 1; }
.site-logo img { display: block; width: auto; height: auto; }
@media (max-width: 991px) { .site-logo { z-index: 9999; } }
@media (max-width: 478px) { .site-logo { max-width: 150px; } }

.site-nav {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.site-nav__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__items > li { display: list-item; }
.site-nav__items > li > a {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 600;
  transition: color .3s ease-in-out;
}
.site-nav__items > li > a:hover,
.site-nav__items > li > a[aria-current="page"] { color: var(--brand); }

.header-btn {
  margin-left: auto;
  width: auto;
  background-color: var(--accent);
  color: var(--btn-text);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  border-radius: .4rem;
  padding: 1.2rem 2.4rem;
  white-space: nowrap;
  transition: background-color .3s ease;
}
.header-btn:hover { background-color: var(--accent-hover); }

/* Hamburger toggle (hidden on desktop) */
.site-nav__toggle {
  display: none;
  align-items: center;
  /* Padding + negative margin enlarge the tap target to 44px+ without moving the icon */
  margin: -10px -8px;
  padding: 10px 8px;
  background: transparent;
  border: 0;
  color: var(--brand);
  line-height: 1;
  cursor: pointer;
  z-index: 9999;
}
.site-nav__bars {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 24px;
}
.site-nav__bars::before,
.site-nav__bars::after,
.site-nav__bars span {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 4px;
  background-color: currentColor;
  transition: transform .15s ease, opacity .15s ease, top .15s ease, bottom .15s ease;
}
.site-nav__bars span { top: 50%; margin-top: -1px; }
.site-nav__bars::before { top: 1px; }
.site-nav__bars::after { bottom: 1px; }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars span { transform: rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars::before { top: 11px; opacity: 0; }
.site-nav__toggle[aria-expanded="true"] .site-nav__bars::after { bottom: 11px; transform: rotate(-45deg); }

@media (max-width: 991px) {
  .site-header__bar { z-index: 99999; }
  .site-nav__toggle { display: inline-flex; }
  .site-nav__items {
    position: fixed;
    inset: 7.4rem 0 0 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2.4rem;
    padding: 2.4rem;
    background-color: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .site-nav.is-open .site-nav__items { opacity: 1; visibility: visible; }
  .site-nav__items > li > a { font-size: 2.1rem; width: 100%; color: var(--text); }
  .site-nav__items > li > a:hover,
  .site-nav__items > li > a[aria-current="page"] { color: var(--brand); }
  .header-btn { margin-left: 0; }
}
@media (max-width: 767px) {
  .site-nav { width: auto; margin-left: auto; }
  .site-nav__items { padding-right: 4rem; padding-left: 2rem; }
  .header-btn { margin-right: auto; margin-left: 0; }
}
@media (max-width: 478px) {
  .header-btn { min-width: 100%; justify-content: space-between; }
}

/* Sticky header (desktop only, enabled by JS after scrolling past 400px) */
.site-header.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  animation: header-fade-in var(--header-transition) 1;
}
@keyframes header-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---- Hero -------------------------------------------------------------- */
.hero-dark {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  padding-top: 2.4rem;
  padding-bottom: 0;
  justify-content: center;
  /* First screen = header + hero + advantage strip; main.js sets the exact
     pixel value, this calc is the no-JS fallback (header 7rem + strip 7.2rem). */
  min-height: calc(100vh - 11.8rem);
  min-height: calc(100svh - 11.8rem);
}
@media (max-width: 767px) { .hero-dark { padding-top: 2rem; padding-bottom: 0; min-height: calc(100svh - 11rem); } }

/* Decorative glow placeholders (inactive on the original site; see the optional block at the end) */
.hero-dark__glow {
  position: absolute;
  z-index: 0;
  top: -18rem; right: -10rem;
  width: 48rem; height: 48rem;
  border-radius: 999px;
  pointer-events: none;
}
.hero-dark__glow--gold {
  top: auto; right: auto;
  bottom: 16rem; left: -12rem;
  width: 34rem; height: 34rem;
}

.hero-dark__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 104rem;
  align-items: center;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}
@media (max-width: 478px) { .hero-dark__container { padding-right: 2rem; padding-left: 2rem; } }

.hero-dark__eyebrow {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-bottom: 1.6rem;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-dark__title {
  width: 100%;
  max-width: 20ch;
  margin-bottom: 1.6rem;
  color: var(--text-light);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.hero-dark__lead {
  width: 100%;
  max-width: 62rem;
  margin: 0 0 2.4rem;
  color: color-mix(in srgb, var(--white) 80%, transparent);
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

.hero-dark__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 478px) { .hero-dark__actions { flex-direction: column; width: 100%; } }

.hero-dark__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  max-width: 82rem;
  margin-bottom: 2rem;
  padding: 1.6rem 2.2rem;
  background-color: color-mix(in srgb, var(--white) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  border-radius: 1.8rem;
}
@media (max-width: 478px) {
  .hero-dark__stats { grid-template-columns: 1fr; }
}

.hero-dark__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
@media (max-width: 478px) { .hero-dark__stat { padding-top: 1.6rem; padding-bottom: 1.6rem; } }
.hero-dark__stat-key {
  margin-bottom: .4rem;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}
.hero-dark__stat-label {
  color: color-mix(in srgb, var(--white) 68%, transparent);
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}

.hero-dark__foot {
  position: relative;
  z-index: 1;
  align-items: center;
  padding-top: 0;
  padding-bottom: 2.6rem;
}
.hero-dark__notice {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 104rem;
  margin: 0;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  color: color-mix(in srgb, var(--white) 55%, transparent);
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

/* ---- Advantage marquee ------------------------------------------------- */
.advantage-section {
  padding: 1.2rem 0;
  background-color: var(--dark-bg);
}
.advantage-marquee { width: 100%; overflow: hidden; }
.advantage-track {
  display: flex;
  width: max-content;
  animation: advantage-scroll 26s linear infinite;
}
.advantage-marquee:hover .advantage-track { animation-play-state: paused; }
.advantage-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6rem;
  padding-right: 6rem;
}
.advantage-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  column-gap: 1.2rem;
}
.advantage-box__icon {
  width: 24px;
  max-width: 24px;
  height: auto;
  flex-shrink: 0;
}
.advantage-box__icon--fill path { fill: var(--white); }
.advantage-box__icon--stroke path { stroke: var(--white); }
.advantage-box__text { color: var(--white); font-size: 1.5rem; font-weight: 500; white-space: nowrap; }
@keyframes advantage-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Static, centred fallback when the visitor prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .advantage-track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .advantage-group { flex-wrap: wrap; justify-content: center; gap: 1.2rem 4.4rem; padding-right: 0; }
  .advantage-group[aria-hidden="true"] { display: none; }
}

/* ---- Pricing ("treatments") ------------------------------------------- */
.pricing-med {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  padding-top: 9rem;
  padding-bottom: 9rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) { .pricing-med { padding-top: 6rem; padding-bottom: 6rem; } }

.pricing-med__container {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (max-width: 478px) { .pricing-med__container { padding-right: 0; padding-left: 0; } }

.pricing-med__header { align-items: center; margin-bottom: 3.2rem; }
.pricing-med__eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.pricing-med__title {
  margin-bottom: 1.4rem;
  color: var(--text-light);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}
@media (max-width: 767px) { .pricing-med__title { font-size: 3.4rem; } }
.pricing-med__subtitle {
  max-width: 72ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-light);
  font-size: 1.8rem;
  line-height: 1.55;
  text-align: center;
}
@media (max-width: 478px) { .pricing-med__subtitle { font-size: 1.6rem; } }

.pricing-med__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) { .pricing-med__grid { grid-template-columns: 1fr; } }

.pricing-med__card {
  position: relative;
  padding: 3.2rem;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 2rem;
  transition: all .3s ease-in-out;
}
.pricing-med__card:hover {
  border-color: var(--brand);
  box-shadow: 0 20px 30px -15px rgba(30, 30, 30, .4);
  transform: translateY(-10px);
}
@media (max-width: 478px) { .pricing-med__card { padding: 2.4rem 2rem; } }

.pricing-med__badge {
  width: fit-content;
  margin-bottom: 1.8rem;
  padding: .5rem 1.2rem;
  background-color: var(--brand);
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 10rem;
}
.pricing-med__tags {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.pricing-med__tag {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: .6rem;
  width: fit-content;
  padding: .4rem 1rem;
  background-color: var(--brand-tint);
  border: 1px solid var(--brand-tint-border);
  border-radius: 10rem;
}
.pricing-med__tag-dot {
  width: .9rem;
  height: .9rem;
  background-color: var(--brand);
  border-radius: 50%;
}
.pricing-med__tag-text { color: var(--text); font-size: 1.3rem; font-weight: 600; }
.pricing-med__tag--muted {
  width: fit-content;
  padding: .4rem 1rem;
  background-color: #F3F4F6;
  border: 1px solid var(--border);
  border-radius: 10rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-med__visual {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  width: 100%;
  margin-bottom: 2.4rem;
}
.pricing-med__image-wrap { display: flex; flex-direction: column; width: auto; }
.pricing-med__image { width: 100%; max-width: 64px; }

.pricing-med__card-title {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 478px) { .pricing-med__card-title { font-size: 2.4rem; } }
.pricing-med__price {
  margin-bottom: .4rem;
  color: var(--brand);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.pricing-med__recurring { color: var(--text-secondary); font-size: 1.5rem; }

.pricing-med__features {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 100%;
  margin: 0 0 2.8rem;
  padding: 0;
  list-style: none;
}
.pricing-med__feature {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  column-gap: 1rem;
}
.pricing-med__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
  background-color: var(--brand-tint);
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
}
.pricing-med__feature-text { color: var(--text); font-size: 1.6rem; line-height: 1.35; }

.pricing-med__button {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1.4rem 2rem;
  background-color: var(--accent);
  color: var(--btn-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  transition: all .2s ease-in-out;
}
.pricing-med__button:hover { background-color: var(--accent-hover); }

.pricing-med__disclaimer { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.45; }
.pricing-med__disclaimer--box {
  margin-top: 12px;
  padding: 1rem;
  background-color: var(--light-bg);
  border-radius: 4px;
}
.pricing-med__notice {
  max-width: 100ch;
  margin: 3.6rem auto 0;
  color: color-mix(in srgb, var(--white) 65%, transparent);
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.pricing-med__glow {
  position: absolute;
  z-index: 1;
  top: 8%; right: 8%;
  width: 32rem; height: 32rem;
  background-color: rgba(37, 106, 244, .28);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ---- Treatment info ---------------------------------------------------- */
.treatment-info {
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg);
  padding: 8rem 2.4rem;
}
@media (max-width: 991px) { .treatment-info { padding: 6.4rem 2rem; } }
@media (max-width: 478px) { .treatment-info { padding: 4.8rem 1.6rem; } }

.treatment-info__glow {
  position: absolute;
  z-index: 0;
  top: -20rem; right: -18rem;
  width: 48rem; height: 48rem;
  border-radius: 999px;
  pointer-events: none;
}
.treatment-info__glow--alt {
  top: auto; right: auto;
  bottom: -20rem; left: -16rem;
  width: 38rem; height: 38rem;
}

.treatment-info__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  column-gap: 6.4rem;
  row-gap: 4rem;
  width: 100%;
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) { .treatment-info__container { grid-template-columns: 1fr; column-gap: 0; } }

.treatment-info__media {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
@media (max-width: 991px) { .treatment-info__media { order: 2; } }

.treatment-info__image {
  width: 100%;
  height: 58rem;
  object-fit: cover;
  object-position: 50% 0;
  border-radius: 2rem .8rem 2rem .8rem;
  box-shadow: 0 2.8rem 8rem -5rem color-mix(in srgb, var(--text) 22%, transparent);
}
@media (max-width: 991px) { .treatment-info__image { height: 48rem; } }
@media (max-width: 478px) { .treatment-info__image { height: 34rem; } }

.treatment-info__notice {
  width: 100%;
  margin: 0;
  padding: 1.4rem 1.6rem;
  background-color: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: .8rem;
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
}

.treatment-info__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2rem;
}
@media (max-width: 991px) { .treatment-info__content { order: 1; } }
@media (max-width: 478px) { .treatment-info__content { align-items: stretch; } }

.treatment-info__eyebrow {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: .8rem 1.4rem;
  background-color: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
  border-radius: 999px;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.treatment-info__title {
  width: 100%;
  max-width: 26ch;
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
}
.treatment-info__text {
  width: 100%;
  max-width: 64ch;
  color: var(--text-secondary);
  font-size: 1.8rem;
  line-height: 1.7;
}
.treatment-info__text p { margin: 0; }
.treatment-info__text a { color: var(--text-secondary); }
@media (max-width: 478px) { .treatment-info__text { font-size: 1.6rem; line-height: 1.65; } }

.treatment-info__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.2rem;
  width: 100%;
  margin: .4rem 0 .8rem;
  padding: 0;
  list-style: none;
}
.treatment-info__list-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 1rem;
  padding: 1.2rem 1.4rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: .8rem;
}
.treatment-info__list-dot {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--brand);
  border-radius: 999px;
}
.treatment-info__list-text { color: var(--text); font-size: 1.6rem; font-weight: 600; line-height: 1.45; }
.treatment-info__button { margin-top: .4rem; }
@media (max-width: 478px) { .treatment-info__button { width: 100%; } }

/* ---- "Your Dose, One Price" ------------------------------------------- */
.about-therapy-section { position: relative; }
.about-therapy__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 4rem;
}
@media (max-width: 767px) { .about-therapy__content { grid-template-columns: 1fr; } }
.about-therapy__text-wrap { justify-content: center; row-gap: 2.4rem; }
.about-therapy__text p { margin: 0; }
.about-therapy__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.4rem;
}
@media (max-width: 767px) { .about-therapy__image { position: relative; width: 100%; border-radius: 1.2rem; } }

/* ---- Steps ------------------------------------------------------------- */
.steps-section { background-color: var(--light-bg); }
.steps__inner { align-items: center; }
.steps__title {
  max-width: 24ch;
  margin: 0 auto 1.4rem;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}
.accent-text span { color: var(--brand); }
.steps__subtitle {
  max-width: 46ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-secondary);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 478px) { .steps__subtitle { font-size: 1.6rem; } }

.steps__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
  margin: 5.2rem 0 0;
  padding: 0;
  list-style: none;
}
.steps__track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 3.2rem;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: rgba(37, 106, 244, .22);
}
@media (max-width: 991px) { .steps__track::before { display: none; } }
@media (max-width: 767px) { .steps__track { grid-template-columns: 1fr; gap: 4.4rem; } }

.steps__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) { .steps__item { max-width: 420px; margin-right: auto; margin-left: auto; } }
.steps__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2.4rem;
  background-color: var(--brand);
  border-radius: 999px;
}
.steps__node-num { color: var(--text-light); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.steps__media { width: 100%; margin-bottom: 1.8rem; }
.steps__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.6rem;
}
.steps__step-title {
  margin-bottom: .6rem;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.steps__text {
  max-width: 30ch;
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1.55;
  text-align: center;
}

/* ---- FAQ accordion (shared) -------------------------------------------- */
.faq-section { background-color: #fff; }
.faq-container__content-title {
  margin-bottom: 4.4rem;
  line-height: 1;
  text-align: left;
}
@media (max-width: 991px) { .faq-container__content-title { font-size: 4.4rem; } }
@media (max-width: 767px) { .faq-container__content-title { margin-bottom: 0; font-size: 4rem; text-align: center; max-width: 100%; } }
@media (max-width: 478px) { .faq-container__content-title { font-size: 3.2rem; line-height: 1.3; } }
@media (max-width: 767px) { .faq-container { gap: 4.4rem; } }
@media (max-width: 478px) { .faq-container { row-gap: 2.4rem; } }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.faq-accordion__item {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border .2s ease;
}
.faq-accordion__title { margin: 0; font-size: 2rem; }
.faq-accordion__trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  margin: 0;
  padding: 2.4rem 12px;
  background: none;
  border: 0;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}
.faq-accordion__trigger > span { max-width: calc(100% - 40px); }
@media (max-width: 478px) { .faq-accordion__trigger { font-size: 1.8rem; } }
.faq-accordion__icon {
  color: var(--text);
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  transition: transform .2s ease-in-out;
}
.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon { transform: rotate(180deg); }
.faq-accordion__content {
  padding: 0 12px 4.4rem;
  color: var(--text-secondary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.faq-accordion__content[hidden] { display: none; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer__top {
  padding-bottom: 7rem;
  background-color: var(--light-bg);
  border-top: 1px solid var(--accent);
}
@media (max-width: 767px) { .site-footer__top { padding-bottom: 4rem; } }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 4fr;
  align-items: stretch;
  gap: 4rem;
  margin-bottom: 32px;
}
@media (max-width: 991px) { .site-footer__grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .site-footer__grid { gap: 40px; } }

.site-footer__brand { position: relative; width: 100%; max-width: 400px; }
@media (max-width: 478px) { .site-footer__brand { max-width: 100%; align-items: center; } }
.site-footer__logo { display: inline-block; width: 100%; max-width: 240px; margin-bottom: 2.4rem; }
@media (max-width: 478px) { .site-footer__logo { margin-right: auto; margin-left: auto; } }
.site-footer__tagline {
  max-width: 32ch;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 14px;
  opacity: .8;
}
@media (max-width: 478px) { .site-footer__tagline { text-align: center; } }

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 478px) { .site-footer__columns { grid-template-columns: 1fr; } }

.footer-column { width: auto; }
@media (max-width: 478px) { .footer-column { width: 100%; } }
.footer-column--title {
  margin-bottom: 1.6rem;
  color: var(--brand-dark);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-column--menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-column--menu a {
  display: block;
  padding: 6px 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  transition: color .2s ease-in-out;
}
.footer-column--menu a:hover { color: var(--brand); }
.footer-column--company { margin-bottom: 4rem; }

.site-footer__bottom {
  padding-top: 0;
  padding-bottom: 6.4rem;
  row-gap: 4.4rem;
  background-color: var(--light-bg);
}
.site-footer__notice {
  margin-bottom: 2.4rem;
  color: var(--text-secondary);
  font-size: 14px;
}
.site-footer__divider {
  width: 100%;
  height: 1px;
  margin: 0 0 2.4rem;
  border: 0;
  border-top: 1px solid var(--brand);
}
.site-footer__row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 767px) { .site-footer__row { flex-direction: column-reverse; } }
.site-footer__copyright { color: var(--text-secondary); font-size: var(--text-s); }
.site-footer__payments { display: flex; column-gap: 1.2rem; }
.footer-pay-icon { height: 24px; width: auto; }
.site-footer__legal { color: var(--text-secondary); font-size: 1.2rem; }
.site-footer__legal a { color: var(--text-secondary); }
.site-footer__legal p { margin: 0 0 1.2em; }
.site-footer__legal p:last-child { margin-bottom: 0; }

/* ---- Page title band + legal pages ------------------------------------ */
.page-title,
.legal-page__section { background-color: var(--dark-bg); }
@media (max-width: 991px) { .legal-page__section { padding-top: 6rem; padding-bottom: 6rem; } }
.legal-page__title { color: #fff; }
@media (max-width: 767px) { .legal-page__title { font-size: 3.6rem; } }
@media (max-width: 478px) { .legal-page__title { font-size: 2.4rem; } }

.legal-page__content-section { padding-top: 4rem; padding-bottom: 4rem; }
@media (max-width: 767px) { .legal-page__content-section { padding-top: 60px; } }
.legal-page__content-container { width: 100%; max-width: 960px; }
.legal-page__content { width: 100%; }
.legal-page__content p { word-wrap: break-word; }
.legal-page__content h2 { margin: 2.4rem 0 1.2rem; font-size: 2.4rem; line-height: 1.3; }
.legal-page__content a { color: inherit; text-decoration: underline; }
.legal-page__content a:hover { color: var(--brand); }
.legal-page__content table { width: 100%; border-collapse: collapse; }
.legal-page__content td { padding: .5em; border: 1px solid currentColor; vertical-align: top; }
.legal-page__content figure { margin: 1em 0; overflow-x: auto; }

/* ---- About page -------------------------------------------------------- */
.treat-info__section { position: relative; background-color: #fff; }
@media (max-width: 991px) { .treat-info__section { row-gap: 8rem; } }
.treat-info__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 6.4rem;
  justify-content: center;
  padding: 6.4rem;
  background-color: var(--light-bg);
  border-radius: 1.2rem;
}
@media (max-width: 991px) { .treat-info__container { position: relative; gap: 2.4rem; padding: 2.4rem; } }
@media (max-width: 767px) { .treat-info__container { grid-template-columns: 1fr; gap: 4rem; } }
.treat-info__content { z-index: 5; justify-content: center; }
@media (max-width: 991px) { .treat-info__content { max-width: 100%; } }
@media (max-width: 767px) { .treat-info__content { order: 2; } }
.treat-info__content-heading {
  margin-bottom: 2.4rem;
  color: #1A1A1A;
  font-weight: 500;
  line-height: 1.3;
}
.treat-info__content-text {
  z-index: 2;
  margin-bottom: 4rem;
  color: #333;
  font-size: 1.8rem;
}
.treat-info__content-text p { margin: 0; }
.treat-info__content-text a { color: #333; }
@media (max-width: 478px) { .treat-info__content-text { font-size: 1.6rem; } }
.treat-info__image-wrap { position: relative; }
@media (max-width: 767px) { .treat-info__image-wrap { order: 1; max-height: 100vw; } }
.treat-info__image {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 991px) { .treat-info__image { position: relative; margin-right: auto; margin-left: auto; } }

/* ---- FAQ page ---------------------------------------------------------- */
.faq-page__section { padding-top: 6rem; padding-bottom: 6rem; }
@media (max-width: 991px) { .faq-page__section { padding-top: 4rem; padding-bottom: 4rem; } }
.faq-section--heading { margin-bottom: 2.4rem; font-size: 2.6rem; font-weight: 800; }
.faq-page__accordion { margin-bottom: 6.4rem; }
.faq-page__more-title { margin-bottom: .8rem; font-weight: 700; }
.faq-page__more-text { margin-bottom: .8rem; }
.text-centered { text-align: center; }

/* ---- Contact page ------------------------------------------------------ */
.contact__container { flex-direction: row; gap: 4rem; }
@media (max-width: 767px) { .contact__container { flex-direction: column-reverse; } }
.contact__info { gap: 4rem; }
.contact__form { height: auto; }
.contact-icon-text-row {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: .8rem;
  width: auto;
  margin-bottom: 1.2rem;
}
.icon-text-row--text { color: var(--text); font-size: 1.8rem; font-weight: 500; }
.contact__address {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 500;
}
.contact__address p, .contact-row__text p { margin: 0; }
.contact-row__text { color: var(--text); font-size: 1.8rem; font-weight: 500; }
.contact__hours { margin-bottom: .8rem; }

/* ---- Intake page ------------------------------------------------------- */
.intake-section { background-color: var(--surface-alt); }
.intake-code { width: 100%; }
#intake_placement { width: 100%; }
#intake_placement iframe { min-width: 100% !important; background-color: #fff !important; }
#myModal-mdl { z-index: 9999999999999999 !important; }

/* ---- Order pages (vendor markup keeps its own inline styles) ----------- */
.order-page__code { width: 100%; }

/* ---- 404 --------------------------------------------------------------- */
.not-found { text-align: center; align-items: center; }
.not-found p { margin: 2rem 0 3rem; color: var(--text-secondary); }

/* ---- Native contact form (replaces the WLMD embed until they rebrand) -- */
.contact-form__title { margin-bottom: 2rem; font-size: var(--h-3); }
.contact-form { display: flex; flex-direction: column; width: 100%; }
.contact-form__label { margin-bottom: .6rem; font-size: 1.5rem; font-weight: 600; }
.contact-form__input {
  width: 100%;
  margin-bottom: 1.8rem;
  padding: 1.2rem 1.4rem;
  font: inherit;
  font-size: 1.6rem;
  color: var(--text);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: .8rem;
}
.contact-form__input:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.contact-form__textarea { resize: vertical; }
.contact-form__dob { margin: 0 0 .4rem; padding: 0; border: 0; }
.contact-form__dob-row { display: flex; gap: 1.2rem; }
.contact-form__dob-row label { flex: 1; }
.contact-form__sub { display: block; font-size: 1.3rem; color: var(--text-secondary); }
.contact-form__sub .contact-form__input { margin-top: .4rem; margin-bottom: 1.4rem; }
.contact-form__status { margin-top: 1.6rem; font-size: 1.5rem; font-weight: 600; color: var(--brand-dark); }
.contact-form__status--error { color: #B4232A; }
.contact-form__check { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; font-size: 1.4rem; line-height: 1.5; }
.contact-form__check input { flex-shrink: 0; width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--brand); }
.contact-form__submit { align-self: flex-start; }
.contact-form__note { margin-top: 1.4rem; font-size: 1.4rem; color: var(--text-secondary); }
.contact-form__note a, .contact-form__fallback a { color: var(--brand); }
.contact-form__fallback { margin-top: 2rem; padding: 1.6rem; background-color: var(--surface-alt); border: 1px solid var(--border); border-radius: .8rem; }
.contact-form__fallback p { margin-bottom: 1.2rem; font-size: 1.5rem; }

/* ==========================================================================
   OPTIONAL: decorative effects that were defined on the original Taylaz site
   but never took effect there (the builder emitted them with a literal
   "%root%" selector, which browsers ignore). Uncomment to enable: hero
   gradient, yellow highlight on "long run", eyebrow lines, stat dividers,
   soft glows and a highlighted price in the treatment section.
   ========================================================================== */
/*
.hero-dark {
  background-image: linear-gradient(158deg, #071A4A 0%, var(--dark-bg) 52%, var(--brand-dark) 100%);
}
.hero-dark__glow {
  filter: blur(20px);
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--brand) 55%, transparent) 0%, transparent 70%);
}
.hero-dark__glow--gold {
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 70%);
}
.hero-dark__eyebrow::before,
.hero-dark__eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  margin: 0 1rem;
  vertical-align: middle;
  background: color-mix(in srgb, var(--accent) 60%, transparent);
}
.hero-dark__title span { color: var(--accent); }
.hero-dark__stats > * + * { border-left: 1px solid color-mix(in srgb, var(--white) 14%, transparent); }
@media (max-width: 478px) {
  .hero-dark__stats > * + * { border-left: 0; border-top: 1px solid color-mix(in srgb, var(--white) 14%, transparent); }
}
.treatment-info__glow {
  filter: blur(16px);
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--brand) 16%, transparent) 0%, transparent 68%);
}
.treatment-info__glow--alt {
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--brand-dark) 14%, transparent) 0%, transparent 68%);
}
.treatment-info__title { text-wrap: balance; }
.treatment-info__title span { color: var(--brand); }
.treatment-info__text { text-wrap: pretty; }
*/
