:root {
  --navy: #09233f;
  --navy-2: #123b5f;
  --teal: #0f8c8c;
  --teal-dark: #067071;
  --accent: #d9f3f1;
  --sky: #eaf5ff;
  --ink: #142236;
  --muted: #5b6b7d;
  --line: #dce7ef;
  --soft: #f6fbfd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(9, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: min(68vw, 360px);
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand strong,
.brand small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex: 1;
}

.site-nav a,
.header-call,
.text-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  font-size: 0.9rem;
}

.header-call {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 0.65rem 0.85rem;
  font-weight: 800;
}

.hero,
.page-hero,
.section,
.cta-band,
.breadcrumbs,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.hero-copy,
.page-hero {
  align-self: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 7vw, 4.6rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.lead,
.page-hero p,
.section-head p,
.content p,
.cta-band p {
  color: var(--muted);
}

.lead,
.page-hero > p {
  max-width: 780px;
  font-size: clamp(1.02rem, 2.4vw, 1.24rem);
}

.hero-actions,
.cta-actions,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

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

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

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.trust-row span,
.concerns span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 0.6rem 0.75rem;
  color: var(--navy);
  font-weight: 800;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sky);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--navy);
  text-decoration: none;
}

.section {
  padding: 3rem 0;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.stats,
.contact-card,
.appointment-form,
.toc {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 35, 63, 0.08);
}

.stats {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.stats div {
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.6rem;
}

.stats span {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 260px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
}

.service-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--teal-dark);
  font-weight: 900;
}

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

.choice-grid {
  display: grid;
  gap: 1rem;
  background: var(--soft);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
}

.choice-grid p:not(.eyebrow) {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--teal);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--white);
}

.concerns,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reviews {
  display: grid;
  gap: 1rem;
}

.reviews blockquote {
  margin: 0;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reviews span {
  color: #c98700;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--white);
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.contact-grid,
.form-layout {
  display: grid;
  gap: 1.5rem;
}

.contact-grid {
  align-items: center;
}

.contact-card {
  padding: 1.1rem;
}

.mini-actions a,
.link-grid a,
.toc a {
  display: inline-flex;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.map-wrap {
  position: relative;
  min-height: 360px;
}

.map-link-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 22px;
  cursor: pointer;
}

.map-link-cover:focus-visible {
  outline: 4px solid rgba(15, 140, 140, 0.35);
  outline-offset: 4px;
}

.content {
  width: min(840px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.content h2 {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.content li {
  margin-bottom: 0.5rem;
}

.appointment-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.appointment-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.toc {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 6rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--navy);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-sticky a {
  padding: 0.85rem 0.5rem;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.mobile-sticky a:nth-child(2) {
  background: var(--teal);
  color: var(--white);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    padding-top: 4rem;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }

  .split,
  .contact-grid,
  .form-layout,
  .cta-band {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .choice-grid > div {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.65rem 0;
  }

  .header-call {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero,
  .page-hero,
  .section,
  .cta-band,
  .breadcrumbs,
  .site-footer {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand {
    max-width: calc(100vw - 6.5rem);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-media {
    aspect-ratio: auto;
    box-shadow: 0 14px 34px rgba(9, 35, 63, 0.1);
  }

  .hero-media img {
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 981px) {
  .mobile-sticky {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-bottom: 2rem;
  }
}

@media (min-width: 760px) {
  .contact-grid {
    width: min(1180px, calc(100% - 3rem));
    padding: clamp(1.1rem, 2vw, 1.5rem);
    border: 1px solid rgba(15, 140, 140, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 24px 70px rgba(9, 35, 63, 0.08);
  }

  .contact-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Premium redesign layer */
:root {
  --cream: #f8fcfb;
  --mint: #d7f4ee;
  --gold: #d9a85b;
  --deep-shadow: 0 30px 90px rgba(6, 28, 52, 0.18);
}

body {
  background:
    linear-gradient(180deg, #f4fbfa 0%, #ffffff 34%, #f8fbfd 100%);
}

.site-header {
  min-height: 84px;
  border-bottom: 1px solid rgba(15, 140, 140, 0.14);
  box-shadow: 0 10px 40px rgba(9, 35, 63, 0.06);
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border-color: rgba(15, 140, 140, 0.18);
  box-shadow: 0 10px 24px rgba(9, 35, 63, 0.08);
}

.brand strong {
  font-size: 1.05rem;
}

.site-nav {
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--accent);
  color: var(--teal-dark);
}

.header-call {
  border: 0;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(9, 35, 63, 0.18);
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 5vw, 5.2rem) max(1rem, calc((100% - 1180px) / 2)) clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(15, 140, 140, 0.14);
  background:
    radial-gradient(circle at 78% 22%, rgba(15, 140, 140, 0.16), transparent 28%),
    linear-gradient(135deg, #f4fffc 0%, #ffffff 48%, #eef8ff 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(15, 140, 140, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(9, 35, 63, 0.06);
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-top: 1.05rem;
  color: #40556a;
}

.btn {
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #12a6a0);
  box-shadow: 0 18px 36px rgba(15, 140, 140, 0.25);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--navy), #174b76);
  box-shadow: 0 18px 36px rgba(9, 35, 63, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(9, 35, 63, 0.14);
}

.trust-row {
  margin-top: 1.6rem;
  gap: 0.85rem;
}

.trust-row span,
.concerns span {
  border-color: rgba(15, 140, 140, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(9, 35, 63, 0.06);
}

.hero-media {
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: linear-gradient(135deg, #f6fbfd, #ffffff);
  box-shadow: var(--deep-shadow);
}

.hero-media::after {
  content: "10+ years pediatric experience";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  background: rgba(9, 35, 63, 0.82);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(3.2rem, 6vw, 5.4rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.split {
  align-items: center;
}

.split > div:first-child {
  padding: clamp(1.1rem, 3vw, 2rem);
  border-left: 5px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 22px 22px 0;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
  border: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #0f4a70);
  box-shadow: var(--deep-shadow);
}

.stats div {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.35rem;
}

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

.stats strong,
.stats span {
  color: var(--white);
}

.stats strong {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.cards {
  counter-reset: service;
  gap: 1.15rem;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 1.35rem;
  border: 1px solid rgba(15, 140, 140, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 253, 252, 0.96));
  box-shadow: 0 18px 48px rgba(9, 35, 63, 0.08);
  overflow: hidden;
}

.service-card::before {
  counter-increment: service;
  content: "0" counter(service);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(15, 140, 140, 0.08);
  border-radius: 999px;
}

.service-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--teal-dark);
}

.service-card h3 {
  font-size: 1.28rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--teal-dark);
}

.text-link::after {
  content: ">";
  margin-left: 0.45rem;
}

.choice-grid {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, var(--navy), #0d4e68 58%, #0f8c8c);
}

.choice-grid h2,
.choice-grid .eyebrow {
  color: var(--white);
}

.choice-grid p:not(.eyebrow) {
  min-height: 92px;
  display: flex;
  align-items: center;
  border-left: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.cta-band {
  border-radius: 28px;
  background:
    linear-gradient(135deg, #06213c, #0a6d75 62%, #12a6a0);
  box-shadow: var(--deep-shadow);
}

.reviews {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.reviews .section-head {
  grid-column: 1 / -1;
}

.reviews blockquote,
details,
.contact-card,
.appointment-form,
.toc {
  border-color: rgba(15, 140, 140, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(9, 35, 63, 0.08);
}

.map {
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(9, 35, 63, 0.08);
}

.mobile-sticky {
  box-shadow: 0 -18px 38px rgba(9, 35, 63, 0.14);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }
}

@media (max-width: 980px) {
  .site-nav a {
    border-radius: 12px;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 1.65rem;
    padding-bottom: 2.3rem;
  }

  h1 {
    font-size: 2.32rem;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-actions .btn-primary {
    flex: 1 1 100%;
  }

  .hero-actions .btn-secondary,
  .hero-actions .btn-ghost {
    flex: 1 1 calc(50% - 0.35rem);
  }

  .hero-media {
    border-width: 6px;
    border-radius: 20px;
  }

  .hero-media::after {
    position: static;
    display: block;
    margin: 0.65rem;
    max-width: none;
    text-align: center;
  }

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

/* Final UI polish: cleaner mobile and more balanced sections */
@media (max-width: 759px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    box-shadow: 0 8px 24px rgba(9, 35, 63, 0.07);
  }

  .hero {
    gap: 1.25rem;
    padding-top: 1.35rem;
    padding-bottom: 1.65rem;
  }

  .hero .eyebrow,
  .page-hero .eyebrow {
    padding: 0.45rem 0.68rem;
    font-size: 0.72rem;
  }

  h1 {
    margin-top: 0.65rem;
    font-size: 2.06rem;
    line-height: 1.1;
  }

  .lead,
  .page-hero > p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 0.62rem;
    margin-top: 1.1rem;
  }

  .btn {
    min-height: 48px;
    border-radius: 12px;
  }

  .trust-row {
    display: none;
  }

  .trust-row span,
  .concerns span {
    padding: 0.58rem 0.72rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-media {
    margin-top: 0.45rem;
    border: 5px solid #ffffff;
    border-radius: 18px;
  }

  .hero-media::after {
    margin: 0.55rem;
    padding: 0.62rem 0.72rem;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .section {
    padding-top: 2.3rem;
    padding-bottom: 2.3rem;
  }

  .section-head {
    margin-bottom: 1.15rem;
  }

  .split > div:first-child {
    padding: 1rem;
    border-left-width: 4px;
    border-radius: 0 16px 16px 0;
  }

  .cards {
    gap: 0.85rem;
  }

  .service-card {
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(9, 35, 63, 0.07);
  }

  .service-card::before {
    width: 36px;
    height: 36px;
    margin-bottom: 0.78rem;
    border-radius: 11px;
    font-size: 0.82rem;
  }

  .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .service-card p {
    margin-top: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.94rem;
  }

  .choice-grid {
    width: min(100% - 1rem, 1180px);
    max-width: 1180px;
    margin-inline: auto;
    padding: 2rem 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f3fbfa);
    box-shadow: 0 14px 40px rgba(9, 35, 63, 0.08);
  }

  .choice-grid > div {
    padding-inline: 1rem;
  }

  .choice-grid h2 {
    color: var(--navy);
    font-size: 1.75rem;
  }

  .choice-grid .eyebrow {
    color: var(--teal-dark);
  }

  .choice-grid p:not(.eyebrow) {
    min-height: auto;
    margin-inline: 0.85rem;
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    background: var(--white);
    color: var(--navy);
    box-shadow: inset 0 0 0 1px rgba(15, 140, 140, 0.14), 0 8px 20px rgba(9, 35, 63, 0.05);
  }

  .cta-band {
    width: min(100% - 1rem, 1180px);
    border-radius: 20px;
  }

  .contact-grid {
    gap: 1rem;
    padding-bottom: 5rem;
  }

  .contact-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .mini-actions {
    gap: 0.55rem;
  }

  .mini-actions a {
    padding: 0.62rem 0.68rem;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .map-wrap,
  .map {
    min-height: 300px;
  }

  .map {
    border-radius: 16px;
  }

  .map-link-cover {
    border-radius: 16px;
  }

  .mobile-sticky {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    height: 58px;
    border: 1px solid rgba(15, 140, 140, 0.16);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-sticky .mobile-sticky {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    padding: 0.6rem 0.35rem;
    font-size: 0.94rem;
  }
}
