/*
Theme Name: Watson & Watson Premium
Theme URI: https://watsonandwatsondental.com/
Author: Codex
Description: Premium rebuild theme for Watson & Watson Dental Associates with a conversion-focused structure, local SEO metadata, and GSAP-powered motion.
Version: 1.3.9
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: watson-watson-premium
*/

:root {
  --ink: #061a33;
  --pine: #004aa8;
  --green: #0281FD;
  --mint: #d9ecff;
  --cream: #f2f8ff;
  --paper: #fbfdff;
  --rose: #0277ea;
  --gold: #c8d8ea;
  --clay: #8bbdf2;
  --sage: #e8f4ff;
  --line: rgba(6, 26, 51, 0.13);
  --shadow: 0 24px 70px rgba(0, 63, 158, 0.18);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  position: fixed;
  top: -4rem;
  z-index: 1000;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background:
    linear-gradient(105deg, rgba(251, 253, 255, 0.95) 0%, rgba(251, 253, 255, 0.9) 62%, rgba(217, 236, 255, 0.76) 100%);
  border: 1px solid rgba(6, 26, 51, 0.09);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  left: clamp(1rem, 3vw, 2rem);
  padding: 0.7rem 0.8rem;
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  top: 1rem;
  z-index: 100;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  gap: 1rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 63, 158, 0.13);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--pine), var(--green));
  border-radius: 10px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28), 0 10px 28px rgba(0, 63, 158, 0.22);
  color: white;
  display: inline-flex;
  height: 2.55rem;
  justify-content: center;
  overflow: hidden;
  width: 2.55rem;
}

.brand-mark svg {
  display: block;
  height: 1.95rem;
  width: 1.95rem;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.9;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(16, 32, 33, 0.68);
  font-size: 0.72rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0.35rem;
}

.site-nav-list {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a,
.site-nav-list a {
  border-radius: 8px;
  color: rgba(16, 32, 33, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 0.9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-list a:hover,
.site-nav-list a:focus-visible {
  background: rgba(2, 129, 253, 0.09);
  color: var(--ink);
}

.site-nav .nav-call {
  background: var(--pine);
  color: white;
}

.nav-toggle {
  background: var(--pine);
  border: 0;
  border-radius: 8px;
  display: none;
  flex: 0 0 2.6rem;
  height: 2.6rem;
  padding: 0;
  position: relative;
  width: 2.6rem;
}

.nav-toggle em {
  display: none;
  font-style: normal;
}

.nav-toggle span {
  background: white;
  height: 2px;
  left: 0.72rem;
  position: absolute;
  right: 0.72rem;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 1rem;
}

.nav-toggle span:last-child {
  top: 1.55rem;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(0.28rem) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-0.28rem) rotate(-45deg);
}

.hero {
  align-items: end;
  background:
    linear-gradient(120deg, rgba(0, 63, 158, 1) 0%, rgba(0, 89, 202, 0.96) 38%, rgba(2, 129, 253, 0.72) 100%),
    linear-gradient(35deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 72px);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 88svh;
  overflow: hidden;
  padding: 9rem clamp(1rem, 5vw, 5rem) 3rem;
  position: relative;
}

.hero-media,
.hero-overlay {
  position: absolute;
}

.hero-media {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.hero-overlay {
  inset: 0;
}

.hero-media img {
  filter: saturate(1.08) contrast(1.04);
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  width: 100%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 46%, rgba(73, 172, 255, 0.36) 0%, rgba(0, 63, 158, 0.2) 32%, rgba(0, 63, 158, 0) 62%),
    linear-gradient(90deg, rgba(0, 38, 97, 0.96) 0%, rgba(0, 55, 135, 0.86) 24%, rgba(0, 81, 188, 0.66) 42%, rgba(0, 102, 224, 0.34) 58%, rgba(2, 129, 253, 0.08) 78%),
    linear-gradient(0deg, rgba(3, 21, 48, 0.36) 0%, rgba(3, 21, 48, 0.03) 58%, rgba(3, 21, 48, 0.08) 100%);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 12rem 12rem;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-side {
  align-self: end;
  display: grid;
  gap: 1rem;
  justify-self: end;
  max-width: 24rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-seal {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(251, 253, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--pine);
  display: grid;
  justify-self: end;
  margin-bottom: 0.4rem;
  padding: 1.2rem;
  place-items: center;
  text-align: center;
  width: 8.5rem;
}

.hero-seal span {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.45rem;
  line-height: 0.85;
}

.hero-card {
  background: rgba(251, 253, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  padding: 1.1rem;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.pulse-dot {
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(2, 129, 253, 0.12);
  height: 0.72rem;
  width: 0.72rem;
}

.hero-card small,
.visit-panel small {
  color: rgba(16, 32, 33, 0.58);
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.02rem;
}

.hero-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.hero-card div:not(.hero-card-top) {
  align-items: baseline;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.hero-card dt {
  color: rgba(16, 32, 33, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-card dd {
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.hero-card-link {
  align-items: center;
  background: var(--pine);
  border-radius: 8px;
  color: white;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  text-decoration: none;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  font-size: clamp(4.6rem, 11.5vw, 10.8rem);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  margin-bottom: 1.3rem;
}

h3 {
  font-size: 1.1rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.48;
  max-width: 620px;
}

.hero-trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
  max-width: 640px;
  padding-top: 1rem;
}

.hero-trust-strip div {
  padding-right: 1rem;
}

.hero-trust-strip strong {
  color: var(--mint);
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 0.9;
}

.hero-trust-strip span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0.45rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.2rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--mint);
  color: var(--pine);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.35);
}

.button.dark {
  background: var(--pine);
  border: 0;
  color: white;
  cursor: pointer;
}

.hero-rail {
  align-items: center;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  z-index: 2;
}

.hero-rail span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
}

.quick-info {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-info div {
  background: rgba(251, 253, 255, 0.68);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.quick-info span {
  color: var(--rose);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.care-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 1.3rem;
}

.proof-card span {
  color: var(--rose);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.proof-card p {
  color: rgba(16, 32, 33, 0.68);
  margin-bottom: 0;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  scroll-margin-top: 7rem;
}

.split,
.section-heading,
.doctor-section,
.visit {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.lead-stack {
  color: rgba(16, 32, 33, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.stats-band {
  background: var(--pine);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  min-height: 13rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.86;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 700;
  max-width: 14rem;
}

.reviews-section {
  background: var(--cream);
}

.review-scorecard {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 0.9fr;
  margin-bottom: 1rem;
}

.score {
  background: var(--pine);
  border-radius: 8px;
  color: white;
  min-height: 15rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.score span,
.review-card span {
  color: var(--mint);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.score strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.84;
}

.score p {
  color: rgba(255, 255, 255, 0.72);
  margin: 1rem 0 0;
  max-width: 25rem;
}

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

.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 18rem;
  padding: 1.3rem;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.review-card q {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.review-card p {
  color: rgba(16, 32, 33, 0.66);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 1.25rem 0 0;
}

.review-card span {
  color: var(--rose);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin: 1.5rem 0 0;
  text-transform: uppercase;
}

.review-note {
  color: rgba(16, 32, 33, 0.58);
  font-size: 0.86rem;
  margin: 1rem 0 0;
  max-width: 58rem;
}

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

.section-heading {
  align-items: end;
  margin-bottom: 2rem;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  justify-self: end;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

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

.service-card,
.patient-flow div,
.appointment-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 25rem;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card::after {
  background: linear-gradient(135deg, rgba(217, 236, 255, 0.55), rgba(2, 129, 253, 0.12));
  content: "";
  height: 10rem;
  position: absolute;
  right: -4rem;
  top: -5rem;
  transform: rotate(14deg);
  width: 14rem;
}

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

.service-card span,
.patient-flow span {
  color: var(--rose);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 4rem;
}

.service-card .service-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 900;
  height: 3.15rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  width: 3.15rem;
  z-index: 1;
}

.service-card h3,
.service-card p,
.service-card ul,
.service-card span {
  position: relative;
  z-index: 1;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.service-card li {
  background: rgba(2, 129, 253, 0.08);
  border-radius: 999px;
  color: rgba(16, 32, 33, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 0.6rem;
}

.complete-services {
  background: var(--pine);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 0.82fr 1.18fr;
  margin-top: 1rem;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.complete-services .section-kicker {
  color: var(--mint);
}

.complete-services h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.complete-services p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 32rem;
}

.complete-services ul {
  columns: 2;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.complete-services li {
  break-inside: avoid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  margin: 0;
  padding: 0.8rem 0;
}

.complete-services li::before {
  color: var(--mint);
  content: "+";
  font-weight: 900;
  margin-right: 0.6rem;
}

.service-card p,
.patient-flow p,
.doctor-copy p,
.visit-copy p {
  color: rgba(16, 32, 33, 0.68);
}

.image-break {
  background: var(--sage);
  display: block;
  min-height: clamp(30rem, 40vw, 46rem);
  overflow: hidden;
  position: relative;
}

.image-break::after {
  background:
    linear-gradient(90deg, rgba(242, 248, 255, 0.82) 0%, rgba(242, 248, 255, 0.58) 26%, rgba(242, 248, 255, 0.12) 48%, rgba(242, 248, 255, 0) 68%),
    linear-gradient(0deg, rgba(0, 63, 158, 0.12), rgba(0, 63, 158, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.image-break img {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.image-break div {
  align-content: center;
  color: var(--pine);
  display: grid;
  left: clamp(1.25rem, 5vw, 5rem);
  max-width: min(38rem, 42vw);
  min-height: inherit;
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
  z-index: 2;
}

.image-break span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.image-break strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.8vw, 6.6rem);
  line-height: 0.88;
  max-width: 8ch;
}

.doctor-section {
  align-items: center;
  background: var(--cream);
}

.doctor-image {
  overflow: hidden;
}

.doctor-image img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: none;
  object-fit: cover;
  object-position: 66% center;
  transform: translateX(-5%);
  width: 108%;
}

.doctor-copy {
  max-width: 650px;
}

.doctor-timeline {
  border-top: 1px solid rgba(16, 32, 33, 0.16);
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0;
  padding-top: 1.3rem;
}

.timeline-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 5rem 1fr;
}

.timeline-row span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1;
}

.timeline-row p {
  margin: 0;
}

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

.patient-section .section-heading {
  max-width: 920px;
}

.patient-flow {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.patient-flow div {
  padding: 1.4rem;
}

.concierge-note {
  background: var(--pine);
  border-radius: 8px;
  color: white;
  margin-top: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.concierge-note p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  max-width: 56rem;
}

.visit {
  background: var(--pine);
  color: white;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.visit .section-kicker {
  color: var(--mint);
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.visit-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  max-width: 34rem;
  overflow: hidden;
}

.visit-panel div {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 1rem;
}

.visit-panel small {
  color: rgba(255, 255, 255, 0.55);
}

.visit-panel strong {
  color: white;
  text-align: right;
}

.appointment-form {
  align-self: start;
  color: var(--ink);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.appointment-form h2 {
  font-family: var(--sans);
  font-size: 1.4rem;
  line-height: 1.15;
}

.appointment-intro {
  color: rgba(16, 32, 33, 0.64);
  margin-bottom: 1.3rem;
}

.appointment-fieldset {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}

.appointment-fieldset legend {
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

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

.option-card {
  cursor: pointer;
  position: relative;
}

.option-card input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.option-card span {
  align-items: center;
  background: #f7f7f2;
  border: 1px solid rgba(16, 32, 33, 0.13);
  border-radius: 8px;
  display: flex;
  font-size: 0.88rem;
  font-weight: 900;
  min-height: 3.25rem;
  padding: 0.75rem;
}

.option-card input:checked + span {
  background: var(--pine);
  border-color: var(--pine);
  color: white;
}

.appointment-form label {
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  background: #f7f7f2;
  border: 1px solid rgba(16, 32, 33, 0.15);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form .button {
  width: 100%;
}

.form-note {
  color: rgba(16, 32, 33, 0.58);
  font-size: 0.82rem;
  margin: 0.9rem 0 0;
}

.sticky-cta {
  align-items: center;
  background: rgba(251, 253, 255, 0.92);
  border: 1px solid rgba(16, 32, 33, 0.12);
  border-radius: 8px;
  bottom: 1rem;
  box-shadow: 0 16px 50px rgba(16, 32, 33, 0.16);
  display: flex;
  gap: 1rem;
  left: 50%;
  padding: 0.7rem;
  position: fixed;
  transform: translateX(-50%) translateY(150%);
  transition: transform 220ms ease;
  width: min(44rem, calc(100vw - 2rem));
  z-index: 90;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta p {
  flex: 1;
  font-weight: 800;
  margin: 0;
}

.sticky-cta a {
  background: var(--pine);
  border-radius: 8px;
  color: white;
  font-weight: 900;
  padding: 0.8rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.page-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(242, 248, 255, 0.98), rgba(251, 253, 255, 0.94)),
    linear-gradient(35deg, rgba(2, 129, 253, 0.07) 0 1px, transparent 1px 72px);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  min-height: 58svh;
  overflow: hidden;
  padding: 9rem clamp(1rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem);
}

.page-hero-with-image {
  align-items: center;
  background:
    radial-gradient(circle at 92% 22%, rgba(112, 185, 255, 0.5) 0%, rgba(217, 236, 255, 0.38) 28%, rgba(251, 253, 255, 0) 58%),
    linear-gradient(115deg, rgba(242, 248, 255, 0.98) 0%, rgba(251, 253, 255, 0.97) 48%, rgba(217, 236, 255, 0.58) 82%, rgba(242, 248, 255, 0.96) 100%),
    linear-gradient(35deg, rgba(2, 129, 253, 0.08) 0 1px, transparent 1px 72px);
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 0.74fr);
  min-height: 64svh;
}

.page-hero-dark {
  background:
    linear-gradient(90deg, rgba(242, 248, 255, 0.98), rgba(251, 253, 255, 0.96)),
    linear-gradient(35deg, rgba(2, 129, 253, 0.07) 0 1px, transparent 1px 72px);
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(3.3rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  max-width: 980px;
}

.page-hero-copy {
  color: rgba(16, 32, 33, 0.66);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.45;
  margin: 0;
}

.page-hero-copy p {
  margin-bottom: 1rem;
}

.page-hero-copy p:last-child {
  margin-bottom: 0;
}

.care-page-hero {
  align-items: start;
  grid-template-columns: 1fr;
  min-height: auto;
}

.care-page-hero .page-hero-text {
  max-width: 1040px;
}

.care-page-hero .page-hero-image-team {
  width: 100%;
}

.doctor-page-hero,
.visit-page-hero {
  background: var(--paper);
}

.page-hero-image {
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 25rem;
  overflow: hidden;
  position: relative;
}

.page-hero-image::after {
  background:
    linear-gradient(180deg, rgba(0, 63, 158, 0) 42%, rgba(0, 63, 158, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 63, 158, 0.16), rgba(0, 63, 158, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-hero-image img {
  filter: saturate(1.08) contrast(1.04);
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  width: 100%;
}

.page-hero-image-team {
  aspect-ratio: 5 / 2;
  background: linear-gradient(90deg, rgba(232, 244, 255, 0.95), rgba(217, 236, 255, 0.48));
  min-height: 0;
}

.page-hero-image-team img {
  object-fit: cover;
  object-position: center center;
}

.page-hero-image-sign {
  aspect-ratio: 16 / 10;
}

.page-hero-image-sign img {
  object-position: 63% center;
}

.page-hero-image-south-side {
  aspect-ratio: 16 / 10;
}

.page-hero-image-south-side img {
  object-position: 50% 58%;
}

.page-hero-image-doctor {
  aspect-ratio: 16 / 10;
}

.page-hero-image-doctor img {
  object-position: 62% 28%;
}

.page-hero-image-visit img {
  object-position: 50% 48%;
}

.image-credit {
  background: rgba(0, 63, 158, 0.72);
  border-radius: 8px;
  bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.35rem 0.5rem;
  position: absolute;
  right: 0.75rem;
  z-index: 3;
}

.page-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  object-position: 42% center;
  width: 100%;
}

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

.page-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-height: 25rem;
  padding: 1.35rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.page-card span,
.timeline-page span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.page-card h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  margin: 2rem 0 1rem;
}

.page-card p {
  color: rgba(16, 32, 33, 0.66);
  line-height: 1.6;
}

.service-fit {
  background: rgba(217, 236, 255, 0.58);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  color: rgba(16, 32, 33, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 1.3rem;
  padding: 0.8rem 0.9rem;
}

.page-card a,
.service-menu-page a {
  align-self: end;
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 0.3rem;
}

.service-menu-page,
.doctor-profile-page,
.visit-page-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.service-menu-page ul {
  columns: 2;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-menu-page li {
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  font-weight: 800;
  padding: 1rem 0;
}

.timeline-page {
  background: var(--pine);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 7rem);
}

.timeline-page article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 1.4rem;
}

.timeline-page p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}

.visit-card {
  background: #fff;
  border: 1px solid rgba(6, 26, 51, 0.08);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(6, 26, 51, 0.18);
  color: var(--ink);
  filter: none;
  isolation: isolate;
  mix-blend-mode: normal;
  opacity: 1;
  padding: 1.4rem;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.visit-page-hero {
  background: var(--pine);
  color: white;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.5fr);
  isolation: isolate;
  min-height: 78svh;
  position: relative;
}

.visit-page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 38, 97, 0.96) 0%, rgba(0, 63, 158, 0.86) 34%, rgba(0, 89, 202, 0.5) 62%, rgba(2, 129, 253, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 21, 48, 0.46) 0%, rgba(3, 21, 48, 0.04) 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.visit-page-hero .page-hero-text {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.visit-page-hero .eyebrow {
  color: var(--mint);
}

.visit-page-hero .visit-hero-stack {
  inset: 0;
  position: absolute;
  z-index: auto;
}

.visit-page-hero .visit-hero-stack .page-hero-image {
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  grid-area: auto;
  inset: 0;
  margin: 0;
  min-height: 100%;
  position: absolute;
  z-index: 0;
}

.visit-page-hero .visit-hero-stack .page-hero-image::after {
  display: none;
}

.visit-page-hero .visit-hero-stack .page-hero-image img {
  filter: saturate(1.08) contrast(1.06);
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.visit-page-hero .visit-hero-stack .visit-card {
  bottom: clamp(2rem, 5vw, 4rem);
  max-width: min(28rem, 34vw);
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  z-index: 999;
}

.appointment-form {
  box-shadow: 0 20px 70px rgba(16, 32, 33, 0.1);
}

.visit-hero-stack {
  display: grid;
  position: relative;
}

.visit-hero-stack .page-hero-image {
  grid-area: 1 / 1;
}

.visit-hero-stack .visit-card {
  align-self: end;
  grid-area: 1 / 1;
  justify-self: start;
  margin: 1rem;
  max-width: min(92%, 25rem);
  position: relative;
  z-index: 2;
}

.visit-card span,
.footer-main nav span,
.footer-meta span {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.visit-card span {
  color: var(--rose);
}

.visit-card span,
.visit-card p {
  color: rgba(6, 26, 51, 0.68);
}

.visit-card strong {
  color: var(--pine);
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.visit-card p {
  color: rgba(6, 26, 51, 0.62);
  margin-bottom: 2rem;
}

.compact-flow {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.site-footer {
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.footer-cta {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-cta > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-cta h2 {
  color: white;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.9;
  margin: 0;
}

.footer-cta h2 span {
  color: var(--mint);
}

.footer-actions {
  display: flex;
  gap: 1rem;
}

.footer-button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  padding: 1rem 1.35rem;
}

.footer-button.light {
  background: white;
  color: var(--pine);
}

.footer-button.coral {
  background: var(--green);
  color: white;
}

.footer-main {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.5fr) minmax(12rem, 0.7fr);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer-main h3 {
  color: white;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 26rem;
}

.footer-main nav {
  display: grid;
  gap: 0.75rem;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2rem;
}

.footer-meta p,
.footer-meta a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.floating-chat {
  bottom: 1.1rem;
  left: 1.1rem;
  position: fixed;
  z-index: 120;
}

.floating-chat-toggle {
  align-items: center;
  background: linear-gradient(145deg, var(--pine), var(--green));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 63, 158, 0.32);
  color: white;
  cursor: pointer;
  display: inline-flex;
  height: 4.5rem;
  justify-content: center;
  position: relative;
  transition: transform 180ms ease, background 180ms ease;
  width: 4.5rem;
}

.floating-chat-toggle::before {
  animation: chatPulse 2.4s ease-out infinite;
  border: 2px solid rgba(2, 129, 253, 0.42);
  border-radius: inherit;
  content: "";
  inset: -0.35rem;
  pointer-events: none;
  position: absolute;
}

.floating-chat-toggle:hover,
.floating-chat-toggle:focus-visible {
  background: var(--green);
  transform: translateY(-2px);
}

.floating-chat-toggle span {
  border: 3px solid currentColor;
  border-radius: 999px;
  height: 1.42rem;
  position: relative;
  width: 2.05rem;
}

.floating-chat-toggle span::after {
  background: transparent;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 0 0 0.35rem 0;
  bottom: -0.38rem;
  content: "";
  height: 0.56rem;
  position: absolute;
  right: 0.22rem;
  transform: rotate(36deg);
  width: 0.54rem;
}

.floating-chat.is-open .floating-chat-toggle {
  background: var(--green);
  transform: rotate(45deg);
}

@keyframes chatPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

.floating-chat-panel {
  background: white;
  border: 1px solid rgba(16, 32, 33, 0.14);
  border-radius: 8px;
  bottom: 5.5rem;
  box-shadow: var(--shadow);
  color: var(--ink);
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
  width: min(29rem, calc(100vw - 2rem));
}

.floating-chat.is-open .floating-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-chat-header {
  align-items: start;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.floating-chat-header span {
  color: var(--green);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.floating-chat-header strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 0.95;
}

.floating-chat-header button {
  background: transparent;
  border: 0;
  color: rgba(16, 32, 33, 0.45);
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
}

.floating-chat-plugin,
.floating-chat-fallback {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.floating-chat-fallback p {
  color: rgba(16, 32, 33, 0.64);
  line-height: 1.5;
  margin: 0 0 0.25rem;
}

.floating-chat-fallback a {
  background: #f7f7f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  padding: 0.9rem;
  text-decoration: none;
}

.floating-chat-fallback a:first-of-type {
  background: var(--pine);
  color: white;
}

.chat-plugin-widget {
  min-height: 8rem;
}

.chat-plugin-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

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

  .site-nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    left: 1rem;
    opacity: 0;
    padding: 0.75rem;
    pointer-events: none;
    position: fixed;
    right: 1rem;
    top: 5.2rem;
    transform: translateY(-0.6rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav-list {
    align-items: stretch;
    display: grid;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.05rem;
    padding: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 90vh;
  }

  .hero-media {
    left: 0;
  }

  .hero-side {
    max-width: none;
    justify-self: start;
  }

  .hero-seal {
    display: none;
  }

  .hero-rail {
    display: none;
  }

  .quick-info,
  .split,
  .section-heading,
  .doctor-section,
  .visit,
  .care-proof-grid,
  .review-scorecard,
  .review-grid,
  .service-grid,
  .page-hero,
  .page-card-grid,
  .service-menu-page,
  .doctor-profile-page,
  .timeline-page,
  .visit-page-grid,
  .footer-cta,
  .footer-main,
  .footer-meta,
  .complete-services,
  .patient-flow,
  .image-break {
    grid-template-columns: 1fr;
  }

  .image-break div {
    max-width: min(34rem, 56vw);
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span,
  .patient-flow span {
    margin-bottom: 2rem;
  }

  .complete-services ul {
    columns: 1;
  }

  .text-link {
    justify-self: start;
  }

  .page-card {
    min-height: auto;
  }

  .footer-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    left: 0.75rem;
    max-width: calc(100vw - 1.5rem);
    padding: 0.65rem;
    padding-right: 6.2rem;
    right: auto;
    top: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-mark {
    flex: 0 0 2.45rem;
    height: 2.45rem;
    width: 2.45rem;
  }

  .brand strong {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .nav-toggle {
    align-items: center;
    display: inline-flex;
    gap: 0.45rem;
    height: 2.6rem;
    justify-content: center;
    left: auto;
    position: absolute;
    right: 0.65rem;
    top: 0.65rem;
    width: 5rem;
    z-index: 2;
  }

  .nav-toggle em {
    color: white;
    display: inline;
    font-size: 0.8rem;
    font-weight: 900;
  }

  .nav-toggle span {
    left: auto;
    position: static;
    right: auto;
    width: 0.95rem;
  }

  .nav-toggle span:last-child {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: auto;
    padding: 8rem 1.25rem 2rem;
  }

  .hero-media {
    bottom: 0;
    left: 0;
    opacity: 0.9;
    top: 4.75rem;
  }

  .hero-media img {
    object-position: 58% 24%;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 18% 42%, rgba(73, 172, 255, 0.36) 0%, rgba(0, 63, 158, 0.18) 34%, rgba(0, 63, 158, 0) 66%),
      linear-gradient(90deg, rgba(0, 38, 97, 0.96) 0%, rgba(0, 63, 158, 0.88) 54%, rgba(2, 129, 253, 0.22) 100%),
      linear-gradient(0deg, rgba(3, 21, 48, 0.5) 0%, rgba(3, 21, 48, 0) 60%);
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0.35rem;
  }

  h1,
  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.45rem);
    line-height: 0.92;
    max-width: 18rem;
  }

  .hero-copy {
    font-size: 1.03rem;
    line-height: 1.45;
    max-width: 20rem;
  }

  .hero-trust-strip {
    gap: 0.75rem;
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

  .hero-trust-strip div {
    border-left: 2px solid rgba(217, 236, 255, 0.7);
    padding-left: 0.75rem;
    padding-right: 0;
  }

  .hero-trust-strip strong {
    font-size: 1.55rem;
  }

  .hero-actions,
  .visit-actions {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .quick-info div {
    padding: 1.15rem 1.25rem;
  }

  .quick-info strong {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
    line-height: 0.96;
  }

  .stats-band {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .stat {
    min-height: auto;
    padding: 2rem 0;
  }

  .stat strong {
    font-size: clamp(4rem, 25vw, 6rem);
  }

  .service-card,
  .review-card,
  .proof-card,
  .page-card,
  .appointment-form {
    padding: 1.15rem;
  }

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

  .sticky-cta {
    align-items: stretch;
    display: grid;
  }

  .sticky-cta a {
    text-align: center;
  }

  .page-hero {
    min-height: auto;
    padding: 8rem 1.25rem 3rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.45rem);
  }

  .page-hero-with-image {
    gap: 1.5rem;
  }

  .page-hero-copy {
    font-size: 1.04rem;
  }

  .page-hero-image {
    aspect-ratio: 16 / 11;
    min-height: 12rem;
  }

  .visit-page-hero {
    min-height: 78svh;
    padding-bottom: 13rem;
  }

  .visit-page-hero::after {
    background:
      linear-gradient(90deg, rgba(0, 38, 97, 0.96) 0%, rgba(0, 63, 158, 0.82) 58%, rgba(2, 129, 253, 0.22) 100%),
      linear-gradient(0deg, rgba(3, 21, 48, 0.62) 0%, rgba(3, 21, 48, 0.08) 64%);
  }

  .visit-page-hero .visit-hero-stack .visit-card {
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: none;
    right: 1.25rem;
  }

  .image-break {
    min-height: 34rem;
  }

  .image-break::after {
    background:
      linear-gradient(180deg, rgba(242, 248, 255, 0.84) 0%, rgba(242, 248, 255, 0.38) 46%, rgba(0, 63, 158, 0.58) 100%);
  }

  .image-break img {
    object-position: 72% center;
  }

  .image-break div {
    align-content: end;
    bottom: 0;
    color: white;
    left: 1.25rem;
    max-width: calc(100% - 2.5rem);
    min-height: 100%;
    padding: 2rem 0;
  }

  .image-break span {
    color: var(--mint);
  }

  .image-break strong {
    font-size: clamp(2.4rem, 13vw, 4rem);
    max-width: 9ch;
  }

  .visit-hero-stack .visit-card {
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .service-menu-page ul {
    columns: 1;
  }

  .footer-button,
  .footer-actions {
    width: 100%;
  }

  .footer-button {
    justify-content: center;
  }

  .floating-chat {
    bottom: 0.9rem;
    left: 0.9rem;
    right: auto;
  }

  .floating-chat-toggle {
    height: 3.8rem;
    width: 3.8rem;
  }

  .floating-chat-panel {
    left: 0;
    right: auto;
    width: min(22rem, calc(100vw - 1.8rem));
  }
}

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

  .floating-chat-toggle::before {
    animation: none !important;
    opacity: 0;
  }
}
