@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 200 800;
  src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
}

:root {
  --navy: #07364b;
  --navy-deep: #052b3d;
  --blue: #12669a;
  --sapphire-blue: #015cab;
  --brand-primary: var(--sapphire-blue);
  --brand-primary-soft: #eaf4fb;
  --sky: #d8f1f4;
  --coral: #f47b65;
  --coral-dark: #d85e4c;
  --sun: #f6cf66;
  --mint: #b9ddc8;
  --lime: #dce979;
  --cream: #fbf8f1;
  --ink: #12303c;
  --muted: #5f747c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 43, 61, 0.16);
  --font-body: "DM Sans";
  --font-display: "Bricolage Grotesque";
}

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

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f6cf66;
  outline-offset: 4px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.utility-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.79rem;
  letter-spacing: 0.02em;
}

.utility-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 36px;
  padding: 0 4.25vw;
}

.utility-inner p,
.utility-links {
  align-items: center;
  display: flex;
  gap: 1.3rem;
  margin: 0;
}

.utility-links a:hover {
  color: var(--sun);
}

.pulse-dot {
  animation: pulse 2.4s infinite;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 0.55rem;
  width: 7px;
}

.site-header {
  align-items: center;
  background: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 92px;
  padding: 0.9rem 4.25vw;
  position: relative;
  z-index: 20;
}

.brand {
  flex: 0 0 auto;
}

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

.desktop-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  font-size: 0.94rem;
  font-weight: 700;
  gap: 2.1rem;
  justify-content: flex-end;
  min-width: 0;
}

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

.desktop-nav > a:not(.header-button)::after {
  background: var(--coral);
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav > a:not(.header-button):hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-button,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-button {
  background: var(--brand-primary);
  color: var(--white);
  min-height: 48px;
  padding: 0.8rem 1.35rem;
}

.desktop-appointment {
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-button:hover,
.button:hover {
  box-shadow: 0 10px 24px rgba(5, 43, 61, 0.18);
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  list-style: none;
  min-height: 46px;
  width: 46px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  background: var(--navy);
  border-radius: 2px;
  height: 2px;
  width: 25px;
}

.mobile-menu {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 290px;
  padding: 1.4rem;
  position: absolute;
  right: 0;
  top: 54px;
}

.home-hero {
  background: var(--sapphire-blue);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  background: var(--navy);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  height: 460px;
  left: -300px;
  opacity: 1;
  position: absolute;
  top: 120px;
  width: 460px;
}

.home-hero .eyebrow.light {
  color: var(--white);
}

.hero-copy {
  align-self: center;
  color: var(--white);
  max-width: 720px;
  padding: 5.5rem 3vw 7.5rem 7vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 1.35rem;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sun);
}

.hero-copy h1 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(4rem, 6.4vw, 7.2rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.87;
  margin: 0;
  max-width: 720px;
}

.hero-copy h1 span {
  color: var(--lime);
  display: block;
  font-style: italic;
  font-weight: 650;
  margin-top: 0.15em;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.72;
  margin: 2rem 0 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.button {
  column-gap: 0.65rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
}

.button .sapphire-icon {
  font-size: 1.15rem;
}

.button-coral {
  background: var(--coral);
  color: var(--navy-deep);
}

.button-coral:hover {
  background: #ff927d;
}

.text-link {
  align-items: center;
  column-gap: 0.4rem;
  display: inline-flex;
  font-weight: 800;
}

.light-link {
  color: var(--white);
}

.text-link .sapphire-icon {
  display: inline-block;
  transition: transform 180ms ease;
}

.text-link:hover .sapphire-icon {
  transform: translateX(4px);
}

.hero-proof {
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.65rem 1.4rem;
  margin-top: 2.6rem;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li {
  align-items: center;
  display: inline-flex;
}

.hero-proof li::before {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  height: 5px;
  margin-right: 0.55rem;
  width: 5px;
}

.hero-visual {
  min-height: 700px;
  padding: 3.5rem 4.5vw 4.8rem 1.4rem;
  position: relative;
}

.hero-photo-shell {
  animation: photoIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  border-radius: 38% 38% 6% 38% / 34% 28% 8% 42%;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  height: 100%;
  min-height: 590px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-photo-shell::after {
  background: linear-gradient(110deg, transparent 60%, rgba(5, 43, 61, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-photo-shell img {
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 900ms ease;
  width: 100%;
}

.hero-video-shell {
  background: #0b4b64;
}

.home-hero-video {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
  width: 100%;
}

.hero-visual:hover .hero-photo-shell img,
.hero-visual:hover .home-hero-video {
  transform: scale(1.025);
}

.floating-note {
  animation: float 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(5, 43, 61, 0.18);
  color: var(--navy-deep);
  position: absolute;
  z-index: 4;
}

.note-top {
  align-items: center;
  border-radius: 999px;
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  left: -3.2rem;
  padding: 0.8rem 1.05rem;
  top: 8rem;
}

.note-dot {
  background: var(--coral);
  border-radius: 50%;
  height: 10px;
  margin-right: 0.55rem;
  width: 10px;
}

.note-bottom {
  align-items: center;
  animation-delay: -2.2s;
  border-radius: 22px;
  bottom: 3.3rem;
  display: flex;
  gap: 0.7rem;
  padding: 0.8rem 1.05rem;
  right: 2.5vw;
}

.note-bottom strong {
  color: var(--coral-dark);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.note-bottom span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 125px;
}

.hero-squiggle {
  bottom: 0.4rem;
  color: var(--sun);
  font-family: serif;
  font-size: 9rem;
  line-height: 1;
  opacity: 0.85;
  position: absolute;
  right: 43%;
  transform: rotate(-12deg);
  z-index: 3;
}

.quick-actions {
  --quick-overlap: 2.8rem;
  background: linear-gradient(
    to bottom,
    transparent 0 var(--quick-overlap),
    var(--cream) var(--quick-overlap) 100%
  );
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: calc(-1 * var(--quick-overlap)) auto 0;
  max-width: 1280px;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 8;
}

.appointment-actions {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.quick-card {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(5, 43, 61, 0.1);
  min-height: 176px;
  padding: 1.55rem 1.65rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover {
  box-shadow: 0 25px 50px rgba(5, 43, 61, 0.16);
  transform: translateY(-5px) rotate(-0.35deg);
}

.quick-coral {
  background: var(--coral);
}

.quick-sun {
  background: var(--sun);
}

.quick-mint {
  background: var(--mint);
}

.quick-eyebrow,
.quick-detail {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
}

.quick-eyebrow {
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  opacity: 0.72;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  letter-spacing: -0.04em;
}

.quick-detail {
  margin-top: 1.25rem;
}

.quick-detail b {
  float: right;
  font-size: 1rem;
}

.quick-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.quick-card-actions a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.25rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.quick-card-actions .sapphire-icon,
.quick-card-actions .sapphire-external-link-icon {
  height: 1em;
  width: 1em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.sp-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.story-section {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7.5rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(5rem, 9vw, 9rem) 2rem;
}

.story-copy .eyebrow,
.section-heading-row .eyebrow,
.team-heading .eyebrow,
.sports-intro .eyebrow,
.expect-section .eyebrow,
.faq-section .eyebrow {
  color: var(--coral-dark);
}

.story-copy h2,
.section-heading-row h2,
.medical-home-copy h2,
.team-heading h2,
.final-cta h2,
.sports-intro h2,
.concerns-heading h2,
.sports-visit-copy h2,
.expect-heading h2,
.provider-copy h2,
.faq-intro h2,
.sports-final-cta h2 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.story-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.1rem);
}

.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-copy .section-lede {
  margin: 1.6rem 0;
}

.dark-link {
  color: var(--brand-primary);
}

.story-stat-row {
  border-top: 1px solid rgba(18, 48, 60, 0.17);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
  list-style: none;
  padding-top: 1.5rem;
}

.story-stat-row li {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.story-stat-row strong {
  color: var(--brand-primary);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2.4rem;
}

.story-stat-row span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 120px;
}

.story-collage {
  min-height: 650px;
  position: relative;
}

.story-photo {
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
  width: 100%;
}

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

.story-photo-main {
  border-radius: 48% 48% 12% 12% / 38% 38% 9% 9%;
  height: 580px;
  left: 0;
  top: 0;
  width: 78%;
}

.story-photo-main img {
  object-position: center center;
}

.story-photo-small {
  border: 9px solid var(--cream);
  border-radius: 28px;
  bottom: 0;
  height: 290px;
  right: 0;
  transform: rotate(3deg);
  width: 43%;
}

.collage-label {
  background: var(--sun);
  border-radius: 999px;
  bottom: 8.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  left: -1.5rem;
  padding: 0.85rem 1.1rem;
  position: absolute;
  transform: rotate(-5deg);
  z-index: 4;
}

.collage-dots {
  background-image: radial-gradient(var(--coral) 2.2px, transparent 2.2px);
  background-size: 14px 14px;
  height: 100px;
  position: absolute;
  right: 0.5rem;
  top: 1.8rem;
  width: 110px;
  z-index: -1;
}

.services-section {
  background: #e8f4f5;
  padding: clamp(5rem, 8vw, 8rem) 4vw;
}

.section-heading-row {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.35fr 0.65fr;
  margin: 0 auto 3.5rem;
  max-width: 1280px;
}

.section-heading-row h2 {
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  max-width: 900px;
}

.section-heading-row > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.service-card {
  border-radius: 28px;
  min-height: 310px;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}

.service-grid > a.service-card {
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-grid > a.service-card:hover {
  box-shadow: 0 18px 38px rgba(5, 43, 61, 0.14);
  transform: translateY(-4px);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 5;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 7;
}

.service-card h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 2.5rem 0 1rem;
  max-width: 480px;
}

.service-card p {
  line-height: 1.65;
  max-width: 500px;
}

.service-number {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.service-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 0 1rem !important;
  text-transform: uppercase;
}

.service-card a {
  bottom: 2rem;
  font-weight: 800;
  position: absolute;
}

.service-card a span {
  margin-left: 0.3rem;
}

.card-arrow {
  bottom: 1.5rem;
  font-size: 2rem;
  position: absolute;
  right: 1.8rem;
}

.service-card-coral {
  background: var(--coral);
}

.service-card-sky {
  background: var(--sky);
}

.service-card-navy {
  background: var(--navy);
  color: var(--white);
}

.service-card-navy .service-number,
.service-card-navy p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-navy h3 {
  color: var(--lime);
}

.service-card-sapphire {
  background: var(--brand-primary);
  color: var(--white);
}

.service-card-sapphire .service-number,
.service-card-sapphire p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card-sapphire h3 {
  color: var(--lime);
}

.service-card-sun {
  background: var(--sun);
}

.services-section .service-card-identity-early-childhood {
  background: var(--sapphire-blue);
  color: var(--white);
}

.services-section .service-card-identity-early-childhood h3,
.services-section .service-card-identity-early-childhood p,
.services-section .service-card-identity-early-childhood .service-number,
.services-section .service-card-identity-early-childhood .card-arrow {
  color: var(--white);
}

.medical-home-section {
  align-items: stretch;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.medical-home-photo {
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.medical-home-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  transition: transform 900ms ease;
  width: 100%;
}

.medical-home-section:hover .medical-home-photo img {
  transform: scale(1.02);
}

.photo-caption {
  background: var(--sun);
  bottom: 1.5rem;
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 800;
  left: 1.5rem;
  padding: 0.8rem 1.05rem;
  position: absolute;
  transform: rotate(-2deg);
}

.medical-home-copy {
  align-self: center;
  color: var(--white);
  padding: clamp(4rem, 7vw, 7rem);
}

.medical-home-copy h2 {
  color: var(--lime);
  font-size: clamp(3rem, 4.7vw, 5.2rem);
}

.medical-home-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 1.6rem 0;
}

.check-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  font-weight: 700;
  padding: 0.9rem 0;
}

.check-list li::before {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: var(--navy-deep);
  content: "✓";
  display: inline-flex;
  font-size: 0.7rem;
  height: 22px;
  justify-content: center;
  margin-right: 0.8rem;
  width: 22px;
}

.team-section {
  background: var(--cream);
  padding: clamp(5.5rem, 9vw, 9rem) 4vw;
}

.team-heading {
  margin: 0 auto 3rem;
  max-width: 970px;
  text-align: center;
}

.team-heading h2 {
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.team-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 1.4rem auto 0;
  max-width: 650px;
}

.team-photo-wrap {
  border-radius: 38px;
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
  position: relative;
}

.team-photo-wrap > img {
  height: clamp(420px, 53vw, 680px);
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.team-photo-card {
  background: var(--white);
  border-radius: 18px;
  bottom: 1.5rem;
  box-shadow: 0 14px 35px rgba(5, 43, 61, 0.18);
  display: flex;
  flex-direction: column;
  left: 1.5rem;
  padding: 1rem 1.2rem;
  position: absolute;
}

.team-photo-card strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.25rem;
}

.team-photo-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.final-cta {
  background: var(--coral);
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 2rem;
  position: relative;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(3.4rem, 6.6vw, 7.6rem);
  margin: 0 auto;
  max-width: 1100px;
}

.final-cta > p:not(.eyebrow) {
  margin: 1.2rem auto 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.button-navy {
  background: var(--brand-primary);
  color: var(--white);
}

.button-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.cta-orbit {
  border: 3px solid rgba(7, 54, 75, 0.16);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 300px;
  left: -110px;
  top: -130px;
  width: 300px;
}

.orbit-two {
  bottom: -170px;
  height: 360px;
  right: -120px;
  width: 360px;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 5vw 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  margin: 0 auto;
  max-width: 1280px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  width: 210px;
}

.footer-brand p {
  line-height: 1.65;
  max-width: 340px;
}

.footer-phone {
  color: var(--lime);
  display: inline-block;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 750;
  margin-top: 0.6rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-column h2 {
  color: var(--white);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.footer-column a,
.footer-column p,
.footer-column span {
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-column a:hover {
  color: var(--sun);
}

.footer-location p {
  margin: 0 0 0.7rem;
}

.footer-location span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-address {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 0.18em;
}

.footer-location-link {
  align-items: center;
  column-gap: 0.4rem;
  display: inline-flex;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-size: 0.7rem;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin: 4rem auto 0;
  max-width: 1280px;
  padding-top: 1.25rem;
}

.footer-copyright {
  line-height: 1.55;
}

.footer-credit-link,
.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: inherit;
}

.footer-credit-link {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
}

/* Sports medicine page */
.service-hero {
  background: var(--sun);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 690px;
  overflow: hidden;
}

.service-hero-copy {
  align-self: center;
  padding: 5.5rem 4vw 6rem 7vw;
  position: relative;
  z-index: 3;
}

.service-hero-copy .eyebrow {
  color: var(--coral-dark);
}

.service-hero-copy h1 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(4rem, 6.1vw, 7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0;
  max-width: 740px;
}

.service-hero-copy h1 em {
  color: var(--coral-dark);
  display: block;
  font-weight: 640;
}

.service-hero-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 2rem 0 0;
  max-width: 570px;
}

.service-actions {
  margin-top: 2rem;
}

.service-hero-visual {
  margin: 2.7rem 3.2rem 2.7rem 0;
  min-height: 610px;
  position: relative;
}

.service-hero-visual > img {
  border-radius: 32px 190px 32px 32px;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.sports-loop {
  border: 28px solid var(--coral);
  border-radius: 50%;
  height: 290px;
  position: absolute;
  right: -95px;
  top: -95px;
  width: 290px;
  z-index: 1;
}

.dual-specialty-badge {
  animation: float 5s ease-in-out infinite;
  background: var(--navy);
  border-radius: 22px;
  bottom: 1.8rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: -2.2rem;
  padding: 1rem 1.2rem;
  position: absolute;
  z-index: 4;
}

.dual-specialty-badge strong {
  color: var(--lime);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.25rem;
}

.dual-specialty-badge span {
  font-size: 0.72rem;
  font-weight: 700;
}

.service-facts {
  background: var(--brand-primary);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 5vw;
}

.service-facts div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  min-height: 120px;
  padding: 1.8rem 2rem;
}

.service-facts div:last-child {
  border-right: 0;
}

.service-facts span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-facts strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.35rem;
  margin-top: 0.35rem;
}

.service-facts a,
.concern-card a,
.sports-final-cta p a {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.service-page > .service-facts a {
  color: var(--white);
}

.sports-intro-copy a,
.faq-intro a,
.faq-list details p a {
  color: var(--brand-primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.final-cta > p a {
  color: var(--navy-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sports-intro {
  display: grid;
  gap: 5rem;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(6rem, 10vw, 10rem) 2rem;
}

.sports-intro-heading h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.sports-intro-copy {
  align-self: end;
}

.sports-intro-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.sports-intro-copy p + p {
  border-top: 1px solid rgba(18, 48, 60, 0.16);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}

.concerns-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(5.5rem, 8vw, 8rem) 4vw;
}

.concerns-heading {
  margin: 0 auto 3rem;
  max-width: 1280px;
}

.concerns-heading h2 {
  color: var(--lime);
  font-size: clamp(3rem, 5vw, 5.8rem);
  max-width: 950px;
}

.concerns-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.concern-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  min-height: 285px;
  padding: 1.6rem;
  transition: background 180ms ease, transform 180ms ease;
}

.concern-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.concern-card > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.concern-card h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 4.2rem 0 1rem;
}

.concern-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.sports-visit-section {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(6rem, 10vw, 10rem) 2rem;
}

.sports-visit-photo {
  border-radius: 180px 30px 30px 30px;
  height: 690px;
  overflow: hidden;
}

.sports-visit-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
  width: 100%;
}

.sports-visit-copy h2 {
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.visit-comparison {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.visit-comparison article {
  border-radius: 22px;
  padding: 1.5rem;
}

.visit-comparison article:first-child {
  background: var(--sky);
}

.visit-comparison article:last-child {
  background: var(--coral);
}

.visit-comparison span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.72;
  text-transform: uppercase;
}

.visit-comparison h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.8rem 0;
}

.visit-comparison p {
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

.expect-section {
  background: #e8f4f5;
  padding: clamp(5.5rem, 8vw, 8rem) 4vw;
}

.expect-heading {
  margin: 0 auto 3rem;
  max-width: 1280px;
}

.expect-heading h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  max-width: 900px;
}

.expect-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.expect-step {
  background: var(--white);
  border-radius: 24px;
  min-height: 275px;
  padding: 1.8rem;
}

.expect-step > span {
  align-items: center;
  background: var(--sun);
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.expect-step h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 2.6rem 0 0.8rem;
}

.expect-step p {
  color: var(--muted);
  line-height: 1.65;
}

.provider-feature {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(320px, 0.75fr) 1.25fr;
  padding: clamp(5rem, 8vw, 8rem) 8vw;
}

.provider-feature.provider-feature-no-image {
  grid-template-columns: minmax(0, 1fr);
}

.provider-feature-no-image .provider-copy {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}

.provider-image-wrap {
  margin: 0 auto;
  max-width: 510px;
  position: relative;
}

.provider-image-wrap img {
  border-radius: 48% 48% 18px 18px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.provider-accent {
  background: var(--coral);
  border-radius: 50%;
  bottom: -28px;
  height: 180px;
  left: -45px;
  position: absolute;
  width: 180px;
  z-index: 1;
}

.provider-copy h2 {
  color: var(--lime);
  font-size: clamp(3rem, 5vw, 5.7rem);
}

.provider-role {
  color: var(--sun);
  font-weight: 800;
}

.provider-copy > p:not(.eyebrow):not(.provider-role) {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 750px;
}

.provider-copy .button {
  margin-top: 1rem;
}

.faq-section {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 0.75fr 1.25fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(6rem, 10vw, 10rem) 2rem;
}

.faq-intro h2 {
  font-size: clamp(3rem, 4.6vw, 5.1rem);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.faq-list details {
  border-top: 1px solid rgba(18, 48, 60, 0.18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(18, 48, 60, 0.18);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 1.45rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  align-items: center;
  background: var(--sun);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-body), Arial, sans-serif;
  height: 32px;
  justify-content: center;
  margin-left: 1rem;
  transition: transform 180ms ease;
  width: 32px;
}

.faq-list details[open] summary span {
  transform: rotate(180deg);
}

.faq-list details p {
  color: var(--muted);
  line-height: 1.7;
  margin: -0.3rem 3rem 1.5rem 0;
}

.sports-final-cta {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(4rem, 7vw, 7rem) 8vw;
}

.sports-final-cta h2 {
  color: var(--lime);
  font-size: clamp(2.7rem, 4.6vw, 5.2rem);
  max-width: 850px;
}

.sports-final-cta .button {
  flex: 0 0 auto;
}

/* Well-child care page */
.well-child-hero {
  background: var(--mint);
}

.well-child-hero .service-hero-copy .eyebrow {
  color: var(--navy);
}

.well-child-hero .service-hero-copy h1 em {
  color: var(--blue);
}

.well-child-hero .service-hero-visual > img {
  border-radius: 170px 32px 32px 32px;
  object-position: 50% center;
}

.well-child-orbit {
  border: 25px solid var(--sun);
  border-radius: 50%;
  bottom: -95px;
  height: 280px;
  position: absolute;
  right: -85px;
  width: 280px;
  z-index: 1;
}

.well-child-badge {
  background: var(--coral);
  color: var(--navy-deep);
}

.well-child-badge strong {
  color: var(--navy-deep);
}

.well-child-facts span {
  color: var(--sun);
}

.well-child-intro .eyebrow,
.well-age-heading .eyebrow,
.well-visit-copy .eyebrow,
.well-expect-section .eyebrow {
  color: var(--coral-dark);
}

.well-focus-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 8rem) 4vw;
  position: relative;
}

.well-focus-section::before {
  border: 2px solid rgba(220, 233, 121, 0.24);
  border-radius: 50%;
  content: "";
  height: 390px;
  position: absolute;
  right: -190px;
  top: -190px;
  width: 390px;
}

.well-focus-heading,
.well-focus-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  position: relative;
}

.well-focus-heading {
  margin-bottom: 3rem;
}

.well-focus-heading h2,
.well-visit-copy h2,
.well-age-heading h2,
.well-continuity-copy h2 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.well-focus-heading h2 {
  color: var(--lime);
  font-size: clamp(3rem, 5vw, 5.8rem);
  max-width: 850px;
}

.well-focus-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.well-focus-card {
  border-radius: 26px;
  color: var(--navy-deep);
  min-height: 305px;
  padding: 1.7rem;
  transition: transform 180ms ease;
}

.well-focus-card:nth-child(1) {
  background: var(--coral);
}

.well-focus-card:nth-child(2) {
  background: var(--sun);
}

.well-focus-card:nth-child(3) {
  background: var(--mint);
}

.well-focus-card:nth-child(4) {
  background: var(--sky);
}

.well-focus-card:hover {
  transform: translateY(-5px) rotate(-0.25deg);
}

.well-focus-card > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.62;
}

.well-focus-card h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 4rem 0 1rem;
}

.well-focus-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.well-visit-section {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(6rem, 10vw, 10rem) 2rem;
}

.well-visit-photo {
  border-radius: 32px 180px 32px 32px;
  height: 680px;
  overflow: hidden;
  position: relative;
}

.well-visit-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transition: transform 800ms ease;
  width: 100%;
}

.well-visit-section:hover .well-visit-photo img {
  transform: scale(1.025);
}

.well-visit-copy h2 {
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.well-visit-copy .section-lede {
  margin-top: 1.6rem;
}

.well-check-list {
  list-style: none;
  margin-top: 2rem;
}

.well-check-list li {
  align-items: center;
  border-top: 1px solid rgba(18, 48, 60, 0.16);
  display: flex;
  font-weight: 700;
  padding: 1rem 0;
}

.well-check-list li::before {
  align-items: center;
  background: var(--sun);
  border-radius: 50%;
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  height: 24px;
  justify-content: center;
  margin-right: 0.8rem;
  width: 24px;
}

.well-age-section {
  align-items: start;
  background: var(--sun);
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 0.85fr 1.15fr;
  padding: clamp(5.5rem, 9vw, 9rem) 6vw;
}

.well-age-heading {
  position: sticky;
  top: 2rem;
}

.well-age-heading h2 {
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.well-age-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.well-age-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 54, 75, 0.09);
  border-radius: 24px;
  min-height: 260px;
  padding: 1.7rem;
}

.well-age-card > span {
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.well-age-card h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 3.1rem 0 0.9rem;
}

.well-age-card p {
  color: #435d66;
  font-size: 0.92rem;
  line-height: 1.65;
}

.well-expect-section {
  background: #e8f4f5;
}

.well-continuity-section {
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.well-continuity-copy {
  align-self: center;
  padding: clamp(4rem, 7vw, 7rem);
}

.well-continuity-copy h2 {
  color: var(--lime);
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.well-continuity-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  margin: 1.6rem 0 2rem;
}

.well-continuity-photo {
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.well-continuity-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 850ms ease;
  width: 100%;
}

.well-continuity-section:hover .well-continuity-photo img {
  transform: scale(1.025);
}

.well-continuity-photo span {
  background: var(--sun);
  bottom: 1.5rem;
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.85rem 1.1rem;
  position: absolute;
  right: 1.5rem;
  transform: rotate(2deg);
}

.well-final-cta {
  background: var(--coral);
  color: var(--navy-deep);
}

.well-final-cta h2 {
  color: var(--navy-deep);
}

.well-final-cta .eyebrow.light {
  color: var(--navy-deep);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 233, 121, 0); }
  50% { box-shadow: 0 0 0 6px rgba(220, 233, 121, 0.15); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@keyframes photoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1050px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
    padding: 5rem 7vw 3rem;
  }

  .hero-visual {
    min-height: 600px;
    padding: 0 7vw 5rem;
  }

  .hero-photo-shell {
    min-height: 540px;
  }

  .note-top {
    left: 3vw;
    top: 3rem;
  }

  .quick-actions {
    --quick-overlap: 2rem;
  }

  .story-section,
  .sports-intro,
  .sports-visit-section,
  .faq-section,
  .well-visit-section,
  .well-age-section,
  .well-continuity-section {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .story-collage,
  .sports-intro-heading,
  .sports-intro-copy,
  .faq-intro,
  .faq-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
    width: 100%;
  }

  .section-heading-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-heading-row > p {
    max-width: 620px;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

  .medical-home-section {
    grid-template-columns: 1fr;
  }

  .medical-home-photo {
    min-height: 560px;
  }

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

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    max-width: 980px;
    padding: 5rem 7vw 3.5rem;
  }

  .service-hero-visual {
    margin: 0 7vw 5rem;
  }

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

  .well-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .well-age-heading {
    position: static;
  }

  .well-continuity-photo {
    min-height: 580px;
  }

  .sports-visit-photo {
    height: 580px;
  }

  .provider-feature {
    grid-template-columns: 0.75fr 1.25fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sports-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 940px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

@media (max-width: 760px) {
  .utility-inner {
    justify-content: center;
    min-height: 34px;
    padding: 0 1rem;
  }

  .utility-links {
    display: none;
  }

  .site-header {
    min-height: 76px;
    padding: 0.75rem 1.2rem;
  }

  .brand img {
    width: 175px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-copy {
    padding: 4rem 1.3rem 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 15.6vw, 5.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    gap: 0.55rem 1rem;
  }

  .hero-visual {
    min-height: 480px;
    padding: 0 1.2rem 3.8rem;
  }

  .hero-photo-shell {
    border-radius: 30% 30% 5% 30% / 24% 22% 6% 30%;
    min-height: 430px;
  }

  .hero-video-shell {
    aspect-ratio: 16 / 10;
    border-radius: 28px 90px 28px 28px;
    height: auto;
    min-height: 0;
  }

  .hero-visual-video {
    min-height: 0;
  }

  .note-top {
    left: 0.8rem;
    top: 1.4rem;
  }

  .note-bottom {
    bottom: 2rem;
    right: 0.7rem;
  }

  .hero-squiggle {
    display: none;
  }

  .quick-actions {
    --quick-overlap: 1.7rem;
    grid-template-columns: 1fr;
    padding: 0 1.2rem 3rem;
  }

  .quick-card {
    min-height: 150px;
  }

  .story-section,
  .sports-intro,
  .sports-visit-section,
  .faq-section,
  .well-visit-section {
    gap: 3rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .story-copy h2,
  .section-heading-row h2,
  .medical-home-copy h2,
  .team-heading h2,
  .sports-intro-heading h2,
  .concerns-heading h2,
  .sports-visit-copy h2,
  .expect-heading h2,
  .provider-copy h2,
  .faq-intro h2,
  .well-focus-heading h2,
  .well-visit-copy h2,
  .well-age-heading h2,
  .well-continuity-copy h2 {
    font-size: clamp(2.65rem, 12.5vw, 4.3rem);
  }

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

  .story-collage {
    min-height: 520px;
  }

  .story-photo-main {
    height: 470px;
    width: 88%;
  }

  .story-photo-small {
    height: 210px;
    width: 48%;
  }

  .collage-label {
    bottom: 4.5rem;
    left: -0.4rem;
  }

  .services-section,
  .concerns-section,
  .expect-section,
  .team-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .section-heading-row {
    gap: 1.3rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(n) {
    grid-column: 1;
    min-height: 285px;
  }

  .medical-home-photo {
    min-height: 440px;
  }

  .medical-home-copy {
    padding: 4rem 1.3rem;
  }

  .team-photo-wrap {
    border-radius: 24px;
  }

  .team-photo-wrap > img {
    height: 480px;
    object-position: 52% center;
  }

  .team-photo-card {
    bottom: 0.8rem;
    left: 0.8rem;
  }

  .final-cta {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    line-height: 1.5;
  }

  .service-hero-copy {
    padding: 4rem 1.3rem 3rem;
  }

  .service-hero-copy h1 {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }

  .service-hero-visual {
    margin: 0 1.2rem 3.5rem;
    min-height: 470px;
  }

  .service-hero-visual > img {
    border-radius: 24px 110px 24px 24px;
  }

  .dual-specialty-badge {
    bottom: 1rem;
    left: -0.5rem;
  }

  .sports-loop {
    border-width: 20px;
    height: 190px;
    right: -50px;
    top: -55px;
    width: 190px;
  }

  .service-facts {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
  }

  .service-facts div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    min-height: 105px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-facts div:last-child {
    border-bottom: 0;
  }

  .concerns-grid,
  .expect-grid,
  .visit-comparison,
  .well-focus-grid,
  .well-age-grid {
    grid-template-columns: 1fr;
  }

  .well-focus-section,
  .well-age-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .well-focus-card {
    min-height: 270px;
  }

  .well-visit-photo {
    border-radius: 24px 100px 24px 24px;
    height: 500px;
  }

  .well-age-card {
    min-height: 235px;
  }

  .well-continuity-copy {
    padding: 4rem 1.3rem;
  }

  .well-continuity-photo {
    min-height: 480px;
  }

  .sports-visit-photo {
    border-radius: 100px 24px 24px 24px;
    height: 500px;
  }

  .provider-feature {
    grid-template-columns: 1fr;
    padding: 5rem 1.2rem;
  }

  .provider-image-wrap {
    max-width: 380px;
  }

  .faq-list summary {
    font-size: 1.12rem;
  }

  .sports-final-cta {
    padding: 4rem 1.3rem;
  }

  .sports-final-cta h2 {
    font-size: clamp(2.8rem, 12.5vw, 4.5rem);
  }
}

.generic-page-shell {
  margin: 0 auto;
  max-width: 960px;
  min-height: 52vh;
  padding: clamp(4.5rem, 9vw, 8rem) 1.3rem;
}

.generic-page-shell h1 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.generic-page-content {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 2rem;
}

.generic-page-content > * + * {
  margin-top: 1.25rem;
}

.generic-page-content a {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.generic-page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.generic-page-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.generic-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .sp-js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Complete-site navigation and shared editorial patterns. */
.sapphire-icon {
  flex: 0 0 auto;
  height: 1.05em;
  vertical-align: -0.14em;
  width: 1.05em;
}

.desktop-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.site-menu,
.site-menu ul,
.footer-menu,
.footer-menu ul,
.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .site-menu {
  align-items: center;
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.65rem);
}

.desktop-nav .site-menu > li {
  position: relative;
}

.desktop-nav .site-menu > li > a {
  display: block;
  padding: 1.2rem 0;
  position: relative;
  white-space: nowrap;
}

.desktop-nav .site-menu > li > a::after {
  background: var(--coral);
  bottom: 0.68rem;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav .site-menu > li:hover > a::after,
.desktop-nav .site-menu > li:focus-within > a::after,
.desktop-nav .site-menu > .current-menu-item > a::after,
.desktop-nav .site-menu > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.desktop-nav .sub-menu {
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(5, 43, 61, 0.2);
  display: grid;
  gap: 0.2rem;
  left: -1rem;
  min-width: 255px;
  opacity: 0;
  padding: 0.8rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 0.3rem);
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
  z-index: 80;
}

.desktop-nav .site-menu > li:first-child > .sub-menu {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  width: min(650px, 70vw);
}

.desktop-nav .site-menu > li:hover > .sub-menu,
.desktop-nav .site-menu > li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.desktop-nav .sub-menu a {
  border-radius: 10px;
  color: var(--ink);
  display: block;
  font-size: 0.88rem;
  line-height: 1.25;
  padding: 0.7rem 0.8rem;
}

.desktop-nav .sub-menu a:hover,
.desktop-nav .sub-menu a:focus-visible {
  background: var(--sky);
  color: var(--navy);
}

.mobile-nav-toggle {
  align-items: center;
  background: var(--brand-primary);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.mobile-nav-toggle-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.mobile-nav-toggle-icon span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 100%;
}

.mobile-nav-backdrop {
  background: rgba(5, 43, 61, 0.58);
  inset: 0;
  position: fixed;
  z-index: 89;
}

.mobile-nav-panel {
  background: var(--cream);
  bottom: 0;
  box-shadow: -20px 0 50px rgba(5, 43, 61, 0.2);
  max-width: 440px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(1rem, env(safe-area-inset-top)) max(1.2rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) 1.2rem;
  position: fixed;
  right: 0;
  top: 0;
  width: min(92vw, 440px);
  z-index: 90;
}

.mobile-nav-panel[hidden],
.mobile-nav-backdrop[hidden] {
  display: none;
}

html:not(.sp-js) .mobile-nav-panel {
  display: none;
}

.mobile-nav-panel-header {
  align-items: center;
  border-bottom: 1px solid rgba(7, 54, 75, 0.16);
  display: flex;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.35rem;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.mobile-nav-close {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.18);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.mobile-nav-close svg {
  height: 22px;
  width: 22px;
}

.mobile-menu {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
  padding: 1.2rem 0 0;
  position: static;
}

.mobile-menu .site-menu > li {
  border-bottom: 1px solid rgba(7, 54, 75, 0.12);
}

.mobile-menu .site-menu > li > a {
  color: var(--navy);
  display: block;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
  padding: 0.8rem 0;
}

.mobile-menu .sub-menu {
  display: grid;
  gap: 0.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 0 0.9rem 0.65rem;
}

.mobile-menu .sub-menu a {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
  padding: 0.42rem 0.4rem;
}

.mobile-menu-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.mobile-menu-actions > a:not(.header-button) {
  color: var(--brand-primary);
  font-weight: 750;
  padding: 0.7rem 0;
}

body.nav-open {
  overflow: hidden;
}

.home-announcement {
  align-items: center;
  background: var(--sapphire-blue);
  border-radius: 24px;
  display: flex;
  gap: clamp(1rem, 3vw, 3rem);
  justify-content: space-between;
  margin: clamp(1.5rem, 4vw, 3.5rem) auto 0;
  max-width: 1240px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  width: calc(100% - 2.4rem);
}

.home-announcement h2 {
  color: var(--white);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.05;
}

.home-announcement p {
  color: var(--white);
  line-height: 1.6;
  margin-top: 0.45rem;
  max-width: 680px;
}

.home-announcement .eyebrow,
.home-announcement a:not(.button) {
  color: var(--white);
}

.home-announcement p a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.home-announcement-primary {
  background: var(--white);
  color: var(--navy);
}

.home-announcement-primary:hover {
  background: var(--cream);
  color: var(--navy);
}

.home-announcement .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.home-announcement .button-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.archive-hero {
  background: var(--brand-primary);
  color: var(--white);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) max(1.3rem, 7vw);
  position: relative;
}

.archive-hero::after {
  border: clamp(24px, 4vw, 55px) solid rgba(216, 241, 244, 0.12);
  border-radius: 50%;
  content: "";
  height: clamp(220px, 34vw, 500px);
  position: absolute;
  right: -8%;
  top: -35%;
  width: clamp(220px, 34vw, 500px);
}

.archive-hero > * {
  max-width: 920px;
  position: relative;
  z-index: 1;
}

.archive-hero h1 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-top: 1rem;
}

.archive-hero > p:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  margin-top: 1.5rem;
  max-width: 720px;
}

.related-content-section,
.team-directory-group {
  margin: 0 auto;
  max-width: 1440px;
  padding: clamp(4.5rem, 8vw, 8rem) max(1.3rem, 5vw);
}

.team-directory-group + .team-directory-group {
  padding-top: 0;
}

.content-card-grid,
.team-card-grid,
.post-card-grid {
  display: grid;
  gap: clamp(1.1rem, 2.3vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.team-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.team-card {
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.1);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(5, 43, 61, 0.08);
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover,
.content-card:focus-within,
.team-card:hover,
.team-card:focus-within {
  box-shadow: 0 20px 44px rgba(5, 43, 61, 0.15);
  transform: translateY(-5px);
}

.content-card-link,
.team-card-link {
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-card-image,
.team-card-image {
  background: var(--sky);
  overflow: hidden;
}

.content-card-image {
  aspect-ratio: 16 / 10;
}

.content-card-image--photo-free {
  background: linear-gradient(145deg, #eff9fa 0%, var(--sky) 100%);
  isolation: isolate;
  position: relative;
}

.photo-free-card-shape {
  display: block;
  pointer-events: none;
  position: absolute;
}

.photo-free-card-shape--navy {
  background: var(--brand-primary);
  border-radius: 50%;
  bottom: -42%;
  height: 115%;
  left: -13%;
  transform: rotate(-9deg);
  width: 63%;
  z-index: 1;
}

.photo-free-card-shape--coral {
  aspect-ratio: 1;
  background: var(--coral);
  border-radius: 50%;
  right: 10%;
  top: 13%;
  width: 28%;
  z-index: 3;
}

.photo-free-card-shape--mint {
  background: var(--mint);
  border-radius: 999px;
  bottom: 11%;
  height: 25%;
  right: -6%;
  transform: rotate(-8deg);
  width: 55%;
  z-index: 2;
}

.photo-free-card-shape--sun {
  background: var(--sun);
  border-radius: 999px;
  height: 11%;
  left: 31%;
  top: 30%;
  transform: rotate(12deg);
  width: 34%;
  z-index: 4;
}

.team-card-image {
  aspect-ratio: 4 / 4.8;
}

.content-card-image img,
.team-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
  width: 100%;
}

.content-card:hover img,
.team-card:hover img {
  transform: scale(1.025);
}

.content-card-copy,
.team-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.content-card-copy h2,
.content-card-copy h3,
.team-card-copy h3 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-top: 0.65rem;
}

.content-card-copy > p:not(.eyebrow),
.team-card-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.9rem;
}

.content-card-copy .text-link,
.team-card-copy .text-link {
  margin-top: auto;
  padding-top: 1.25rem;
}

.content-card-meta {
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.content-empty-state {
  background: var(--sky);
  border-radius: 20px;
  color: var(--navy);
  line-height: 1.65;
  padding: 2rem;
}

.content-empty-state .text-link {
  display: inline-flex;
  margin-top: 0.8rem;
}

.service-directory-group {
  margin: 0 auto;
}

.service-directory-group:nth-child(even) {
  background: #f3efe7;
  max-width: none;
  padding-left: max(1.3rem, calc((100vw - 1440px) / 2 + 5vw));
  padding-right: max(1.3rem, calc((100vw - 1440px) / 2 + 5vw));
}

.service-directory-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.service-directory-grid > .service-card {
  grid-column: auto;
  min-height: 320px;
}

@media (max-width: 760px) {
  .service-directory-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero-copy h1 {
  max-width: 980px;
}

.page-hero:not(:has(.page-hero-visual)) .page-hero-copy {
  max-width: 1100px;
  width: 100%;
}

.landing-introduction {
  min-height: 0;
  padding-bottom: 2rem;
}

.important-message {
  background: var(--sun);
  border-radius: 24px;
  color: #463f29;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  padding: clamp(1.6rem, 4vw, 3rem);
  width: calc(100% - 2.6rem);
}

.important-message h2 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1;
  margin: 0.65rem 0 1rem;
}

.important-message p {
  line-height: 1.65;
}

.location-content-layout,
.contact-content-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  max-width: 1240px;
}

.location-content-layout > .generic-page-content,
.contact-content-layout > .generic-page-content {
  margin-top: 0;
}

.location-card,
.contact-details-card {
  background: var(--navy);
  border-radius: 24px;
  color: var(--white);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  position: sticky;
  top: 2rem;
}

.location-card h2,
.contact-details-card h2 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  margin: 0.65rem 0 1.5rem;
}

.location-card p,
.contact-details-card p {
  line-height: 1.65;
  margin-top: 1rem;
}

.contact-details-card a,
.location-card a:not(.button) {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.content-note {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  padding-top: 1rem;
}

.guide-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.45fr);
  margin: 0 auto;
  max-width: 1260px;
  padding: 0 1.3rem;
}

.guide-layout .generic-page-shell {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.guide-callout {
  background: var(--sky);
  border-radius: 22px;
  color: var(--ink);
  margin-top: clamp(4.5rem, 9vw, 8rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: sticky;
  top: 2rem;
}

.guide-callout h2 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin: 0.7rem 0 1rem;
}

.guide-callout p {
  line-height: 1.65;
}

.guide-sources {
  background: #f1eee6;
  border-radius: 24px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  max-width: 1140px;
  padding: clamp(1.5rem, 4vw, 3rem);
  width: calc(100% - 2.6rem);
}

.guide-sources h2 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.guide-sources ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin-top: 1.2rem;
}

.guide-sources a {
  color: var(--brand-primary);
  display: inline-flex;
  font-weight: 700;
  gap: 0.35rem;
}

.care-team-profile-image img {
  object-fit: cover;
}

.care-team-biography {
  min-height: 0;
}

.post-navigation,
.navigation.pagination,
.posts-navigation {
  margin: 2.5rem auto 0;
  max-width: 1100px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.nav-links a,
.nav-links .current {
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.18);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 700;
  padding: 0.65rem 1rem;
}

.nav-links .current {
  background: var(--brand-primary);
  color: var(--white);
}

.search-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  max-width: 620px;
}

.search-form label {
  flex: 1;
}

.search-field {
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.2);
  border-radius: 999px;
  min-height: 50px;
  padding: 0.65rem 1rem;
  width: 100%;
}

.search-submit {
  background: var(--brand-primary);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 750;
  padding: 0.7rem 1.25rem;
}

.archive-hero .search-submit {
  background: var(--sun);
  color: var(--navy-deep);
}

.archive-hero .search-submit:hover {
  background: var(--coral);
}

.footer-menu {
  display: grid;
  gap: 0.65rem;
}

.footer-menu .sub-menu {
  display: none;
}

.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--sun);
}

@media (max-width: 80em) {
  .desktop-nav,
  .desktop-appointment {
    display: none;
  }

  .sp-js .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header {
    min-height: 84px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .site-header .brand img {
    width: 205px;
  }

  html:not(.sp-js) .site-header {
    flex-wrap: wrap;
  }

  html:not(.sp-js) .mobile-nav-panel {
    box-shadow: none;
    display: block;
    flex: 1 0 100%;
    max-width: none;
    order: 4;
    overflow: visible;
    padding: 0 0 1rem;
    position: static;
    width: 100%;
  }

  html:not(.sp-js) .mobile-nav-panel-header {
    display: none;
  }
}

@media (max-width: 1120px) {
  .team-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .content-card-grid,
  .post-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .location-content-layout,
  .contact-content-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .location-card,
  .contact-details-card,
  .guide-callout {
    margin-top: 0;
    position: static;
  }
}

@media (max-width: 640px) {
  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .utility-links a:first-child {
    display: none;
  }

  .mobile-menu .sub-menu {
    grid-template-columns: 1fr;
  }

  .home-announcement {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-card-grid,
  .team-card-grid,
  .post-card-grid {
    grid-template-columns: 1fr;
  }

  .archive-hero {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .archive-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .service-directory-group:nth-child(even) {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .search-form {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .home-announcement {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ESP 2.0.1 corrective visual, editorial, and accessibility system. */
:root {
  --coral-ink: #7b2f28;
  --body-copy: #294752;
  --panel-border: rgba(7, 54, 75, 0.13);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 3px var(--sun), 0 0 0 6px var(--navy-deep);
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.content-card-link:focus-visible,
.team-card-link:focus-visible,
.service-grid > a.service-card:focus-visible,
.quick-card:focus-visible {
  box-shadow: inset 0 0 0 3px var(--navy-deep), inset 0 0 0 6px var(--sun);
  outline-offset: -7px;
}

@media (forced-colors: active) {
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    box-shadow: none;
    outline: 3px solid Highlight;
    outline-offset: 3px;
  }

  .content-card-link:focus-visible,
  .team-card-link:focus-visible,
  .service-grid > a.service-card:focus-visible,
  .quick-card:focus-visible {
    outline-offset: -7px;
  }

  .header-button,
  .button,
  .mobile-nav-toggle,
  .mobile-nav-close,
  .search-submit,
  .search-field,
  .content-card,
  .team-card {
    border: 2px solid ButtonText;
  }
}

.skip-link:focus {
  background: var(--white);
  border-radius: 0 0 10px 0;
  box-shadow: 0 0 0 4px var(--sun);
  clip: auto;
  clip-path: none;
  color: var(--navy-deep);
  font-weight: 800;
  height: auto;
  left: 0;
  padding: 0.9rem 1.2rem;
  top: 0;
  width: auto;
  z-index: 9999;
}

.quick-sky {
  background: var(--sky);
  color: var(--navy-deep);
}

.quick-navy {
  background: var(--navy);
  color: var(--white);
}

.quick-navy .quick-eyebrow {
  color: var(--sun);
  opacity: 1;
}

.quick-coral .quick-eyebrow {
  opacity: 1;
}

.story-copy .eyebrow,
.section-heading-row .eyebrow,
.team-heading .eyebrow,
.sports-intro .eyebrow,
.expect-section .eyebrow,
.faq-section .eyebrow,
.well-child-intro .eyebrow,
.well-age-heading .eyebrow,
.well-visit-copy .eyebrow,
.well-expect-section .eyebrow,
.well-age-card > span,
.service-hero.hero-preserve-approved .service-hero-copy .eyebrow {
  color: var(--coral-ink);
}

.hero-video-toggle {
  align-items: center;
  background: rgba(5, 43, 61, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  bottom: 2.5rem;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.55rem;
  left: clamp(8rem, 18%, 11rem);
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  position: absolute;
  z-index: 5;
}

.hero-video-toggle[hidden] {
  display: none;
}

.hero-video-toggle-icon {
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  border-top: 6px solid transparent;
  display: block;
  height: 0;
  width: 0;
}

.hero-video-toggle:not(.is-paused) .hero-video-toggle-icon {
  border: 0;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  height: 13px;
  width: 10px;
}

.service-hero {
  position: relative;
}

.service-hero.hero-tone-sun {
  background: var(--sun);
  color: var(--navy-deep);
}

.service-hero.hero-tone-mint {
  background: var(--mint);
  color: var(--navy-deep);
}

.service-hero.hero-tone-sky {
  background: var(--sky);
  color: var(--navy-deep);
}

.service-hero.hero-tone-navy {
  background: var(--navy);
  color: var(--white);
}

.service-hero.hero-tone-sapphire {
  background: var(--brand-primary);
  color: var(--white);
}

.service-hero.hero-tone-sun .eyebrow,
.service-hero.hero-tone-mint .eyebrow,
.service-hero.hero-tone-sky .eyebrow {
  color: var(--coral-ink);
}

.service-hero.hero-tone-sun h1 em,
.service-hero.hero-tone-mint h1 em,
.service-hero.hero-tone-sky h1 em {
  color: var(--coral-ink);
}

.service-hero.hero-tone-navy .eyebrow {
  color: var(--sun) !important;
}

.service-hero.hero-tone-sapphire .eyebrow {
  color: var(--white) !important;
}

.service-hero.hero-tone-navy h1 em {
  color: var(--sun);
}

.service-hero.hero-tone-sapphire h1 em {
  color: var(--sun);
}

.service-hero.hero-tone-navy .service-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.service-hero.hero-tone-sapphire .service-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.service-hero.hero-tone-navy .button-navy {
  background: var(--coral);
  color: var(--navy-deep);
}

.service-hero.hero-tone-navy .dark-link {
  color: var(--white);
}

.service-hero.hero-tone-sapphire .button-navy {
  background: var(--white);
  color: var(--brand-primary);
}

.service-hero.hero-tone-sapphire .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.service-hero.hero-tone-sapphire .dark-link {
  color: var(--white);
}

.service-hero.hero-shape-arch .service-hero-visual > img {
  border-radius: 180px 28px 28px 28px;
}

.service-hero.hero-shape-soft .service-hero-visual > img {
  border-radius: 34px 150px 34px 90px;
}

.service-hero.hero-shape-orbit .service-hero-visual > img {
  border-radius: 50% 50% 28px 28px;
}

.service-hero.hero-shape-angle .service-hero-visual > img {
  border-radius: 28px 28px 170px 28px;
}

.service-hero.hero-has-visual:not(.hero-preserve-approved) .service-hero-visual::before {
  border: 20px solid rgba(244, 123, 101, 0.68);
  border-radius: 50%;
  content: "";
  height: 180px;
  position: absolute;
  right: -55px;
  top: -45px;
  width: 180px;
  z-index: 1;
}

.service-hero.hero-tone-navy.hero-has-visual .service-hero-visual::before {
  border-color: rgba(246, 207, 102, 0.78);
}

.service-hero.hero-tone-sapphire.hero-has-visual .service-hero-visual::before {
  border-color: rgba(246, 207, 102, 0.78);
}

.service-hero.hero-no-visual {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.service-hero.hero-no-visual::before,
.service-hero.hero-no-visual::after {
  border: clamp(22px, 3vw, 46px) solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.09;
  pointer-events: none;
  position: absolute;
}

.service-hero.hero-no-visual::before {
  height: clamp(220px, 32vw, 460px);
  right: -8%;
  top: -45%;
  width: clamp(220px, 32vw, 460px);
}

.service-hero.hero-no-visual::after {
  bottom: -130px;
  height: 230px;
  right: 24%;
  width: 230px;
}

.service-hero.hero-no-visual .service-hero-copy {
  max-width: 1120px;
  min-height: clamp(390px, 44vw, 520px);
  padding: clamp(4.5rem, 8vw, 7.5rem) max(1.3rem, 8vw);
  width: 100%;
}

.service-hero.hero-no-visual .service-hero-copy h1 {
  max-width: 950px;
}

.generic-page-shell {
  max-width: 1080px;
  min-height: 0;
  padding-bottom: clamp(4rem, 7vw, 7rem);
  padding-top: clamp(3rem, 6vw, 5.5rem);
}

.generic-page-content {
  color: var(--body-copy);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  font-weight: 480;
  line-height: 1.78;
  margin-top: 0;
}

.generic-page-content > .editorial-layout {
  margin-left: auto;
  margin-right: auto;
}

.editorial-blog-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.editorial-blog-content h2,
.editorial-blog-content h3 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.editorial-blog-content h2 {
  font-size: clamp(1.85rem, 3.7vw, 3.25rem);
}

.editorial-blog-content h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.editorial-layout {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  max-width: 900px;
}

.editorial-surface,
.editorial-panel {
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(5, 43, 61, 0.07);
  padding: clamp(1.55rem, 4vw, 3rem);
}

.editorial-lead {
  background: var(--white);
  border-left: 7px solid var(--brand-primary);
}

.editorial-lead > p:first-child {
  color: var(--navy);
  font-size: clamp(1.15rem, 1.8vw, 1.34rem);
  font-weight: 600;
  line-height: 1.65;
}

.editorial-panel {
  background: var(--white);
}

.editorial-panel-2 {
  background: #edf7f7;
}

.editorial-panel-3 {
  background: #f4f1e9;
}

.editorial-panel-4 {
  background: #eef4e8;
}

.editorial-layout h2,
.profile-biography-heading h2 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.85rem, 3.7vw, 3.25rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin: 0 0 1rem;
}

.editorial-layout h3 {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.1;
  margin-top: 1.5rem;
}

.editorial-layout p + p,
.editorial-layout p + ul,
.editorial-layout p + ol,
.editorial-layout ul + p,
.editorial-layout ol + p {
  margin-top: 1rem;
}

.editorial-layout ul,
.editorial-layout ol {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-left: 1.4rem;
}

.editorial-layout li::marker {
  color: var(--coral-ink);
  font-weight: 800;
}

.editorial-layout a {
  color: var(--brand-primary);
  font-weight: 760;
  text-decoration-line: underline;
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.16em;
}

.text-link {
  text-decoration-line: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.document-resource-list {
  display: grid !important;
  gap: 0.85rem !important;
  list-style: none;
  padding: 0 !important;
}

.document-resource-list li {
  background: var(--white);
  border: 1px solid rgba(7, 54, 75, 0.14);
  border-left: 6px solid var(--mint);
  border-radius: 14px;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
}

.document-resource-list li::marker {
  content: "";
}

.document-resource-list li span {
  color: var(--body-copy);
  font-size: 0.94rem;
}

.editorial-context-page-privacy-policy .editorial-panel,
.editorial-context-page-notice-of-privacy-practices .editorial-panel,
.editorial-context-page-accessibility .editorial-panel,
.editorial-context-page-terms .editorial-panel,
.editorial-context-page-medical-disclaimer .editorial-panel,
.editorial-context-page-nondiscrimination-language-assistance .editorial-panel {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(5, 43, 61, 0.045);
}

.editorial-context-insurance-billing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-context-insurance-billing .editorial-lead {
  grid-column: 1 / -1;
}

.editorial-context-insurance-billing .editorial-panel {
  border-top: 7px solid var(--mint);
}

.editorial-context-after-hours-care {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.editorial-context-after-hours-care .editorial-panel-1 {
  background: #fff0ec;
  border-color: rgba(123, 47, 40, 0.24);
}

.editorial-context-after-hours-care .editorial-panel-2 {
  background: var(--sky);
}

.editorial-context-after-hours-care .editorial-panel-4 {
  background: var(--navy);
  color: var(--white);
  grid-column: 1 / -1;
}

.editorial-context-after-hours-care .editorial-panel-4 h2 {
  color: var(--sun);
}

.editorial-context-after-hours-care .editorial-panel-4 ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
}

.editorial-context-after-hours-care .editorial-panel-4 li {
  margin: 0;
}

.editorial-context-after-hours-care .editorial-panel-4 a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: var(--white);
  display: flex;
  height: 100%;
  padding: 0.9rem 1rem;
  text-decoration-color: var(--sun);
}

.care-team-biography {
  max-width: 1100px;
}

.generic-page-shell + .related-content-section,
.guide-layout + .related-content-section {
  padding-top: 0;
}

.profile-biography-heading {
  margin: 0 auto 1.8rem;
  max-width: 900px;
}

.profile-biography-heading .eyebrow {
  color: var(--coral-ink);
  margin-bottom: 0.8rem;
}

.care-team-biography .editorial-lead {
  border-left-color: var(--mint);
}

.care-team-biography .editorial-lead p:first-child {
  font-size: clamp(1.15rem, 1.7vw, 1.32rem);
}

.care-team-biography .editorial-context-care-team-biography {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
}

.care-team-biography .editorial-context-care-team-biography .editorial-lead {
  grid-column: 1 / -1;
}

.care-team-biography .editorial-context-care-team-biography > .editorial-panel:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.location-card .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.location-card .button-navy {
  background: var(--coral);
  color: var(--navy-deep);
}

.location-card .button-navy:hover,
.location-card .button-navy:focus-visible {
  background: var(--sun);
  color: var(--navy-deep);
}

.location-card .button-outline:hover,
.location-card .button-outline:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.mobile-menu [data-submenu-toggle]::after {
  content: "+";
  float: right;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1.25rem;
}

.mobile-menu [data-submenu-toggle][aria-expanded="true"]::after {
  content: "−";
}

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

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .site-header {
    min-height: 76px;
    padding: 0.75rem 1.2rem;
  }

  .site-header .brand img {
    width: 175px;
  }

  .service-hero.hero-no-visual .service-hero-copy {
    min-height: 0;
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .service-hero.hero-has-visual:not(.hero-preserve-approved) .service-hero-visual::before {
    border-width: 14px;
    height: 120px;
    right: -35px;
    top: -30px;
    width: 120px;
  }

  .editorial-surface,
  .editorial-panel {
    border-radius: 18px;
    padding: 1.35rem;
  }

  .editorial-context-after-hours-care .editorial-panel-4 ul {
    grid-template-columns: 1fr;
  }

  .editorial-context-insurance-billing,
  .editorial-context-after-hours-care,
  .care-team-biography .editorial-context-care-team-biography {
    grid-template-columns: 1fr;
  }

  .editorial-context-after-hours-care .editorial-panel-4,
  .care-team-biography .editorial-context-care-team-biography .editorial-lead,
  .care-team-biography .editorial-context-care-team-biography > .editorial-panel:last-child:nth-child(even) {
    grid-column: auto;
  }

  .hero-video-toggle {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

/* ESP 2.0.2 shared interior width, availability, and header refinements. */
:root {
  --interior-container-max: 1280px;
  --interior-container-gutter: clamp(1.25rem, 4vw, 4rem);
}

.same-day-status {
  gap: 0.35rem !important;
}

.same-day-status a {
  color: var(--sun);
  font-weight: 750;
  margin-left: 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.same-day-status.is-unavailable .pulse-dot {
  animation: none;
  background: var(--coral);
}

.designed-content-page > .generic-page-shell,
.section-landing > .generic-page-shell,
.new-patient-page > .generic-page-shell,
.resource-page > .generic-page-shell,
.care-team-profile > .care-team-biography,
.contact-page > .generic-page-shell,
.location-page > .generic-page-shell,
.appointments-page > .generic-page-shell,
.blog-post-page > .generic-page-shell,
.content-archive > .generic-page-shell,
.related-content-section,
.team-directory-group,
.important-message,
.guide-layout,
.guide-sources,
.contact-page > .quick-actions,
.appointments-page > .quick-actions,
.service-page > .sports-intro,
.service-page > .sports-visit-section,
.service-page > .faq-section {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--interior-container-max);
  width: calc(100% - var(--interior-container-gutter) - var(--interior-container-gutter));
}

.designed-content-page > .generic-page-shell,
.section-landing > .generic-page-shell,
.new-patient-page > .generic-page-shell,
.resource-page > .generic-page-shell,
.care-team-profile > .care-team-biography,
.contact-page > .generic-page-shell,
.location-page > .generic-page-shell,
.appointments-page > .generic-page-shell,
.blog-post-page > .generic-page-shell,
.content-archive > .generic-page-shell,
.related-content-section,
.team-directory-group,
.guide-layout,
.contact-page > .quick-actions,
.appointments-page > .quick-actions,
.service-page > .sports-intro,
.service-page > .sports-visit-section,
.service-page > .faq-section {
  padding-left: 0;
  padding-right: 0;
}

.generic-page-content > .editorial-layout,
.care-team-biography .editorial-context-care-team-biography {
  max-width: none;
  width: 100%;
}

.profile-biography-heading {
  max-width: none;
  width: 100%;
}

.profile-biography-heading h2 {
  max-width: 900px;
}

.editorial-surface > p,
.editorial-surface > ul,
.editorial-surface > ol,
.editorial-panel > p,
.editorial-panel > ul,
.editorial-panel > ol,
.guide-sources > ul {
  max-width: 75ch;
}

.care-services-landing .service-directory-group,
.care-services-landing .service-directory-group:nth-child(even),
.service-page > .service-facts,
.service-page > .concerns-section,
.service-page > .service-support-section,
.service-page > .provider-feature,
.service-page > .sports-final-cta,
.health-guide-page > .sports-final-cta {
  max-width: none;
  padding-left: max(
    var(--interior-container-gutter),
    calc((100% - var(--interior-container-max)) / 2)
  );
  padding-right: max(
    var(--interior-container-gutter),
    calc((100% - var(--interior-container-max)) / 2)
  );
  width: 100%;
}

.care-services-landing .service-directory-group .section-heading-row,
.care-services-landing .service-directory-group .service-grid,
.service-page .concerns-heading,
.service-page .concerns-grid {
  max-width: var(--interior-container-max);
  width: 100%;
}

.guide-layout .generic-page-shell {
  width: 100%;
}

@media (max-width: 80em) {
  .site-header {
    padding-left: var(--interior-container-gutter);
    padding-right: var(--interior-container-gutter);
  }
}

@media (max-width: 782px) {
  .same-day-status a {
    margin-left: 0;
  }
}

@media (max-width: 80em) {
  .utility-bar {
    display: block;
  }

  .utility-inner {
    justify-content: center;
    min-height: 0;
    padding: 0.6rem var(--interior-container-gutter);
  }

  .utility-inner > .same-day-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.45;
    text-align: center;
  }

  .same-day-status .pulse-dot {
    align-self: center;
    flex: 0 0 7px;
  }

  .utility-links {
    display: none;
  }
}

/* ESP 2.0.3 homepage controls, icon spacing, and Location map. */
.services-section > .section-action {
  margin: 1.5rem auto 0;
  max-width: 1280px;
  width: 100%;
}

.quick-detail {
  align-items: center;
  column-gap: 0.4rem;
  display: inline-flex;
}

.mobile-menu-actions > a:not(.header-button) {
  align-items: center;
  column-gap: 0.4rem;
  display: inline-flex;
}

.location-map-section {
  background: var(--navy-deep);
  overflow: hidden;
  width: 100%;
}

.location-map-section iframe {
  border: 0;
  display: block;
  height: 550px;
  width: 100%;
}

/* ESP 2.0.7 intentional interior photography system. */
:root {
  --photo-frame-radius: clamp(20px, 2.5vw, 34px);
  --photo-layout-gap: clamp(0.9rem, 2.4vw, 2rem);
  --photo-section-space: clamp(3.5rem, 7vw, 7rem);
}

.in-page-photography {
  align-items: start;
  display: grid;
  gap: var(--photo-layout-gap);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  isolation: isolate;
  position: relative;
  width: 100%;
}

.in-page-photography__frame {
  background: var(--white);
  border: clamp(5px, 0.7vw, 9px) solid var(--white);
  border-radius: var(--photo-frame-radius);
  box-shadow: 0 20px 54px rgba(5, 43, 61, 0.15);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.in-page-photography__image {
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 420ms ease;
  width: 100%;
}

.in-page-photography__accent {
  border-radius: 28px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

/* Homepage-inspired wide panorama / visit strip. */
.in-page-photography--visit-strip .in-page-photography__frame--1 {
  grid-column: 1 / -1;
}

.in-page-photography--visit-strip.in-page-photography--count-2 .in-page-photography__frame--1 {
  grid-column: 1 / 8;
}

.in-page-photography--visit-strip.in-page-photography--count-2 .in-page-photography__frame--2 {
  align-self: end;
  grid-column: 8 / -1;
}

.in-page-photography--visit-strip .in-page-photography__accent {
  background: var(--coral);
  bottom: clamp(-0.75rem, -1vw, -0.35rem);
  height: clamp(14px, 1.5vw, 22px);
  left: 8%;
  right: 8%;
}

/* Homepage Medical Home-inspired chapter lead. */
.in-page-photography--chapter-split {
  min-height: 0;
}

.in-page-photography--chapter-split .in-page-photography__frame--1 {
  grid-column: 1 / -1;
}

.in-page-photography--chapter-split .in-page-photography__accent {
  background: var(--mint);
  bottom: clamp(-0.7rem, -1vw, -0.35rem);
  height: 42%;
  right: clamp(-0.7rem, -1vw, -0.35rem);
  width: 46%;
}

.service-directory-group-specialized-care .in-page-photography--chapter-split .in-page-photography__accent {
  background: var(--sun);
  left: clamp(-0.7rem, -1vw, -0.35rem);
  right: auto;
}

/* Photo-and-copy pair, also used inside an editorial panel wrapper. */
.in-page-photography--photo-copy-split .in-page-photography__frame--1 {
  grid-column: 1 / -1;
}

.in-page-photography--photo-copy-split.in-page-photography--count-2 .in-page-photography__frame--1 {
  grid-column: 1 / 8;
}

.in-page-photography--photo-copy-split.in-page-photography--count-2 .in-page-photography__frame--2 {
  align-self: end;
  grid-column: 8 / -1;
}

.in-page-photography--photo-copy-split .in-page-photography__accent {
  background: var(--sun);
  height: clamp(70px, 10vw, 140px);
  right: clamp(-0.65rem, -1vw, -0.25rem);
  top: clamp(-0.65rem, -1vw, -0.25rem);
  width: clamp(70px, 10vw, 140px);
}

/* Homepage story-inspired offset collage. */
.in-page-photography--offset-collage {
  padding-bottom: clamp(2rem, 4vw, 4.5rem);
}

.in-page-photography--offset-collage .in-page-photography__frame--1 {
  grid-column: 1 / 9;
  grid-row: 1;
}

.in-page-photography--offset-collage .in-page-photography__frame--2 {
  align-self: end;
  grid-column: 8 / -1;
  grid-row: 1;
  transform: translateY(14%);
  z-index: 3;
}

.in-page-photography--offset-collage .in-page-photography__frame--3 {
  grid-column: 3 / 10;
  grid-row: 2;
  margin-top: clamp(-1.5rem, -2vw, -0.75rem);
}

.in-page-photography--offset-collage .in-page-photography__accent {
  background-image: radial-gradient(var(--coral) 2.2px, transparent 2.2px);
  background-size: 14px 14px;
  height: clamp(80px, 12vw, 150px);
  left: clamp(-0.5rem, -1vw, -0.2rem);
  top: clamp(-1rem, -1.8vw, -0.45rem);
  width: clamp(90px, 13vw, 170px);
}

/* Staggered care progression. */
.in-page-photography--care-sequence .in-page-photography__frame {
  grid-column: span 4;
}

.in-page-photography--care-sequence.in-page-photography--count-2 .in-page-photography__frame {
  grid-column: span 6;
}

.in-page-photography--care-sequence .in-page-photography__frame--2 {
  margin-top: clamp(1.5rem, 3vw, 3.5rem);
}

.in-page-photography--care-sequence .in-page-photography__frame--3 {
  margin-top: clamp(3rem, 6vw, 7rem);
}

.in-page-photography--care-sequence .in-page-photography__accent {
  background: var(--sky);
  bottom: clamp(-0.75rem, -1vw, -0.3rem);
  height: 42%;
  left: 5%;
  right: 5%;
}

/* Page-level and service-level breathing room. */
.about-team-panorama,
.careers-team-feature,
.location-arrival-collage,
.appointments-visit-strip,
.service-body-photography {
  margin: var(--photo-section-space) auto;
  max-width: var(--interior-container-max);
  width: calc(100% - var(--interior-container-gutter) - var(--interior-container-gutter));
}

.about-team-panorama,
.careers-team-feature {
  margin-top: clamp(1rem, 3vw, 3rem);
}

.location-arrival-collage {
  margin-bottom: var(--photo-section-space);
  margin-top: clamp(0.5rem, 2vw, 2rem);
}

.appointments-visit-strip {
  margin-bottom: clamp(1rem, 3vw, 3rem);
  margin-top: clamp(2rem, 5vw, 5rem);
}

.service-directory-photo-lead {
  margin: 0;
  max-width: none;
}

.service-directory-chapter-lead {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
  max-width: var(--interior-container-max);
  width: 100%;
}

.service-directory-chapter-heading {
  display: block;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  max-width: none;
}

.service-directory-chapter-heading h2 {
  max-width: none;
}

.service-directory-chapter-lead > .service-directory-photo-lead {
  grid-column: 1;
  grid-row: 1;
}

.service-directory-group-specialized-care .service-directory-chapter-lead {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.service-directory-group-specialized-care .service-directory-chapter-heading {
  grid-column: 1;
}

.service-directory-group-specialized-care .service-directory-chapter-lead > .service-directory-photo-lead {
  grid-column: 2;
}

.editorial-photography {
  grid-column: 1 / -1;
  margin: clamp(1rem, 2.5vw, 2.25rem) 0;
}

.editorial-panel-photo-split {
  align-items: center;
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.editorial-panel-photo-split > .editorial-panel,
.editorial-panel-photo-split > .editorial-photography {
  margin: 0;
  min-width: 0;
}

.editorial-panel-photo-split > .editorial-photography .in-page-photography__frame {
  border-radius: 30px 110px 30px 30px;
}

/* Contact photograph becomes the cap of the existing office-details card. */
.contact-details-stack {
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(5, 43, 61, 0.14);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.contact-details-stack .contact-details-photo-cap {
  display: block;
  margin: 0;
}

.contact-details-stack .contact-details-photo-cap .in-page-photography__frame {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-details-stack .contact-details-photo-cap .in-page-photography__accent {
  display: none;
}

.contact-details-stack .contact-details-card {
  border-radius: 0;
  box-shadow: none;
  position: static;
}

/* WPForms 408 follows the existing Contact-page editorial-card system. */
.contact-form-card-408 {
  background: var(--white);
  border: 1px solid var(--panel-border);
  border-left: 7px solid var(--brand-primary);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(5, 43, 61, 0.07);
  margin-top: clamp(1.1rem, 2.4vw, 1.8rem);
  padding: clamp(1.55rem, 4vw, 3rem);
}

.contact-form-card-408 #wpforms-408 {
  --wpforms-button-background-color: var(--brand-primary) !important;
  --wpforms-button-border-radius: 999px !important;
  --wpforms-button-size-font-size: 1rem !important;
  --wpforms-button-size-height: 54px !important;
  --wpforms-button-text-color: var(--white) !important;
  --wpforms-field-background-color: var(--white) !important;
  --wpforms-field-border-color: #78919b !important;
  --wpforms-field-border-radius: 14px !important;
  --wpforms-field-border-size: 1px !important;
  --wpforms-field-border-style: solid !important;
  --wpforms-field-size-input-height: 52px !important;
  --wpforms-field-text-color: var(--ink) !important;
  --wpforms-label-color: var(--navy) !important;
  --wpforms-label-error-color: #b42318 !important;
  --wpforms-label-sublabel-color: var(--muted) !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: 0;
}

.contact-form-card-408 #wpforms-form-408 {
  margin: 0;
}

.contact-form-card-408 #wpforms-408 .wpforms-title {
  color: var(--navy);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.85rem, 3.7vw, 3.25rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin: 0 0 1rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-description {
  color: var(--body-copy);
  line-height: 1.68;
  margin: 0 0 1.5rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-field {
  padding: 0 0 1.25rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-label,
.contact-form-card-408 #wpforms-408 .wpforms-field-label-inline {
  color: var(--navy);
  font-weight: 760;
  line-height: 1.35;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-label {
  display: block;
  margin: 0 0 0.5rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-required-label {
  color: var(--coral-ink);
}

.contact-form-card-408 #wpforms-408 .wpforms-field-description,
.contact-form-card-408 #wpforms-408 .wpforms-field-sublabel,
.contact-form-card-408 #wpforms-408 .wpforms-field-limit-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-row,
.contact-form-card-408 #wpforms-408 .wpforms-field-small,
.contact-form-card-408 #wpforms-408 .wpforms-field-medium,
.contact-form-card-408 #wpforms-408 .wpforms-field-large {
  max-width: none;
  width: 100%;
}

.contact-form-card-408 #wpforms-408 input[type="text"],
.contact-form-card-408 #wpforms-408 input[type="email"],
.contact-form-card-408 #wpforms-408 input[type="tel"],
.contact-form-card-408 #wpforms-408 input[type="url"],
.contact-form-card-408 #wpforms-408 input[type="number"],
.contact-form-card-408 #wpforms-408 input[type="password"],
.contact-form-card-408 #wpforms-408 input[type="search"],
.contact-form-card-408 #wpforms-408 input[type="date"],
.contact-form-card-408 #wpforms-408 input[type="datetime-local"],
.contact-form-card-408 #wpforms-408 input[type="month"],
.contact-form-card-408 #wpforms-408 input[type="time"],
.contact-form-card-408 #wpforms-408 input[type="week"],
.contact-form-card-408 #wpforms-408 select,
.contact-form-card-408 #wpforms-408 textarea {
  background-color: var(--white);
  border: 1px solid #78919b;
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  max-width: 100%;
  min-height: 52px;
  padding: 0.78rem 0.9rem;
  width: 100%;
}

.contact-form-card-408 #wpforms-408 textarea {
  line-height: 1.55;
  min-height: 150px;
  resize: vertical;
}

.contact-form-card-408 #wpforms-408 select:not([multiple]) {
  padding-inline-end: 2rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-phone-input-container[data-format="smart"] input.primary-input {
  padding-inline-start: 52px;
}

.contact-form-card-408 #wpforms-408 input::placeholder,
.contact-form-card-408 #wpforms-408 textarea::placeholder {
  color: #5f747c;
  opacity: 1;
}

.contact-form-card-408 #wpforms-408 input[type="file"] {
  color: var(--body-copy);
  max-width: 100%;
}

.contact-form-card-408 #wpforms-408 .wpforms-uploader {
  background: var(--brand-primary-soft);
  border: 2px dashed #78919b;
  border-radius: 14px;
  color: var(--body-copy);
  padding: 1rem;
}

.contact-form-card-408 #wpforms-408 .dz-message {
  color: var(--body-copy);
}

.contact-form-card-408 #wpforms-408 .modern-title {
  color: var(--navy);
  font-weight: 760;
}

.contact-form-card-408 #wpforms-408 input[type="checkbox"],
.contact-form-card-408 #wpforms-408 input[type="radio"] {
  accent-color: var(--brand-primary);
  flex: 0 0 auto;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  width: 1.15rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-checkbox ul,
.contact-form-card-408 #wpforms-408 .wpforms-field-radio ul,
.contact-form-card-408 #wpforms-408 .wpforms-field-payment-multiple ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-form-card-408 #wpforms-408 .wpforms-field-checkbox li,
.contact-form-card-408 #wpforms-408 .wpforms-field-radio li,
.contact-form-card-408 #wpforms-408 .wpforms-field-payment-multiple li {
  align-items: flex-start;
  display: flex;
  gap: 0.65rem;
}

.contact-form-card-408 #wpforms-408 input:focus-visible,
.contact-form-card-408 #wpforms-408 select:focus-visible,
.contact-form-card-408 #wpforms-408 textarea:focus-visible,
.contact-form-card-408 #wpforms-submit-408:focus-visible {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--sun), 0 0 0 6px var(--navy-deep);
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.contact-form-card-408 #wpforms-submit-408:focus::after {
  content: none;
}

.contact-form-card-408 #wpforms-408 .wpforms-has-error input,
.contact-form-card-408 #wpforms-408 .wpforms-has-error select,
.contact-form-card-408 #wpforms-408 .wpforms-has-error textarea,
.contact-form-card-408 #wpforms-408 input.wpforms-error,
.contact-form-card-408 #wpforms-408 input.user-invalid,
.contact-form-card-408 #wpforms-408 select.wpforms-error,
.contact-form-card-408 #wpforms-408 textarea.wpforms-error,
.contact-form-card-408 #wpforms-408 [aria-invalid="true"] {
  border-color: #b42318;
}

.contact-form-card-408 #wpforms-408 label.wpforms-error,
.contact-form-card-408 #wpforms-408 em.wpforms-error,
.contact-form-card-408 #wpforms-408 .wpforms-error-container,
.contact-form-card-408 #wpforms-408 .wpforms-error-alert {
  color: #b42318;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-card-408 #wpforms-408 .wpforms-error-container,
.contact-form-card-408 #wpforms-408 .wpforms-error-alert {
  background: #fff0ec;
  border-left: 7px solid var(--coral-dark);
  border-radius: 14px;
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
}

.contact-form-card-408 #wpforms-408 .wpforms-submit-container {
  margin: 0;
  padding: 0.35rem 0 0;
}

.contact-form-card-408 #wpforms-submit-408 {
  background: var(--brand-primary);
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  min-height: 54px;
  padding: 0.9rem 1.65rem;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form-card-408 #wpforms-submit-408:hover {
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(5, 43, 61, 0.18);
  transform: translateY(-2px);
}

.contact-form-card-408 #wpforms-submit-408:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.contact-form-card-408 #wpforms-confirmation-408 {
  background: #eef7ef;
  border: 1px solid rgba(7, 54, 75, 0.16);
  border-left: 7px solid var(--mint);
  border-radius: 18px;
  color: var(--navy);
  margin: 0;
  padding: 1.25rem 1.4rem;
}

.contact-form-card-408 #wpforms-confirmation-408 p {
  color: var(--navy);
  margin: 0;
}

.contact-form-card-408 #wpforms-408 iframe {
  max-width: 100%;
}

@media (max-width: 600px) {
  .contact-form-card-408 {
    border-radius: 20px;
    padding: 1.35rem;
  }

  .contact-form-card-408 #wpforms-408 .wpforms-field-row-block,
  .contact-form-card-408 #wpforms-408 .wpforms-one-half,
  .contact-form-card-408 #wpforms-408 .wpforms-one-third,
  .contact-form-card-408 #wpforms-408 .wpforms-two-thirds {
    float: none;
    margin-left: 0;
    padding-inline: 0 !important;
    width: 100% !important;
  }

  .contact-form-card-408 #wpforms-submit-408 {
    width: 100%;
  }
}

@media (forced-colors: active) {
  .contact-form-card-408 #wpforms-408 input,
  .contact-form-card-408 #wpforms-408 select,
  .contact-form-card-408 #wpforms-408 textarea,
  .contact-form-card-408 #wpforms-submit-408 {
    border: 2px solid ButtonText;
  }
}

/* Vaccine Policy's deliberate body/photo conversation split. */
.new-patient-body-photo-split {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  margin: 0 auto;
  max-width: var(--interior-container-max);
  width: calc(100% - var(--interior-container-gutter) - var(--interior-container-gutter));
}

.new-patient-body-photo-split > .generic-page-shell {
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.new-patient-body-photo-split > .new-patient-conversation-photo {
  margin-top: clamp(3rem, 6vw, 6rem);
}

/* Service body moments and landscape-safe service photography. */
.service-page > .service-body-photography {
  padding-bottom: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-top: clamp(0.5rem, 1.5vw, 1.5rem);
}

.service-hero.hero-has-visual {
  min-height: 0;
}

.service-hero.hero-has-visual .service-hero-visual {
  align-self: center;
  min-height: 0;
}

.service-hero.hero-has-visual .service-hero-visual > img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-support-visual {
  min-width: 0;
}

.service-support-visual .service-support-photography {
  margin: 0;
}

.service-support-section .sports-visit-photo {
  height: auto;
  min-height: 0;
}

.service-support-section .sports-visit-photo img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.service-support-section-no-image {
  display: block;
}

.service-support-section-no-image .sports-visit-copy {
  max-width: 850px;
}

.concern-card-copy > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-page-lactation .concerns-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page-lactation .concern-card-photo-split {
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1.15fr);
  min-height: 0;
}

.service-page-lactation .concern-card-photo-split .concern-card-photography {
  align-self: center;
}

.service-page-lactation .concern-card-photo-split .in-page-photography__accent {
  display: none;
}

.service-page-lactation .concern-card-photo-split .in-page-photography__frame {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .in-page-photography__frame:hover .in-page-photography__image {
    transform: scale(1.018);
  }
}

@media (max-width: 1050px) {
  .editorial-panel-photo-split,
  .new-patient-body-photo-split {
    grid-template-columns: 1fr;
  }

  .new-patient-body-photo-split > .new-patient-conversation-photo {
    margin: 0 auto var(--photo-section-space);
    max-width: 820px;
  }

  .service-support-section {
    grid-template-columns: 1fr;
  }

  .service-support-visual,
  .service-support-section .sports-visit-photo,
  .service-support-section .sports-visit-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
    width: 100%;
  }

  .contact-details-stack {
    position: static;
  }

  .service-hero.hero-has-visual .service-hero-visual {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .service-directory-chapter-lead,
  .service-directory-group-specialized-care .service-directory-chapter-lead {
    gap: clamp(1.25rem, 4vw, 2rem);
    grid-template-columns: 1fr;
  }

  .service-directory-chapter-heading,
  .service-directory-group-specialized-care .service-directory-chapter-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .service-directory-chapter-lead > .service-directory-photo-lead,
  .service-directory-group-specialized-care .service-directory-chapter-lead > .service-directory-photo-lead {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .in-page-photography {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 0;
  }

  .in-page-photography .in-page-photography__frame {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
    transform: none;
  }

  .in-page-photography__frame {
    border-width: 4px;
    border-radius: 20px;
  }

  .in-page-photography__accent {
    display: none;
  }

  .about-team-panorama,
  .careers-team-feature,
  .location-arrival-collage,
  .appointments-visit-strip,
  .service-body-photography {
    margin-bottom: clamp(2.75rem, 12vw, 4.5rem);
    margin-top: clamp(2.75rem, 12vw, 4.5rem);
  }

  .service-directory-chapter-lead {
    margin-bottom: 2.25rem;
  }

  .editorial-panel-photo-split {
    gap: 1rem;
  }

  .editorial-panel-photo-split > .editorial-photography .in-page-photography__frame {
    border-radius: 20px;
  }

  .new-patient-body-photo-split {
    gap: 0;
  }

  .new-patient-body-photo-split > .new-patient-conversation-photo {
    margin-bottom: 3.5rem;
  }

  .service-hero.hero-has-visual .service-hero-visual {
    min-height: 0;
  }

  .service-page-lactation .concerns-grid {
    grid-template-columns: 1fr;
  }

  .service-page-lactation .concern-card-photo-split {
    grid-template-columns: 1fr;
  }

  .service-page-lactation .concern-card-photo-split .concern-card-photography {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .in-page-photography__image {
    transition: none;
  }

  .in-page-photography__frame:hover .in-page-photography__image {
    transform: none;
  }
}

/* ESP 2.0.10 sticky primary navigation and approved external-menu arrows. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 85;
}

body.admin-bar .site-header {
  top: 32px;
}

.desktop-nav .site-menu a.sapphire-menu-external,
.mobile-menu .site-menu a.sapphire-menu-external,
.mobile-menu-actions a.sapphire-menu-external {
  align-items: center;
  column-gap: 0.42rem;
  display: flex;
}

.sapphire-menu-external-icon {
  align-self: center;
  display: block;
  flex: 0 0 auto;
  height: 0.90625rem;
  margin: 0;
  width: 0.90625rem;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}

@media (max-width: 80em) {
  html:not(.sp-js) .site-header {
    position: relative;
    top: auto;
  }
}

/* ESP 2.0.11 approved action, document, and footer refinements. */
.sapphire-external-link-icon {
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  vertical-align: -0.12em;
  width: 1em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
}

.footer-social a {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 750;
  gap: 0.3rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--sun);
}

.archive-hero .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.resource-note {
  background: var(--sky);
  border-left: 6px solid var(--coral);
  border-radius: 14px;
  margin: 2rem 0;
  padding: 1.1rem 1.25rem;
}

.resource-note h2 {
  margin-top: 0;
}

/* ESP 2.0.17 semantic Sapphire action and page-rhythm system. */
.services-section > .section-action,
.service-card-sky a,
.service-card-sky .card-arrow,
.content-card-copy .text-link,
.team-card-copy .text-link,
.content-empty-state .text-link {
  color: var(--brand-primary);
}

.services-section > .section-action .button-outline {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.final-cta .button-navy {
  background: var(--navy-deep);
}

.service-page > .service-support-section {
  background: var(--brand-primary-soft);
}

.service-page > .service-hero.hero-tone-sapphire + .service-facts {
  box-shadow: inset 0 4px 0 var(--sun);
}

.service-hero.hero-tone-sun .dark-link {
  color: var(--navy-deep);
}

.service-page:not(.service-page-well-child) > .sports-final-cta {
  background: var(--brand-primary);
}

.service-page:not(.service-page-well-child) > .sports-final-cta h2,
.service-page:not(.service-page-well-child) > .sports-final-cta .eyebrow.light,
.service-page:not(.service-page-well-child) > .sports-final-cta p a {
  color: var(--white);
}

.service-page:not(.service-page-well-child) > .sports-final-cta .button-coral {
  background: var(--white);
  color: var(--brand-primary);
}

.service-page:not(.service-page-well-child) > .sports-final-cta .button-coral:hover,
.service-page:not(.service-page-well-child) > .sports-final-cta .button-coral:focus-visible {
  background: var(--cream);
  color: var(--brand-primary);
}

.service-page:not(.service-page-well-child) > .sports-final-cta .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.service-page:not(.service-page-well-child) > .sports-final-cta .button-outline:hover,
.service-page:not(.service-page-well-child) > .sports-final-cta .button-outline:focus-visible {
  background: var(--white);
  color: var(--brand-primary);
}

.service-page-well-child > .concerns-section {
  background: var(--brand-primary);
}

.service-page-well-child > .concerns-section .eyebrow.light {
  color: var(--white);
}

.service-page-well-child > .concerns-section .concern-card {
  border-color: rgba(5, 43, 61, 0.12);
  color: var(--navy-deep);
}

.service-page-well-child > .concerns-section .concern-card:nth-child(1) {
  background: var(--coral);
}

.service-page-well-child > .concerns-section .concern-card:nth-child(2) {
  background: var(--sun);
}

.service-page-well-child > .concerns-section .concern-card:nth-child(3) {
  background: var(--mint);
}

.service-page-well-child > .concerns-section .concern-card:nth-child(4) {
  background: var(--sky);
}

.service-page-well-child > .concerns-section .concern-card > span,
.service-page-well-child > .concerns-section .concern-card-copy > span,
.service-page-well-child > .concerns-section .concern-card p {
  color: var(--navy-deep);
}

.service-page-well-child > .service-support-section,
.service-page-sports-medicine > .service-support-section {
  background: var(--sun);
}

.service-page-well-child > .sports-final-cta {
  background: var(--coral);
  color: var(--navy-deep);
}

.service-page-well-child > .sports-final-cta h2,
.service-page-well-child > .sports-final-cta .eyebrow.light,
.service-page-well-child > .sports-final-cta p a {
  color: var(--navy-deep);
}

.service-page-well-child > .sports-final-cta .button-coral {
  background: var(--brand-primary);
  border: 2px solid var(--navy-deep);
  color: var(--white);
}

.service-page-well-child > .sports-final-cta .button-outline {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

.service-hero.blog-hero {
  background: var(--brand-primary);
  color: var(--white);
}

.service-hero.blog-hero .eyebrow,
.service-hero.blog-hero h1 {
  color: var(--white);
}

.service-hero.blog-hero .service-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.archive-hero .button-coral {
  background: var(--white);
  color: var(--brand-primary);
}

.archive-hero .button-coral:hover,
.archive-hero .button-coral:focus-visible {
  background: var(--cream);
  color: var(--brand-primary);
}

.health-guide-page > .sports-final-cta .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.health-guide-page > .sports-final-cta .button-outline:hover,
.health-guide-page > .sports-final-cta .button-outline:focus-visible {
  background: var(--white);
  color: var(--navy);
}

/* ESP 2.0.15 Care Team framing from proportional image sources. */
.provider-image-wrap,
.care-team-profile-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.provider-image-wrap img,
.care-team-profile .service-hero.hero-has-visual .care-team-profile-image > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* ESP 2.0.18 approved mobile reflow and containment refinements. */
.editorial-context-forms-downloads > .resource-note {
  margin: 0;
}

@media (max-width: 760px) {
  .service-page > .service-support-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero-copy h1,
  .service-hero-copy h1,
  .archive-hero h1 {
    hyphens: auto;
    line-height: 0.94;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy h1,
  .service-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .archive-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.2rem);
  }

  .health-guide-page > .sports-final-cta .cta-buttons {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .health-guide-page > .sports-final-cta .cta-buttons .button {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
    width: 100%;
  }
}
