/* =============================================================
   Dr. Wesley Cooksey DDS — Site Stylesheet
   Consolidated 2026-05-20 (removed duplicate !important chains)
   ============================================================= */

:root {
  --brand:       #794d13;
  --brand-dark:  #5f3b0d;
  --brand-soft:  #f6efe5;
  --nav:         #17394a;
  --nav-dark:    #12293a;
  --ink:         #24343d;
  --muted:       #58636b;
  --page:        #f5f7f8;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; height: auto; }
table { max-width: 100%; width: 100%; }
a { color: var(--brand-dark); overflow-wrap: anywhere; }
a:hover { color: var(--brand); }
input, select, textarea { max-width: 100%; }
.container { max-width: 1180px; }

/* ── Header & Topbar ──────────────────────────────────────── */
.site-header { background: #fff; position: relative; z-index: 50; }
.topbar { border-bottom: 1px solid rgba(0,0,0,.08); }
.brand {
  color: var(--brand-dark);
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}
.brand:hover { color: var(--brand); }
.header-contact { font-size: .95rem; color: var(--muted); }
.header-contact a { color: var(--brand-dark); }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav { background: linear-gradient(180deg, var(--nav), var(--nav-dark)); }
.navbar { padding: .35rem 0; }
.navbar .navbar-nav { gap: .15rem; align-items: stretch; }
.navbar .nav-link {
  color: #fff;
  font-weight: 700;
  font-size: .94rem;
  padding: .85rem .9rem;
  border-radius: .35rem;
  line-height: 1.2;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.show,
.navbar .nav-link.active {
  background: rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
}
.navbar-toggler { border-color: rgba(255,255,255,.55); }

.dropdown-menu {
  border: 0;
  border-radius: .75rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.18);
  padding: .5rem;
  margin-top: .25rem;
  min-width: 16rem;
}
.dropdown-item {
  border-radius: .5rem;
  padding: .55rem .75rem;
  color: #2b2b2b;
  white-space: normal;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* Services split nav item */
.services-menu-item { gap: 0; }
.services-menu-item > .nav-link:first-child { padding-right: .35rem; }
.services-dropdown-toggle { padding-left: .25rem; padding-right: .75rem; }
.services-dropdown-toggle::after { margin-left: 0; }

/* ── Main Content ─────────────────────────────────────────── */
main { position: relative; z-index: 1; width: 100%; }
.content-card {
  background: #fff;
  border: 1px solid rgba(17,42,55,.08);
  overflow: hidden;
}
.content-card section { overflow: hidden; }
.page-title, .title, .content-card h1:first-child {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 1rem;
}
.content-card h2, .content-card h3 { color: var(--brand); }
.content-card ul { padding-left: 1.4rem; }
.content-card li { margin-bottom: .35rem; }
.plaintextarea { font-size: 1rem; color: inherit; }
.subtitle { font-weight: 700; color: var(--brand); }
p, li { font-size: clamp(1rem, 1.3vw, 1.08rem); }

/* ── Hero ─────────────────────────────────────────────────── */
.site-hero {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #eef5f7;
  border: 1px solid rgba(17,42,55,.08);
  box-shadow: 0 .75rem 1.75rem rgba(0,0,0,.08);
}
.site-hero .eyebrow {
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
.site-hero h1 { color: var(--brand-dark); line-height: 1.1; }
.site-hero p { color: #4d4237; }
.site-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
.eyebrow { letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: #b97a22; }

/* ── Sidebar contact card ─────────────────────────────────── */
.contact-card { position: sticky; top: 1rem; }
.contact-card img { max-height: 230px; object-fit: cover; }
.contact-card h2, .contact-card h3 { color: var(--brand); }

/* ── Forms ────────────────────────────────────────────────── */
.page-splits { border-top: 1px solid rgba(0,0,0,.12); margin: 1.25rem 0; }
.formmargin input, .formmargin textarea, .formmargin select { margin-bottom: .5rem; }
form input, form select, form textarea,
.form-control, .form-select { max-width: 100%; width: 100%; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn { white-space: normal; border-radius: 999px; font-weight: 700; }
.btn-primary, .btn-outline-secondary:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-outline-secondary { color: var(--brand-dark); border-color: var(--brand-dark); }

/* ── Maps / iframes ───────────────────────────────────────── */
iframe[src*="google"], iframe[src*="maps"] {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--nav); color: #dfe8ed; }
.site-footer a { color: #fff; }
.footer-links {
  display: flex;
  gap: .8rem 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }

/* ── Doctor buttons ───────────────────────────────────────── */
.doctor-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .doctor-btns { justify-content: flex-start; }
}

/* ── Utilities ────────────────────────────────────────────── */
.rounded-4, .content-card, .site-hero { border-radius: 1.25rem; }
section[class*="pt-5"],
section[class*="pb-5"] {
  padding-top:    clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.25rem, 5vw, 4rem);
}
.row { min-width: 0; }
[class*="col-"] { min-width: 0; }

/* ── Team Page ────────────────────────────────────────────── */
.team-page .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .82rem; color: #d39b3a; }

.team-page .comfort-panel,
.team-page .team-wow-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 12px 35px rgba(17,42,55,.12);
  padding: 1.5rem;
  color: #223;
}
.team-page .section { padding: 4rem 0; }
.team-page .soft-bg { background: #f7f9fa; }
.team-page .section-title { font-weight: 800; color: #193b4d; }
.team-page .section-text { font-size: 1.05rem; color: #58636b; }

.team-page .team-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.team-page .split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.team-page .team-photo-stack { position: relative; }
.team-page .team-main-photo { width: 100%; border-radius: 1.25rem; }

/* Staff card grid */
.team-page .team-card-grid,
.team-page .team-card-grid.two-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
  width: 100%;
}
.team-page .team-wow-card {
  width: 100%;
  max-width: 360px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17,42,55,.12);
  padding: 0;
}
.team-page .team-wow-card > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 0 0 320px;
  border-radius: 0;
}
.team-page .team-wow-card > div {
  flex: 1 1 auto;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.team-page .team-wow-card h4 { font-weight: 800; color: #193b4d; }
.team-page .team-wow-card p { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #d39b3a; font-weight: 700; }

/* Action photo grid */
.team-page .team-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}
.team-page .team-action-grid img {
  grid-column: auto;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
}

/* Navy section */
.team-page .navy-section { background: #17394a; color: #fff; }
.team-page .navy-section .section-text { color: #dfe8ed; }

.team-page .cta { text-align: center; background: #f7f9fa; }
.team-page .comfort-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #193b4d;
  color: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .topbar { text-align: center; }
  .navbar .container { align-items: flex-start; }
  .navbar-toggler { margin: .35rem 0; }
  .navbar-collapse { width: 100%; }
  .navbar .navbar-nav { width: 100%; padding: .75rem 0; gap: .2rem; align-items: stretch; }
  .navbar .nav-link { padding: .8rem .95rem; }
  .dropdown-menu { box-shadow: none; background: rgba(255,255,255,.96); margin: .25rem 0 .65rem; border-radius: .6rem; }
  .services-menu-item { display: flex; flex-wrap: wrap; align-items: center; width: 100%; }
  .services-menu-item > .nav-link:first-child { flex: 1 1 auto; }
  .services-menu-item > .dropdown-menu { flex-basis: 100%; width: 100%; }
  .content-card { padding: 1.15rem; border-radius: 1rem; }
  .site-hero .row { display: flex; flex-direction: column; }
  .site-hero-img { min-height: 260px; max-height: 360px; }
  .contact-card { position: static; }

  .team-page .split { grid-template-columns: 1fr; }
  .team-page .team-action-grid { grid-template-columns: 1fr; }
  .team-page .team-action-grid img { height: 280px; }
  .team-page .comfort-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575.98px) {
  body { font-size: 15px; }
  .brand { font-size: 1.35rem; }
  .topbar { padding-top: 1rem; padding-bottom: 1rem; }
  .header-contact { font-size: .9rem; }
  main.py-4 { padding-top: 1rem; }
  .content-card { padding: .9rem; }
  .site-hero-img { min-height: 220px; }
  .btn-lg { font-size: 1rem; padding: .8rem 1rem; }
  .footer-links { gap: .65rem; }
  .team-page .team-card-grid,
  .team-page .team-card-grid.two-card-grid { grid-template-columns: minmax(0,1fr); }
  .team-page .team-wow-card { max-width: 100%; }
  .team-page .team-wow-card > img { height: 300px; flex-basis: 300px; }
  .team-page .team-action-grid img { height: 240px; }
}

/* ═══════════════════════════════════════════════════════════
   Contact Page  (.contact-page)
   ══════════════════════════════════════════════════════════ */

/* ── Shared contact-page tokens ──────────────────────────── */
.cp-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}
.cp-eyebrow--light { color: #d39b3a; }

/* ── HERO ─────────────────────────────────────────────────── */
.cp-hero {
  position: relative;
  background: var(--nav);
  overflow: hidden;
  min-height: 480px;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
}
.cp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: .28;
}
.cp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.cp-hero-copy { color: #fff; }
.cp-hero-copy .cp-eyebrow { color: #d39b3a; }
.cp-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin: .5rem 0 1rem;
  color: #fff;
}
.cp-hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 460px; margin-bottom: 1.5rem; }
.cp-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.cp-emergency-note { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.7); margin: 0; }

/* Hero info card */
.cp-hero-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.cp-card-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  margin: 0 0 .25rem;
}
.cp-card-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cp-card-row { margin-bottom: 1rem; }
.cp-card-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .2rem;
}
.cp-card-value { display: block; font-size: .95rem; color: var(--ink); line-height: 1.5; }
.cp-card-link { color: var(--brand-dark); font-weight: 600; text-decoration: none; }
.cp-card-link:hover { color: var(--brand); text-decoration: underline; }

/* ── Buttons ──────────────────────────────────────────────── */
.cp-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 999px;
  padding: .65rem 1.4rem;
  font-weight: 700;
  font-size: .95rem;
}
.cp-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.cp-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: .65rem 1.4rem;
  font-weight: 700;
  font-size: .95rem;
}
.cp-btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.cp-btn-directions {
  background: var(--nav);
  color: #fff;
  border: none;
  border-radius: .75rem;
  padding: .75rem 1.25rem;
  font-weight: 700;
  text-align: center;
  display: block;
}
.cp-btn-directions:hover { background: var(--nav-dark); color: #fff; }
.cp-btn-gold {
  background: #d39b3a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .75rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.cp-btn-gold:hover { background: #b87e28; color: #fff; }
.cp-btn-outline-dark {
  background: transparent;
  color: var(--nav);
  border: 2px solid var(--nav);
  border-radius: 999px;
  padding: .7rem 1.75rem;
  font-weight: 700;
}
.cp-btn-outline-dark:hover { background: var(--nav); color: #fff; }

/* ── REACH US ─────────────────────────────────────────────── */
.cp-reach { padding: 4rem 0; background: #fff; }
.cp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin: .5rem 0 1rem;
  line-height: 1.2;
}
.cp-section-sub { color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cp-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cp-reach-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.1rem;
  padding: 1.75rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.cp-reach-card--dark {
  background: var(--nav);
  border-color: var(--nav);
  color: #fff;
}
.cp-reach-card--dark h3 { color: #fff; }
.cp-reach-card--dark p  { color: rgba(255,255,255,.78); }
.cp-reach-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: .5rem 0 0; }
.cp-reach-card p  { font-size: .92rem; color: var(--muted); flex: 1; margin: 0; }
.cp-reach-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  flex-shrink: 0;
}
.cp-reach-icon--outline {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.cp-reach-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
  margin-top: .5rem;
}
.cp-reach-link:hover { text-decoration: underline; color: var(--brand); }
.cp-reach-link--gold { color: #d39b3a; }
.cp-reach-link--gold:hover { color: #b87e28; }

/* ── MAP + HOURS ──────────────────────────────────────────── */
.cp-map-hours { padding: 4rem 0; background: var(--page); }
.cp-map-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.cp-map-wrap {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.cp-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
  gap: .5rem;
}
.cp-map-address { font-weight: 600; font-size: .92rem; color: var(--ink); }
.cp-map-open-link { font-size: .82rem; color: var(--brand-dark); font-weight: 600; text-decoration: none; }
.cp-map-open-link:hover { text-decoration: underline; }
.cp-map-wrap iframe { display: block; border-radius: 0; }

.cp-hours-wrap { padding: .5rem 0; }
.cp-hours-title {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: .4rem 0 .75rem;
}
.cp-hours-sub { color: var(--muted); font-size: .97rem; margin-bottom: 1.5rem; }
.cp-hours-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.1rem;
  padding: 1.5rem;
}
.cp-hours-box-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 .35rem; }
.cp-hours-note { font-size: .82rem; color: var(--muted); margin: 0 0 1rem; }
.cp-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .95rem;
  color: var(--ink);
}
.cp-hours-row:last-child { border-bottom: none; }
.cp-hours-time { font-weight: 700; color: var(--brand-dark); }
.cp-hours-closed { font-weight: 600; color: var(--muted); }

/* ── EMERGENCY BANNER ─────────────────────────────────────── */
.cp-emergency { background: var(--nav); padding: 3rem 0; }
.cp-emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cp-emergency-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: .4rem 0 .6rem;
  line-height: 1.1;
}
.cp-emergency-sub { color: rgba(255,255,255,.75); font-size: .97rem; max-width: 520px; margin: 0; }
.cp-emergency-btn { flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.cp-faq { padding: 4rem 0; background: #fff; }
.cp-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.cp-faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: .4rem 0 0;
}
.cp-faq-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  border-radius: 0;
  background: transparent;
}
.cp-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.1); }
.cp-faq-btn {
  background: transparent;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  padding: 1.1rem 0;
  box-shadow: none;
  border: none;
}
.cp-faq-btn:not(.collapsed) { color: var(--brand-dark); }
.cp-faq-btn::after { filter: none; }
.cp-faq-btn:focus { box-shadow: none; }
.cp-faq-body { padding: 0 0 1rem; font-size: .95rem; color: var(--muted); }
.cp-faq-body a { color: var(--brand-dark); }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cp-cta-strip { background: var(--nav); padding: 4rem 0; }
.cp-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: .5rem 0 .75rem;
}
.cp-cta-sub { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; font-size: 1rem; }
.cp-cta-btn { font-size: 1.05rem; padding: .8rem 2rem; }

/* ── REVIEW ───────────────────────────────────────────────── */
.cp-review { padding: 4rem 0; background: #fff; }
.cp-review-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin: .5rem 0 .75rem;
}
.cp-review-sub { color: var(--muted); max-width: 480px; margin: 0 auto 1.75rem; font-size: .97rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.cp-footer {
  background: var(--nav-dark);
  color: #dfe8ed;
  padding: 3rem 0 1.5rem;
}
.cp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cp-footer-logo { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.cp-footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); margin: 0; }
.cp-footer-heading { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 .75rem; }
.cp-footer-col p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0; }
.cp-footer-col a { color: rgba(255,255,255,.85); text-decoration: none; }
.cp-footer-col a:hover { color: #fff; text-decoration: underline; }
.cp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.cp-footer-links a { font-size: .88rem; color: rgba(255,255,255,.75); text-decoration: none; }
.cp-footer-links a:hover { color: #fff; }
.cp-footer-bottom {
  padding-top: 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.cp-footer-bottom a { color: rgba(255,255,255,.7); text-decoration: underline; }
.cp-footer-bottom a:hover { color: #fff; }
.cp-footer-legal { display: block; margin-top: .35rem; }
.cp-footer-legal a:not(:last-child)::after { content: "·"; margin: 0 .5rem; color: rgba(255,255,255,.3); text-decoration: none; }

/* ── Contact Page Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {
  .cp-hero-inner        { grid-template-columns: 1fr; }
  .cp-hero-card         { max-width: 480px; }
  .cp-reach-grid        { grid-template-columns: 1fr; }
  .cp-map-hours-grid    { grid-template-columns: 1fr; }
  .cp-faq-inner         { grid-template-columns: 1fr; gap: 1.5rem; }
  .cp-emergency-inner   { flex-direction: column; align-items: flex-start; }
  .cp-footer-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .cp-hero { min-height: auto; }
  .cp-hero-inner { padding-top: 2rem; padding-bottom: 2rem; }
  .cp-hero-copy h1 { font-size: 1.75rem; }
  .cp-reach-grid { grid-template-columns: 1fr; }
  .cp-footer-grid { grid-template-columns: 1fr; }
  .cp-emergency-btn { width: 100%; text-align: center; }
}


/* Mobile/desktop phone behavior
   Mobile phone links open the dialer.
   Desktop phone links route visitors to the contact page instead. */
.phone-mobile-link{display:inline !important;}
.phone-desktop-link{display:none !important;}
@media (min-width: 992px){
  .phone-mobile-link{display:none !important;}
  .phone-desktop-link{display:inline !important;}
  a.btn.phone-desktop-link,
  .btn.phone-desktop-link{display:inline-flex !important; align-items:center; justify-content:center;}
}
@media (max-width: 991.98px){
  a.btn.phone-mobile-link,
  .btn.phone-mobile-link{display:inline-flex !important; align-items:center; justify-content:center;}
}

/* ═══════════════════════════════════════════════════════════
   Emergency Page  (.emergency-page)
   ══════════════════════════════════════════════════════════ */

/* ── Call Now nav button ──────────────────────────────────── */
.em-nav-callbtn {
  background: #d39b3a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-weight: 700;
  font-size: .88rem;
}
.em-nav-callbtn:hover { background: #b87e28; color: #fff; }

/* ── Shared tokens ────────────────────────────────────────── */
.em-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}
.em-eyebrow--light { color: #d39b3a; }
.em-section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: .4rem 0 .9rem;
}
.em-section-sub {
  color: var(--muted);
  font-size: .97rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.em-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 999px;
  padding: .7rem 1.5rem;
  font-weight: 700;
  font-size: .97rem;
}
.em-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.em-btn-teal {
  background: var(--nav);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .7rem 1.5rem;
  font-weight: 700;
}
.em-btn-teal:hover { background: var(--nav-dark); color: #fff; }
.em-btn-directions {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: .7rem 1.5rem;
  font-weight: 700;
}
.em-btn-directions:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ── HERO ─────────────────────────────────────────────────── */
.em-hero {
  position: relative;
  background: var(--nav);
  overflow: hidden;
  min-height: 500px;
}
.em-hero-bg {
  position: absolute;
  inset: 0;
}
.em-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: .22;
}
.em-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.em-hero-copy { color: #fff; }
.em-hero-copy .em-eyebrow { color: #d39b3a; }
.em-hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  margin: .5rem 0 1rem;
  color: #fff;
}
.em-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.em-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.em-badge {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: .3rem .85rem;
}

/* Hero info card */
.em-hero-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.em-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .6rem;
  line-height: 1.3;
}
.em-card-sub {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.em-card-phone {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  text-decoration: none;
}
.em-card-phone:hover { color: var(--brand); text-decoration: underline; }

/* ── SYMPTOM STRIP ────────────────────────────────────────── */
.em-symptoms {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 1.5rem 0;
}
.em-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.em-symptom-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .85rem;
  background: #fafafa;
}
.em-symptom-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.em-symptom-sub {
  font-size: .82rem;
  color: var(--muted);
}

/* ── URGENT SECTION ───────────────────────────────────────── */
.em-urgent {
  padding: 4.5rem 0;
  background: var(--page);
}
.em-urgent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: .5rem;
}
.em-urgent-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1.1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.em-urgent-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.em-urgent-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}
.em-urgent-icon {
  width: 38px; height: 38px;
  border-radius: .65rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
  margin-bottom: .25rem;
}
.em-urgent-icon--warn { background: #fff3cd; color: #856404; }
.em-urgent-icon--teal { background: #d1ecf1; color: #0c5460; }
.em-urgent-icon--soft { background: var(--brand-soft); color: var(--brand-dark); }

/* ── FIRST AID TIPS ───────────────────────────────────────── */
.em-tips {
  padding: 4rem 0;
  background: #fff;
}
.em-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--page);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1.5rem;
  padding: 3rem;
}
.em-tips-title {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--ink);
  margin: .4rem 0 .75rem;
  line-height: 1.2;
}
.em-tips-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.em-tips-list { display: flex; flex-direction: column; gap: 0; }
.em-tip-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.em-tip-item:last-child { border-bottom: none; }
.em-tip-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .2rem;
}
.em-tip-desc {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

/* ── GENTLE CARE ──────────────────────────────────────────── */
.em-gentle {
  padding: 4.5rem 0;
  background: var(--page);
}
.em-gentle-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.em-gentle-photo img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.em-gentle-title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: .4rem 0 .85rem;
}
.em-gentle-sub {
  font-size: .97rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.em-gentle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.em-tag {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: .3rem .9rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.em-faq {
  padding: 4.5rem 0;
  background: #fff;
}
.em-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.em-faq-col { display: flex; flex-direction: column; }
.em-faq-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  border-radius: 0;
  background: transparent;
}
.em-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.1); }
.em-faq-btn {
  background: transparent;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: 1.1rem 0;
  box-shadow: none;
  border: none;
}
.em-faq-btn:not(.collapsed) { color: var(--brand-dark); box-shadow: none; }
.em-faq-btn:focus { box-shadow: none; }
.em-faq-body {
  padding: 0 0 1rem;
  font-size: .92rem;
  color: var(--muted);
}
.em-faq-body a { color: var(--brand-dark); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.em-cta-banner { padding: 4rem 0; background: var(--page); }
.em-cta-banner-inner {
  background: var(--nav);
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.em-cta-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: .4rem 0 .6rem;
}
.em-cta-banner-sub { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0; }
.em-cta-banner-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── RELATED CARE ─────────────────────────────────────────── */
.em-related { padding: 4.5rem 0; background: #fff; }
.em-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: .5rem;
}
.em-related-card {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  padding: 1.4rem;
  background: var(--page);
  transition: box-shadow .2s, border-color .2s;
}
.em-related-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-color: var(--brand-soft);
  text-decoration: none;
}
.em-related-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.em-related-card p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

/* ── Emergency Page Responsive ────────────────────────────── */
@media (max-width: 991.98px) {
  .em-hero-inner       { grid-template-columns: 1fr; }
  .em-hero-card        { max-width: 460px; }
  .em-symptoms-grid    { grid-template-columns: repeat(2, 1fr); }
  .em-urgent-grid      { grid-template-columns: repeat(2, 1fr); }
  .em-tips-grid        { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .em-gentle-grid      { grid-template-columns: 1fr; }
  .em-faq-grid         { grid-template-columns: 1fr; }
  .em-related-grid     { grid-template-columns: repeat(2, 1fr); }
  .em-cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575.98px) {
  .em-hero { min-height: auto; }
  .em-hero-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .em-hero-copy h1 { font-size: 1.85rem; }
  .em-symptoms-grid { grid-template-columns: 1fr 1fr; }
  .em-urgent-grid { grid-template-columns: 1fr; }
  .em-tips-grid { padding: 1.5rem; }
  .em-related-grid { grid-template-columns: 1fr 1fr; }
  .em-cta-banner-inner { padding: 2rem 1.5rem; }
  .em-cta-banner-actions { width: 100%; }
  .em-btn-primary, .em-btn-directions { width: 100%; text-align: center; }
}

