
:root {
  --blue: #29a9e0;
  --blue-dark: #168fc2;
  --blue-deep: #12698e;
  --ink: #20313a;
  --muted: #64737b;
  --pale: #ebf8fd;
  --pale-2: #f8fcfe;
  --white: #ffffff;
  --border: #d9eaf1;
  --shadow: 0 18px 50px rgba(18, 105, 142, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a,
.dropdown-button {
  border: 0;
  background: none;
  font: inherit;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 13px 0;
}

.site-nav a:hover,
.dropdown-button:hover { color: var(--blue); }

.nav-cta {
  padding: 11px 18px !important;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white) !important;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 47px;
  left: -15px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: .92rem;
}

.dropdown-menu a:hover {
  background: var(--pale);
  color: var(--blue-deep);
}

.hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at 82% 18%, #d8f1fb 0, transparent 34%),
    linear-gradient(135deg, #ffffff, var(--pale));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.hero-copy {
  max-width: 670px;
  margin: 25px 0 31px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: var(--blue);
  color: var(--white);
}

.primary:hover { background: var(--blue-dark); }

.secondary {
  border: 1px solid var(--blue-deep);
  color: var(--blue-deep);
}

.secondary:hover {
  background: var(--blue-deep);
  color: var(--white);
}

.hero-photo {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background: #dceff6;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,105,142,.25), transparent 55%);
}

.photo-note {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 15px;
  color: var(--white);
  background: rgba(18,105,142,.82);
  backdrop-filter: blur(8px);
}

.photo-note strong,
.photo-note span { display: block; }
.photo-note span { font-size: .88rem; color: #e3f5fc; }

.trust-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.trust-grid div {
  padding: 27px 29px;
  border-right: 1px solid var(--border);
}

.trust-grid div:first-child { border-left: 1px solid var(--border); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--blue-deep); }
.trust-grid span { margin-top: 4px; color: var(--muted); font-size: .9rem; }

.section { padding: 94px 0; }
.pale-section { background: var(--pale-2); }

.two-column {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 95px;
}

.prose p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

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

.icon-card {
  min-height: 260px;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  color: var(--blue);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card h3 {
  margin: 38px 0 11px;
  color: var(--blue-deep);
  font-size: 1.4rem;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e8f5fa;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy p,
.feature-copy li { color: var(--muted); }

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.price-wrap {
  max-height: 575px;
  overflow: auto;
  padding-right: 8px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.price-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--white);
}

.price-card h3 {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 1.28rem;
}

.price-card > div {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.price-card > div span { max-width: 70%; }
.price-card > div strong { text-align: right; white-space: nowrap; }
.price-card small { display: block; margin-top: 11px; color: var(--muted); }

.hours-section { background: var(--pale); }

.hours-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.hours-copy p { color: var(--muted); }

.hours-card {
  padding: 16px 31px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.hours-card div:last-child { border-bottom: 0; }
.hours-card strong { color: var(--blue-deep); }

.contact-section {
  padding: 94px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.contact-section p { color: #e2f5fc; }

.contact-details {
  border-top: 1px solid rgba(255,255,255,.28);
}

.contact-details a,
.contact-details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  text-decoration: none;
}

.contact-details span { color: #c6ebf8; font-size: .85rem; }
.contact-details strong { overflow-wrap: anywhere; }

.site-footer {
  padding: 57px 0 22px;
  background: #eef8fc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 55px;
}

.footer-logo { width: 180px; }
.footer-grid strong, .footer-grid a { display: block; }
.footer-grid a { margin-top: 8px; text-decoration: none; color: var(--muted); }
.footer-grid a:hover { color: var(--blue); }
.footer-grid p { color: var(--muted); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 47px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .82rem;
}

/* FACIAL AESTHETICS PAGE */
.page-hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at 82% 20%, #d8f1fb 0, transparent 34%),
    linear-gradient(135deg, #fff, var(--pale));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 68px;
  align-items: center;
}

.page-hero p { color: var(--muted); font-size: 1.08rem; }

.treatment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  margin-bottom: 76px;
}

.treatment-row.reverse .treatment-image { order: 2; }

.treatment-image {
  height: 405px;
  overflow: hidden;
  border-radius: 22px;
  background: #e7f5fa;
  box-shadow: var(--shadow);
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-copy p,
.treatment-copy li { color: var(--muted); }

.price-pill {
  display: inline-block;
  margin-top: 17px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--pale);
  font-weight: 800;
}

.clinician-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
}

.clinician-card img {
  width: 280px;
  height: 330px;
  object-fit: cover;
  object-position: top;
  border-radius: 17px;
}

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

.form-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.contact-panel {
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.contact-panel h3 { margin-top: 0; color: var(--blue-deep); }
.contact-panel a { color: var(--blue-deep); font-weight: 800; overflow-wrap: anywhere; }
.small-note { color: var(--muted); font-size: .86rem; }

.form-wrap {
  height: 820px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.form-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 950px) {
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px 20px 25px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }

  .site-nav.open { display: flex; }

  .site-nav a,
  .dropdown-button {
    width: 100%;
    text-align: left;
    padding: 11px 0;
  }

  .nav-cta { text-align: center !important; margin-top: 7px; }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 5px 14px;
  }

  .dropdown.open .dropdown-menu { display: block; }

  .hero-grid,
  .two-column,
  .feature-section,
  .hours-grid,
  .contact-grid,
  .page-hero-grid,
  .treatment-row,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .treatment-row.reverse .treatment-image { order: 0; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }
  .nav-wrap { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand img { width: 155px; }
  .hero { padding: 56px 0; }
  h1 { font-size: 2.58rem; }
  .hero-photo { height: 390px; }
  .button-row .button { width: 100%; }
  .trust-grid, .icon-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .section-heading { flex-direction: column; align-items: start; }
  .feature-image, .treatment-image { height: 330px; }
  .price-card > div { flex-direction: column; gap: 4px; }
  .price-card > div span { max-width: 100%; }
  .price-card > div strong { text-align: left; white-space: normal; }
  .clinician-card { grid-template-columns: 1fr; padding: 24px; }
  .clinician-card img { width: 100%; height: 370px; }
  .form-wrap { height: 930px; }
  .contact-details a, .contact-details > div { grid-template-columns: 1fr; gap: 5px; }
  .footer-bottom { flex-direction: column; }
}


/* Selected photographic treatment cards */
.image-treatment-card {
  padding: 0 0 28px;
  overflow: hidden;
}

.treatment-card-image {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.image-treatment-card .icon,
.image-treatment-card h3,
.image-treatment-card p {
  margin-left: 28px;
  margin-right: 28px;
}

.image-treatment-card .icon {
  margin-top: 24px;
}

.image-treatment-card h3 {
  margin-top: 23px;
}

/* More polished hero image crop */
.hero-photo img {
  object-position: center center;
  filter: saturate(.93) contrast(1.02);
}

/* Make anchor buttons feel responsive and clearly interactive */
.button {
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 105, 142, .14);
}

@media (max-width: 620px) {
  .treatment-card-image {
    height: 210px;
  }
}


/* Map */
.map-section { background: var(--white); }
.map-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.map-grid p { color: var(--muted); }
.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Patient-information pages */
.policy-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, #d8f1fb 0, transparent 34%),
    linear-gradient(135deg, #fff, var(--pale));
}
.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}
.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
  align-items: start;
}
.policy-content {
  min-width: 0;
}
.policy-content h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -.025em;
}
.policy-content h2:first-of-type { margin-top: 30px; }
.policy-content h3 {
  margin: 32px 0 8px;
  color: var(--blue-deep);
  font-size: 1.25rem;
}
.policy-content p,
.policy-content li {
  color: var(--muted);
}
.policy-content li { margin-bottom: 8px; }
.policy-intro {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: 1.15rem;
}
.policy-content a {
  color: var(--blue-deep);
}
.text-link {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.policy-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--pale-2);
}
.policy-sidebar strong,
.policy-sidebar a {
  display: block;
}
.policy-sidebar strong {
  margin-bottom: 11px;
  color: var(--blue-deep);
}
.policy-sidebar a {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
}
.policy-sidebar a:last-child { border-bottom: 0; }
.policy-sidebar a:hover { color: var(--blue); }
.notice-box {
  margin-bottom: 30px;
  padding: 22px;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: var(--pale);
}
.notice-box p { margin: 5px 0 0; }
.notice-box.warning {
  border-left-color: #d58a18;
  background: #fff8e9;
}
.certificate-wrap {
  max-width: 700px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.certificate-wrap img {
  width: 100%;
  height: auto;
}
.details-table {
  border-top: 1px solid var(--border);
}
.details-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.details-table span { color: var(--muted); }
.contact-list {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--pale-2);
}

@media (max-width: 950px) {
  .map-grid,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .policy-sidebar {
    position: static;
  }
}
@media (max-width: 620px) {
  .details-table div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.practice-gallery { padding-top: 20px; }

/* Homepage practice video */
.hero-video {
  position: relative;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0e1d24;
}
.hero-video .photo-note {
  pointer-events: none;
  bottom: 54px;
}


/* Fix native video controls: the old hero-image overlay was sitting above them. */
.hero-video::after {
  display: none !important;
}

.hero-video video {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.hero-video .photo-note {
  z-index: 2;
  pointer-events: none;
  bottom: 64px;
}


/* Final homepage video layout: preserve the complete 16:9 frame. */
.hero .container {
  width: min(1280px, calc(100% - 40px));
}

.hero-grid {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
}

.hero-media {
  width: 100%;
  min-width: 0;
}

.hero-welcome-card {
  margin: 0 0 14px;
  padding: 15px 19px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  box-shadow: 0 10px 28px rgba(18, 105, 142, 0.12);
}

.hero-welcome-card strong,
.hero-welcome-card span {
  display: block;
}

.hero-welcome-card strong {
  font-size: 1rem;
}

.hero-welcome-card span {
  margin-top: 2px;
  color: #e3f5fc;
  font-size: .9rem;
}

.hero-photo.hero-video {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

.hero-photo.hero-video::after {
  display: none !important;
}

.hero-photo.hero-video video {
  position: static;
  z-index: auto;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  display: block;
  background: #000;
  pointer-events: auto;
}

/* The old image caption is no longer used over the video. */
.hero-video .photo-note {
  display: none !important;
}

@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-media {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .hero-photo.hero-video {
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .hero-welcome-card {
    padding: 13px 15px;
    border-radius: 13px;
  }
}


/* August treatment/team updates */
.treatments-deep-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(18,105,142,.28);
}
.treatments-deep-link:hover { color: var(--blue); }

.saturday-hours strong {
  max-width: 470px;
  text-align: right;
}
.saturday-hours small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.35;
}

.team-intro { margin-top: 20px; color: var(--muted); }
.team-directory {
  display: grid;
  gap: 12px;
}
.team-person {
  padding: 19px 21px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}
.team-person h3 {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-size: 1.12rem;
}
.team-person p {
  margin: 3px 0;
  color: var(--muted);
}
.team-person span {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
}
.team-nurses p {
  display: inline-block;
  margin-right: 18px;
}

.certificate-actions { margin-top: 28px; }

.treatments-page-hero .container { max-width: 980px; }
.treatments-lead {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}
.treatment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.treatment-detail-card {
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(18,105,142,.05);
}
.treatment-detail-icon { font-size: 2rem; }
.treatment-detail-card h2 {
  margin: 17px 0 18px;
  color: var(--blue-deep);
  font-size: 1.75rem;
}
.treatment-detail-card p,
.treatment-detail-card li { color: var(--muted); }
.treatment-detail-card li { margin-bottom: 8px; }
.treatment-detail-card a { color: var(--blue-deep); font-weight: 700; }
.specialist-card {
  background: linear-gradient(145deg, #f7fcfe, #eaf8fe);
}

.treatments-list-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 75px;
  align-items: start;
}
.treatments-list-layout > div:first-child > p:last-child { color: var(--muted); }
.treatments-master-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 11px;
}
.treatments-master-list div {
  position: relative;
  padding: 15px 17px 15px 43px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.treatments-master-list div::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--blue);
}
.treatment-rehab { align-items: center; }

@media (max-width: 950px) {
  .treatment-detail-grid,
  .treatments-list-layout { grid-template-columns: 1fr; }
  .treatments-list-layout { gap: 38px; }
}
@media (max-width: 620px) {
  .treatment-detail-grid,
  .treatments-master-list { grid-template-columns: 1fr; }
  .saturday-hours { flex-direction: column; }
  .saturday-hours strong { max-width: none; text-align: left; }
}
