:root {
  --navy: #10263f;
  --navy-2: #183653;
  --blue-mid: #1f6fe5;
  --blue-dark: #1555b7;
  --blue-light: #eef7ff;
  --blue-soft: #f6fbff;
  --teal-accent: #0c9ab7;
  --white-soft: #fbfdff;
  --white: #fff;
  --text-dark: #122238;
  --text-mid: #536174;
  --text-light: #8290a3;
  --border: #dbe5ef;
  --border-strong: #c5d3e2;
  --star-gold: #f59e0b;
  --cta-coral: #dc2626;
  --cta-coral-dark: #b91c1c;
  --success: #0e9f6e;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 48px rgba(16, 38, 63, .12);
  --shadow-card: 0 12px 28px rgba(16, 38, 63, .08);
}

/* Blog experience */
.blog-hero,
.post-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 111, 229, .24), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(12, 154, 183, .18), transparent 28%),
    linear-gradient(135deg, #071a2f 0%, var(--navy) 52%, #183653 100%);
  color: #fff;
}

.blog-hero::before,
.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.blog-hero-grid,
.post-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
  padding: 84px 0;
}

.blog-hero h1,
.post-hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: 0;
}

.post-hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
}

.blog-hero p:not(.eyebrow),
.post-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.55;
}

.blog-search-panel {
  background: rgba(255,255,255,.96);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}

.blog-panel-kicker,
.category-tag,
.blog-meta,
.post-meta,
.breadcrumbs {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.blog-search-panel label {
  display: block;
  margin: 10px 0 8px;
  font-size: 14px;
  font-weight: 850;
}

.blog-search-panel input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 15px;
  font: inherit;
  color: var(--text-dark);
  background: #fff;
}

.blog-search-panel input:focus {
  outline: 3px solid rgba(31, 111, 229, .14);
  border-color: var(--blue-mid);
}

.blog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.blog-filter-chips button {
  border: 1px solid var(--border);
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.blog-filter-chips button.active,
.blog-filter-chips button:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
}

.featured-mini {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.featured-mini img {
  height: 78px;
  width: 92px;
  object-fit: cover;
  border-radius: 14px;
}

.featured-mini strong {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.featured-mini a {
  display: block;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
}

.blog-main-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.blog-hero-grid > *,
.post-hero-grid > *,
.blog-main-layout > *,
.article-layout > * {
  min-width: 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 229, 239, .9);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 229, .28);
  box-shadow: 0 22px 46px rgba(16, 38, 63, .14);
}

.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.category-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue-dark);
}

.category-tag.emergency,
.blog-cta-card.emergency span {
  background: #fff1f2;
  color: var(--cta-coral-dark);
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.blog-card p {
  margin-bottom: 18px;
  line-height: 1.62;
}

.blog-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  color: var(--text-light);
}

.blog-card .text-link {
  margin-top: 16px;
}

.blog-sidebar,
.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.blog-side-card,
.blog-cta-card,
.emergency-mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(16, 38, 63, .07);
}

.blog-side-card h3,
.blog-cta-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.blog-side-card a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 750;
}

.blog-side-card a:hover {
  color: var(--blue-mid);
}

.blog-cta-card {
  background:
    linear-gradient(180deg, rgba(238,247,255,.9), #fff 56%),
    #fff;
}

.blog-cta-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.local-seo-band {
  background: var(--blue-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.local-seo-band .container {
  max-width: 920px;
  text-align: center;
}

.local-seo-band h2 {
  margin-bottom: 16px;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 34px;
  color: rgba(255,255,255,.72);
}

.breadcrumbs a:hover {
  color: #fff;
}

.post-hero-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
  padding-top: 50px;
}

.post-hero-grid img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.post-meta {
  color: rgba(255,255,255,.68);
}

.article-content {
  max-width: 790px;
}

.article-content .lead {
  font-size: 21px;
  line-height: 1.72;
  color: var(--text-dark);
}

.article-content h2 {
  margin: 44px 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.article-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.article-content p,
.article-content li {
  font-size: 18px;
  line-height: 1.78;
}

.article-content a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 22px;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--blue-mid);
  border-radius: 0 18px 18px 0;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.5;
}

.article-callout,
.inline-cta {
  margin: 32px 0;
  border: 1px solid rgba(31, 111, 229, .18);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, var(--blue-soft));
  box-shadow: var(--shadow-card);
}

.article-callout {
  padding: 24px;
}

.article-callout p {
  margin-bottom: 0;
}

.emergency-callout {
  border-color: rgba(220, 38, 38, .22);
  background: #fff7ed;
}

.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta strong {
  color: var(--navy);
  font-size: 20px;
}

.inline-cta span {
  color: var(--text-mid);
}

.compact-faq {
  margin-top: 18px;
}

.compact-faq .faq-item {
  background: #fff;
}

.emergency-mini-card {
  display: grid;
  gap: 8px;
  background: #fff7ed;
  border-color: #fed7aa;
}

.emergency-mini-card strong {
  color: var(--cta-coral-dark);
  font-size: 18px;
}

.emergency-mini-card a {
  color: var(--cta-coral-dark);
  font-weight: 900;
  font-size: 22px;
}

.related-section {
  background: var(--blue-soft);
}

.related-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-articles a {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  color: var(--navy);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease;
}

.related-articles a:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 229, .28);
}

.blog-card.is-hidden {
  display: none;
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .post-hero-grid,
  .blog-main-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero-grid,
  .post-hero-grid {
    padding: 64px 0;
  }

  .blog-card-grid,
  .related-articles {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .article-sidebar {
    position: static;
  }

  .post-hero-grid img {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .blog-hero-grid,
  .post-hero-grid {
    padding: 50px 0;
  }

  .blog-hero,
  .post-hero {
    text-align: center;
  }

  .blog-hero h1,
  .post-hero h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .blog-hero p:not(.eyebrow),
  .post-hero p:not(.eyebrow),
  .article-content .lead,
  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .blog-search-panel,
  .blog-side-card,
  .blog-cta-card,
  .emergency-mini-card {
    padding: 18px;
    border-radius: 18px;
  }

  .featured-mini {
    grid-template-columns: 78px 1fr;
    text-align: left;
  }

  .featured-mini img {
    width: 78px;
    height: 68px;
  }

  .blog-card-image img {
    height: 190px;
  }

  .post-hero-grid img {
    height: 260px;
  }

  .breadcrumbs,
  .post-meta,
  .blog-meta {
    justify-content: center;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-hero p:not(.eyebrow),
  .post-hero p:not(.eyebrow),
  .section-intro p,
  .blog-card p,
  .article-content p,
  .article-content li,
  .blog-side-card a,
  .featured-mini a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .article-content h2 {
    font-size: 30px;
  }

  .article-content blockquote {
    font-size: 18px;
    padding: 20px;
  }

  .inline-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

* { 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(--text-dark);
  background: var(--white-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

p { margin: 0 0 18px; color: var(--text-mid); }

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

.announcement {
  background: linear-gradient(90deg, var(--blue-dark), var(--teal-accent));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.announcement .container {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  text-align: center;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement button {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  z-index: 50;
  border-bottom: 1px solid rgba(219, 229, 239, .9);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 30px rgba(16, 38, 63, .10);
}

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

.logo {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  white-space: nowrap;
}

.tooth {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 22px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  color: var(--text-mid);
  transition: color .18s ease;
}

.nav a:hover { color: var(--blue-mid); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insurance-badge {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 11px;
  border: 1px solid #d7eaff;
  border-radius: 999px;
  white-space: nowrap;
}

.phone-link {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.hamburger {
  display: none;
  background: var(--navy);
  color: white;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font: inherit;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(16, 38, 63, .14);
}

.btn-primary {
  background: var(--blue-mid);
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 111, 229, .22);
}

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

.btn-emergency {
  background: var(--cta-coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(220, 38, 38, .2);
}

.btn-emergency:hover { background: var(--cta-coral-dark); }

.btn-outline-light,
.btn-secondary-light {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-outline-light:hover,
.btn-secondary-light:hover {
  background: rgba(255, 255, 255, .16);
}

.full { width: 100%; }

.hero {
  position: relative;
  min-height: 720px;
  background: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?w=1800') center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 29, 51, .86) 0%, rgba(16, 38, 63, .68) 46%, rgba(16, 38, 63, .34) 100%),
    linear-gradient(0deg, rgba(10, 29, 51, .28), rgba(255,255,255,.08));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: 720px;
  padding: 58px 0 64px;
}

.hero-copy {
  max-width: 700px;
  color: #fff;
  min-width: 0;
}

.hero h1,
.page-hero h1,
h2 {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text-dark);
}

.hero h1 {
  color: #fff;
  font-size: 76px;
  max-width: 690px;
  overflow-wrap: break-word;
}

.hero-subhead,
.hero-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.9);
  font-size: 22px;
  line-height: 1.55;
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 900;
  color: var(--teal-accent);
}

.hero .eyebrow,
.navy .eyebrow,
.final-cta .eyebrow {
  color: #8ee6f6;
}

.stars,
.review-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255, 255, 255, .20);
  font-weight: 700;
  backdrop-filter: blur(12px);
  max-width: 100%;
}

.stars span,
.review-stars,
.review-summary span {
  color: var(--star-gold);
  letter-spacing: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 38, 63, .10);
}

.pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.floating-card,
.appointment-form,
.contact-panel {
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.floating-card {
  width: 100%;
  padding: 10px;
}

.appointment-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  box-shadow: none;
}

.form-heading h3,
.appointment-form h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: 0;
}

.form-heading p:not(.eyebrow) {
  margin-bottom: 4px;
  font-size: 14px;
  overflow-wrap: anywhere;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(31, 111, 229, .12);
}

.form-note {
  margin: 0;
  color: var(--text-mid);
  font-size: 13px;
  text-align: center;
}

.insurance-strip {
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.insurance-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.insurance-strip p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logos span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text-mid);
  background: var(--white-soft);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: clamp(72px, 8vw, 104px) 0;
  background: #fff;
}

.section.blue { background: linear-gradient(180deg, var(--blue-soft), var(--blue-light)); }

.section.navy,
.final-cta,
.footer {
  background: var(--navy);
  color: #fff;
}

.centered { text-align: center; }

.centered > p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 52px;
}

.section h2 + p,
.final-cta p {
  font-size: 18px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.service-card,
.review-card,
.team-card,
.before-after {
  background: #fff;
  border: 1px solid rgba(219, 229, 239, .9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #bdd8f8;
  box-shadow: 0 18px 36px rgba(16, 38, 63, .12);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.review-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
}

.service-card strong {
  display: block;
  margin: auto 0 13px;
  color: var(--blue-dark);
  font-size: 14px;
}

.service-card a,
.text-link {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.split-grid,
.service-detail,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.split-copy { max-width: 560px; }

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 38, 63, .05);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: inset 0 0 0 5px #dff7ee;
}

.check-list strong {
  color: var(--navy);
  line-height: 1.25;
}

.check-list span {
  color: var(--text-mid);
  font-size: 14px;
}

.image-shell {
  position: relative;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #e9f6ff);
  box-shadow: var(--shadow-soft);
}

.image-shell img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 16px;
}

.doctor-preview {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.doctor-preview img {
  width: 330px;
  height: 390px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
}

.doctor-preview h2,
.doctor-preview p,
.final-cta h2,
.final-cta p,
.navy h2,
.navy p {
  color: #fff;
}

.doctor-preview p {
  max-width: 690px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.reviews-section { background: #fff; }

.review-summary {
  margin: 8px auto 2px;
  background: var(--blue-soft);
  color: var(--text-dark);
  border-color: var(--border);
}

.review-summary em {
  color: var(--text-mid);
  font-style: normal;
  font-size: 14px;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-card p {
  margin: 14px 0 18px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

.review-card strong { margin-top: auto; color: var(--navy); }

.review-card small { margin-top: 4px; color: var(--text-light); }

.emergency-section {
  background:
    linear-gradient(135deg, rgba(254, 242, 242, .98), rgba(255, 255, 255, 1));
}

.emergency-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid #fecaca;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(153, 27, 27, .08);
}

.emergency-section h2 { color: #991b1b; }

.emergency-section p { max-width: 700px; }

.emergency-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.emergency-actions small {
  color: #7f1d1d;
  font-weight: 750;
}

.location-section p {
  font-size: 18px;
}

.map {
  min-height: 260px;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(31,111,229,.10), rgba(12,154,183,.10)),
    repeating-linear-gradient(45deg, rgba(16,38,63,.05) 0, rgba(16,38,63,.05) 1px, transparent 1px, transparent 18px),
    #fff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--text-mid);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.map strong {
  color: var(--navy);
  font-size: 22px;
}

.map span {
  max-width: 520px;
}

.faq {
  max-width: 900px;
}

.faq h2 { text-align: left; }

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 38, 63, .05);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 20px 56px 20px 22px;
  border: 0;
  background: #fff;
  color: var(--navy);
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  transition: background .18s ease;
}

.faq-item button:hover { background: var(--blue-soft); }

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  translate: 0 -50%;
  color: var(--blue-mid);
  font-size: 24px;
  font-weight: 700;
}

.faq-item.open button::after { content: "-"; }

.faq-item div {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.open div { display: block; }

.faq-item p { margin: 0; }

.page-hero {
  background: radial-gradient(circle at top right, rgba(12,154,183,.22), transparent 35%), var(--navy);
  color: #fff;
  padding: 110px 0;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.service-detail img {
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

.pricing-table {
  max-width: 760px;
  margin: 30px auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.pricing-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.team-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.office-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.office-grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  min-width: 0;
}

.masonry .review-card {
  height: 100%;
  min-height: 245px;
  min-width: 0;
  margin: 0;
}

.masonry .review-card p {
  min-height: 88px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.before-after {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.before-after img {
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: contrast(1.04);
}

.transformations-grid .before-after img {
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.ba-label {
  padding: 14px;
  font-weight: 900;
}

.large-form { grid-template-columns: 1fr 1fr; }

.large-form h3,
.large-form .full,
.large-form .form-note,
.full-field {
  grid-column: 1 / -1;
}

.final-cta {
  padding: clamp(70px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(12,154,183,.28), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.final-cta .cta-row { justify-content: center; }

.trust-row {
  color: rgba(255,255,255,.76);
  font-weight: 750;
  font-size: 14px;
}

.footer {
  padding: 56px 0 96px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 36px;
}

.footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.footer p {
  color: rgba(255,255,255,.74);
}

.footer a {
  display: block;
  color: #dbeafe;
  margin: 9px 0;
  font-weight: 650;
}

.footer-logo {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-credit {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.54);
  text-align: center;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
}

.footer-credit a {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.footer-credit a:hover {
  color: var(--cta-coral);
}

.mobile-cta { display: none; }

.scroll-offer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 60;
  display: none;
  max-width: 300px;
}

.scroll-offer.show { display: block; }

.scroll-offer button {
  position: absolute;
  right: 8px;
  top: 6px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--text-mid);
  font: inherit;
  cursor: pointer;
}

.scroll-offer a {
  display: block;
  margin-top: 8px;
  color: var(--blue-mid);
  font-weight: 900;
}

.pulse { animation: pulse 1.9s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, .36); }
  70% { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.hero .fade-in {
  opacity: 1;
  transform: none;
}

.success {
  text-align: center;
  padding: 18px 4px;
}

.success h3 { margin: 0 0 10px; color: var(--navy); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
}

/* Booking page */
.booking-page {
  background: #fff;
}

.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background:
    radial-gradient(circle at 22% 16%, rgba(12, 154, 183, .30), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(31, 111, 229, .24), transparent 34%),
    linear-gradient(135deg, #0b2138 0%, var(--navy) 58%, #103a55 100%);
  color: #fff;
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
}

.booking-hero .container {
  position: relative;
}

.booking-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 64px;
  line-height: 1.02;
}

.booking-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.84);
  font-size: 20px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.booking-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, var(--blue-soft) 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
  min-width: 0;
}

.booking-info h2 {
  font-size: 46px;
  max-width: 560px;
}

.booking-info,
.booking-form-card,
.map-grid,
.booking-emergency-card {
  min-width: 0;
}

.booking-info > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 18px;
}

.trust-points {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.trust-points div,
.info-card,
.hours-card,
.mini-emergency {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 38, 63, .06);
}

.trust-points div {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 16px 18px 16px 48px;
}

.trust-points div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal-accent);
  box-shadow: 0 0 0 5px rgba(12,154,183,.12);
}

.trust-points strong,
.info-card h3,
.hours-card h3 {
  color: var(--navy);
}

.trust-points span {
  color: var(--text-mid);
  font-size: 14px;
}

.info-card,
.hours-card,
.mini-emergency {
  padding: 22px;
  margin-top: 16px;
}

.info-card h3,
.hours-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.info-card a {
  display: block;
  margin: 8px 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.info-card p {
  margin: 12px 0 0;
}

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

.hours-card span {
  color: var(--text-mid);
}

.mini-emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff7ed;
  border-color: #fed7aa;
}

.mini-emergency span {
  color: #7c2d12;
  font-weight: 800;
}

.mini-emergency a {
  color: #9a3412;
  font-weight: 900;
  white-space: nowrap;
}

.booking-form-card {
  position: sticky;
  top: 108px;
  padding: 10px;
  border: 1px solid rgba(219,229,239,.9);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,251,255,.96));
  box-shadow: 0 24px 70px rgba(16, 38, 63, .14);
}

.booking-form-card .appointment-form {
  padding: 32px;
  gap: 16px;
  border-radius: 18px;
  border: 0;
  background: #fff;
}

.booking-form-card .appointment-form h3 {
  font-size: 32px;
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea {
  min-height: 54px;
  border-radius: 12px;
}

.booking-form-card textarea {
  min-height: 124px;
  resize: vertical;
}

.booking-form-card .btn {
  min-height: 56px;
  font-size: 16px;
}

.map-section {
  background: var(--blue-soft);
}

.map-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.map-grid h2 {
  font-size: 44px;
}

.static-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #c8d8e8;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 22%, rgba(12,154,183,.18), transparent 20%),
    radial-gradient(circle at 82% 78%, rgba(31,111,229,.16), transparent 23%),
    linear-gradient(135deg, #eef7ff, #ffffff);
  box-shadow: var(--shadow-soft);
}

.static-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,38,63,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,38,63,.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(197,211,226,.8);
  box-shadow: 0 8px 18px rgba(16,38,63,.07);
}

.road-one {
  width: 82%;
  left: 8%;
  top: 34%;
  rotate: -12deg;
}

.road-two {
  width: 78%;
  left: 20%;
  top: 62%;
  rotate: 24deg;
}

.road-three {
  width: 62%;
  left: -7%;
  top: 76%;
  rotate: -28deg;
}

.map-area {
  position: absolute;
  border-radius: 28px;
  background: rgba(12,154,183,.11);
  border: 1px solid rgba(12,154,183,.12);
}

.area-one {
  width: 210px;
  height: 110px;
  left: 8%;
  top: 11%;
}

.area-two {
  width: 250px;
  height: 130px;
  right: 7%;
  bottom: 10%;
  background: rgba(31,111,229,.10);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  translate: -50% -50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.map-pin span {
  width: 34px;
  height: 34px;
  border-radius: 999px 999px 999px 4px;
  rotate: -45deg;
  background: var(--blue-mid);
  box-shadow: 0 10px 24px rgba(31,111,229,.28);
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: #fff;
}

.map-pin strong,
.map-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16,38,63,.11);
}

.map-chip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 800;
}

.booking-emergency-section {
  background: #fff;
}

.booking-emergency-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid #fecaca;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(254,202,202,.38), transparent 30%),
    linear-gradient(135deg, #fff8f1, #fff);
  box-shadow: 0 18px 42px rgba(153,27,27,.08);
}

.booking-emergency-card h2 {
  color: #8a1c1c;
  font-size: 42px;
}

.emergency-phone {
  min-width: 290px;
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 22px;
  border: 1px solid #fecaca;
  border-radius: 20px;
  background: #fff;
}

.emergency-phone span {
  color: #991b1b;
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
}

.emergency-phone > a:not(.btn) {
  color: #7f1d1d;
  font-size: 28px;
  font-weight: 900;
}

.booking-final-cta {
  padding: 88px 0;
}

@media (max-width: 1080px) {
  .nav,
  .header-actions { display: none; }

  .hamburger {
    display: block;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 32px rgba(16, 38, 63, .12);
  }

  .nav.open a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--border);
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .service-detail,
  .contact-grid,
  .booking-grid,
  .map-grid,
  .booking-emergency-card,
  .doctor-preview {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding: 66px 0 86px; }

  .hero h1 { font-size: 64px; }

  h2 { font-size: 44px; }

  .floating-card { max-width: 620px; }

  .booking-form-card {
    position: static;
  }

  .booking-info h2,
  .map-grid h2,
  .booking-emergency-card h2 {
    font-size: 40px;
  }

  .static-map {
    min-height: 340px;
  }

  .emergency-phone {
    width: 100%;
    min-width: 0;
  }

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

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

  .reviews-3 { grid-template-columns: 1fr; }

  .insurance-inner { grid-template-columns: 1fr; text-align: center; }

  .logos { justify-content: center; }

  .doctor-preview img {
    width: min(100%, 420px);
    height: 430px;
  }

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

  body { padding-bottom: 64px; }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 80;
    box-shadow: 0 -8px 24px rgba(16, 38, 63, .16);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 58px;
    padding: 13px 10px;
    text-align: center;
    background: var(--blue-mid);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-cta .emergency { background: var(--cta-coral); }
}

@media (max-width: 720px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .announcement .container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .booking-page .container {
    width: 100%;
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
    overflow: hidden;
  }

  .booking-page main {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .booking-page main > section > .container {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    padding-left: 0;
    padding-right: 0;
    margin-left: 14px;
    margin-right: 14px;
  }

  .booking-page .nav-wrap {
    overflow: visible;
  }

  .booking-page .hamburger {
    right: 14px;
    max-width: 64px;
  }

  .booking-page section,
  .booking-page .booking-grid,
  .booking-page .booking-info,
  .booking-page .booking-form-card,
  .booking-page .map-grid,
  .booking-page .booking-emergency-card,
  .booking-page .trust-points,
  .booking-page .info-card,
  .booking-page .hours-card,
  .booking-page .mini-emergency {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .booking-page .booking-info,
  .booking-page .booking-form-card,
  .booking-page .map-grid,
  .booking-page .booking-emergency-card {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .announcement span {
    max-width: 320px;
  }

  .announcement a {
    white-space: nowrap;
  }

  .announcement button {
    display: none;
  }

  .nav-wrap {
    position: relative;
    justify-content: space-between;
    gap: 12px;
  }

  .hamburger {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    padding-right: 86px;
  }

  .logo { font-size: 20px; }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 29, 51, .82) 0%, rgba(16, 38, 63, .68) 56%, rgba(16, 38, 63, .44) 100%),
      linear-gradient(0deg, rgba(255,255,255,.06), rgba(255,255,255,.08));
  }

  .hero-grid {
    padding: 50px 14px 64px;
    gap: 28px;
  }

  .hero-copy {
    text-align: center;
    margin: auto;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-hero {
    padding: 72px 0 64px;
  }

  .booking-hero h1 {
    font-size: 42px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-hero p:not(.eyebrow) {
    max-width: 340px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-badges {
    display: grid;
  }

  .booking-grid {
    gap: 28px;
  }

  .booking-info h2,
  .map-grid h2,
  .booking-emergency-card h2 {
    font-size: 34px;
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }

  .booking-info > p:not(.eyebrow),
  .map-grid p,
  .booking-emergency-card p {
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }

  .booking-form-card {
    width: 100%;
    max-width: 100%;
    padding: 7px;
    border-radius: 20px;
  }

  .booking-form-card .appointment-form {
    padding: 22px;
  }

  .booking-form-card .appointment-form h3 {
    font-size: 28px;
  }

  .mini-emergency,
  .booking-emergency-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .static-map {
    min-height: 300px;
    border-radius: 20px;
  }

  .map-pin strong {
    font-size: 13px;
  }

  .emergency-phone {
    justify-items: stretch;
  }

  .emergency-phone > a:not(.btn) {
    font-size: 24px;
  }

  .hero-subhead,
  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-heading p:not(.eyebrow) {
    max-width: 300px;
  }

  .stars {
    width: 100%;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    border-radius: var(--radius);
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pills { justify-content: center; }

  .pills span {
    width: 100%;
    justify-content: center;
  }

  .floating-card { padding: 7px; }

  .appointment-form {
    padding: 22px;
  }

  .section { padding: 58px 0; }

  h2 {
    font-size: 36px;
  }

  .card-grid,
  .masonry,
  .office-grid,
  .gallery-grid,
  .large-form {
    grid-template-columns: 1fr;
  }

  .masonry .review-card {
    min-height: 248px;
  }

  .image-shell img {
    min-height: 320px;
  }

  .doctor-preview {
    text-align: center;
  }

  .doctor-preview img {
    margin: auto;
    height: 360px;
  }

  .review-summary {
    display: grid;
    justify-items: center;
    border-radius: var(--radius);
  }

  .emergency-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .map {
    min-height: 220px;
  }

  .faq h2,
  .faq .eyebrow { text-align: center; }

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

  .pricing-table div {
    display: grid;
    gap: 4px;
  }

  .scroll-offer {
    left: 12px;
    right: 12px;
    bottom: 76px;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .blog-page main,
  .blog-post-page main,
  .blog-page section,
  .blog-post-page section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .blog-page .container,
  .blog-post-page .container {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    padding-left: 0;
    padding-right: 0;
    margin-left: 14px;
    margin-right: 14px;
  }

  .blog-page .nav-wrap,
  .blog-post-page .nav-wrap,
  .blog-page .announcement .container,
  .blog-post-page .announcement .container,
  .blog-page .footer .container,
  .blog-post-page .footer .container,
  .blog-page .final-cta .container,
  .blog-post-page .final-cta .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-page .nav-wrap,
  .blog-post-page .nav-wrap {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-left: 0;
    padding-right: 0;
    margin-left: 14px;
    margin-right: 14px;
  }

  .blog-page .hamburger,
  .blog-post-page .hamburger {
    display: block;
    position: absolute;
    top: 50%;
    left: 306px;
    right: auto;
    transform: translateY(-50%);
    min-width: 64px;
    max-width: 70px;
    z-index: 999;
    background: var(--navy);
    color: #fff;
  }

  .blog-page .nav-wrap,
  .blog-post-page .nav-wrap {
    position: relative;
    overflow: visible;
  }

  .blog-page .mobile-cta a,
  .blog-post-page .mobile-cta a {
    font-size: 12px;
    white-space: normal;
    line-height: 1.15;
  }

  .blog-page .mobile-cta,
  .blog-post-page .mobile-cta {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .blog-hero-grid,
  .post-hero-grid,
  .blog-main-layout,
  .article-layout,
  .blog-card-grid,
  .related-articles {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .blog-hero h1,
  .post-hero h1,
  .section-intro h2,
  .article-content h2,
  .blog-card h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-hero p:not(.eyebrow),
  .post-hero p:not(.eyebrow),
  .section-intro p,
  .blog-card p,
  .article-content p,
  .article-content li,
  .featured-mini a,
  .blog-side-card a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .post-meta span,
  .blog-meta span {
    min-width: 0;
  }

  .blog-search-panel,
  .blog-card,
  .blog-card-body,
  .article-content,
  .blog-side-card,
  .blog-cta-card,
  .emergency-mini-card,
  .article-callout,
  .inline-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .featured-mini {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .blog-filter-chips {
    justify-content: center;
  }
}
