/* ── Brandon Grotesque – Local Fonts ── */
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandon-grotesque";
  src: url("fonts/BrandonGrotesque-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --navy:     #060E9F;
  --soft:     #95D4E9;
  --red:      #FF0000;
  --white:    #ffffff;
  --offwhite: #f5fafd;
  --lightbg:  #eaf6fb;
  --textdk:   #060E9F;
  --textmd:   #2a3a6e;
  --textlt:   #5a6e8a;
}

body {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  color: var(--textmd);
  width: 100%;
  overflow-x: hidden;
  zoom: 1.25;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Nav ── */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid #dde8f5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(6,14,159,0.07);
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a:not(.btn-primary) { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 11px; font-weight: 600; color: var(--textdk); text-decoration: none; letter-spacing: 0.09em; text-transform: uppercase; padding: 5px 10px; border-radius: 0; transition: background 0.2s, color 0.2s; }
.nav-links a:not(.btn-primary):hover { background: var(--soft); color: var(--navy); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 11px 22px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #0510c0; }
a.btn-primary { color: var(--white); text-decoration: none; display: inline-block; }
a.btn-primary:hover { color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 30px;
  padding: 11px 22px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 11px 26px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 540px;
  background: var(--soft);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0; bottom: 0;
  left: 15%; right: 15%;
  z-index: 0;
  overflow: hidden;
}
.hero-image .img-placeholder {
  width: 100%; height: 100%;
  min-height: 540px;
  background: repeating-linear-gradient(45deg, #b8d8ee 0, #b8d8ee 1px, #d4eaf8 1px, #d4eaf8 14px);
  display: flex; align-items: center; justify-content: center;
}
.hero-image .img-placeholder span {
  font-family: monospace;
  font-size: 12px;
  color: #5a7a96;
  text-align: center;
  background: rgba(255,255,255,0.65);
  padding: 10px 16px;
  border-radius: 4px;
  line-height: 1.6;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 52px 48px;
  max-width: 440px;
  margin-left: 8%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-text h1 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 525;
  font-size: 40px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero side label ── */
.hero-side-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-lr;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 14px;
  z-index: 3;
  white-space: nowrap;
  opacity: 0.55;
}

.social-strip {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: white;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-icon:hover { background: #0510c0; transform: scale(1.1); }

/* ── Promo Banner ── */
.promo-banner {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding: 0 12.5%;
  text-align: center;
}
.promo-inner {
  background: var(--navy);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 48px;
}
.promo-banner h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 4px;
}
.promo-banner p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Content Split ── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 12.5%;
  background: var(--white);
}
.content-text .eyebrow { margin-bottom: 10px; }
.content-text h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.content-text p {
  font-size: 16px;
  color: var(--textmd);
  line-height: 1.78;
  margin-bottom: 24px;
  font-weight: 400;
}
.content-img img { width: 100%; min-height: 280px; border-radius: 0; object-fit: cover; display: block; }

/* ── Highlight Band (Cordova only) ── */
.highlight-band {
  background: var(--soft);
  padding: 40px 12.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.highlight-item h3 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 6px;
}
.highlight-item p {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Services Strip ── */
.services-strip {
  background: var(--lightbg);
  padding: 36px 12.5%;
}
.services-strip h3 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  background: var(--white);
  border: 2px solid var(--soft);
  border-radius: 30px;
  padding: 8px 20px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* ── Testimonials ── */
.testimonials {
  background:
    linear-gradient(rgba(6,14,159,0.70), rgba(6,14,159,0.70)),
    url('lp-images/image--reviews.jpg') center / cover no-repeat;
  padding: 72px 12.5%;
  position: relative;
  width: 100%;
  display: block;
}
.testimonials .big-quote {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonials-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.quote-mark { width: 48px; height: auto; display: block; margin: 0 auto 12px; }
.reviews-heading {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.testimonials blockquote {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}
.testimonials cite {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  font-style: italic;
  display: block;
  margin-bottom: 30px;
  transition: opacity 0.2s ease;
}
.btn-fb-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 13px 28px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-fb-review:hover { background: var(--soft); color: var(--navy); }
.btn-fb-review .fab { font-size: 14px; }
.arrow-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none; color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 3;
}
.arrow-btn:hover { background: rgba(255,255,255,0.25); }
.arrow-btn.left { left: 20px; }
.arrow-btn.right { right: 20px; }

/* ── About ── */
.about-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 12.5%;
  background: var(--white);
}
.about-section h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.about-section p {
  font-size: 15px;
  color: var(--textmd);
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-img .img-placeholder { width: 260px; min-height: 320px; border-radius: 0; }
.about-img img { width: 260px; height: 320px; object-fit: cover; border-radius: 0; display: block; }

/* ── Locations ── */
.locations-section {
  background: var(--offwhite);
  padding: 64px 12.5%;
}
.locations-section h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.location-card {
  background: var(--soft);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.location-card:hover { opacity: 0.85; }
.location-card > img { width: 100%; height: 180px; object-fit: cover; display: block; }
.location-info { padding: 18px 16px 20px; text-align: center; }
.location-info .loc-name { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; font-size: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.location-info address { font-style: normal; font-size: 12px; color: var(--navy); line-height: 1.65; margin-bottom: 10px; }
.location-info .loc-phone { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); display: block; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 40px 12.5% 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
/* brand column */
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 220px; }
.footer-logo-img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-icon { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-social-icon:hover { border-color: var(--soft); color: var(--soft); }

/* link columns */
.footer-cols { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.footer-col a { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--soft); }

/* contact column */
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-phone { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 17px; font-weight: 700; color: white; text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-phone:hover { color: var(--soft); }

/* bottom bar */
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── Smooth Scroll ── */
html { scroll-behavior: smooth; }

/* ── Review Carousel Transitions ── */
#review-text, #review-cite { transition: opacity 0.2s ease; }

/* ── btn-outline-white as link ── */
.btn-outline-white { display: inline-block; text-decoration: none; }

/* ── Dr. Johnston Alt Split ── */
.content-split--alt { background: var(--lightbg); }
.content-split--full { grid-template-columns: 1fr; background: var(--lightbg); }

/* ── About photo ── */
.about-photo { width: 260px; height: 320px; object-fit: cover; border-radius: 0; display: block; }

/* ── Footer bottom links ── */
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--soft); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile: tablet ── */
@media (max-width: 768px) {
  body { zoom: 1; }

  .announcement-bar { font-size: 11px; padding: 8px 5%; }

  nav { padding: 12px 5%; position: relative; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 5%;
    gap: 16px;
    border-bottom: 1px solid #dde8f5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-primary { margin-top: 4px; }

  .hero { flex-direction: column; min-height: auto; align-items: stretch; }
  .hero-image {
    position: relative;
    left: auto; right: auto; top: auto; bottom: auto;
    height: 240px;
    order: 2;
  }
  .hero-text {
    position: relative;
    margin: 0;
    max-width: 100%;
    padding: 32px 5%;
    order: 1;
    border-radius: 0;
  }
  .social-strip {
    display: none;
  }

  .promo-banner { position: static; padding: 0 5%; margin-top: 0; }
  .promo-inner { padding: 20px 24px; }
  .promo-banner h2 { font-size: 18px; }

  .highlight-band { grid-template-columns: 1fr 1fr; padding: 28px 5%; gap: 20px; }

  .content-split { grid-template-columns: 1fr; padding: 36px 5%; gap: 24px; }
  .content-split--alt { padding: 36px 5%; }

  .services-strip { padding: 28px 5%; }

  .testimonials { padding: 52px 5%; }
  .arrow-btn.left { left: 8px; }
  .arrow-btn.right { right: 8px; }

  .about-section { grid-template-columns: 1fr; padding: 36px 5%; gap: 28px; }
  .about-img { display: flex; justify-content: center; }
  .about-img .img-placeholder { width: 100%; max-width: 360px; min-height: 240px; }
  .about-photo { width: 100%; max-width: 360px; height: 260px; }

  .locations-section { padding: 36px 5%; }
  .location-cards { grid-template-columns: repeat(2, 1fr); }

  footer { padding: 32px 5% 20px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-cols { gap: 32px; }
  .footer-contact { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
}

/* ── Mobile: small phone ── */
@media (max-width: 480px) {
  .highlight-band { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns button, .hero-btns a { width: 100%; text-align: center; }
  .hero-text h1 { font-size: 32px; }
  .content-text h2, .about-section h2 { font-size: 22px; }
  .testimonials-inner blockquote { font-size: 14px; }
  .location-cards { grid-template-columns: 1fr; }
}

/* ── btn-outline as link ── */
a.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── BBB badge ── */
.footer-bbb { display: flex; align-items: center; }
.bbb-badge { height: 52px; width: auto; display: block; }

/* ── Patients Page – First Time Patients ── */
.patients-intro {
  background: var(--white);
  padding: 72px 12.5%;
  text-align: center;
}
.patients-intro .brand-icon {
  width: 64px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.patients-intro h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 28px;
}
.patients-intro p {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 16px;
  font-weight: 400;
}
.patients-intro a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.patients-intro a:hover { opacity: 0.75; }

/* ── Patients Page – CTA Band ── */
.cta-band {
  background: var(--soft);
  padding: 80px 12.5%;
  text-align: center;
}
.cta-band h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 16px;
  color: var(--navy);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 768px) {
  .patients-intro { padding: 48px 5%; }
  .cta-band { padding: 52px 5%; }
  .cta-band h2 { font-size: 22px; }
}

/* ── Patient Safety Page ── */
.ps-content {
  display: flex;
  gap: 64px;
  padding: 72px 12.5%;
  background: var(--white);
  align-items: flex-start;
}
.ps-icons {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex-shrink: 0;
  padding-top: 6px;
}
.ps-icon {
  font-size: 34px;
  color: var(--navy);
  opacity: 0.6;
  display: block;
  line-height: 1;
}
.ps-text h1 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 20px;
}
.ps-text h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 22px;
}
.ps-text p {
  font-size: 18px;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 400;
  max-width: 700px;
}

@media (max-width: 768px) {
  .ps-content { flex-direction: column; gap: 28px; padding: 48px 5%; }
  .ps-icons { flex-direction: row; gap: 20px; }
  .ps-icon { font-size: 28px; }
  .ps-text h1 { font-size: 26px; }
  .ps-text h2 { font-size: 14px; }
  .ps-text p { font-size: 16px; }
}

/* ── About Us Page ── */
.about-hero {
  max-width: 75%;
  margin: 0 auto;
  overflow: hidden;
  max-height: 560px;
  display: block;
}
.about-hero img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-who {
  background: var(--white);
  padding: 72px 12.5%;
  text-align: center;
}
.about-who .brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.about-who h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-who p {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}
.about-testimonials {
  background:
    linear-gradient(rgba(6,14,159,0.50), rgba(6,14,159,0.50)),
    url('lp-images/about-us-img-reviews.jpg') center / cover no-repeat;
}
.about-team {
  background: var(--white);
  padding: 72px 12.5%;
  text-align: center;
}
.about-team h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 48px;
}
/* Center the lone 3rd card */
.loc-team-card--solo {
  width: calc(50% - 28px);
  max-width: 360px;
}

@media (max-width: 768px) {
  .about-hero { max-height: 320px; }
  .about-who { padding: 48px 5%; }
  .about-who h2 { font-size: 22px; }
  .about-team { padding: 48px 5%; }
  .about-team h2 { font-size: 22px; }
  .loc-team-card--solo { width: 100%; max-width: 100%; }
}

/* ── Patient Portal Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  position: relative;
  background: var(--navy);
  background-image: url('https://bellanodental.com/assets/images/pattern.svg');
  background-repeat: repeat;
  background-size: 200px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 64px 56px;
  text-align: center;
  border-radius: 4px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.modal-close:hover { opacity: 1; }
.modal-box h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--soft);
  margin-bottom: 24px;
}
.modal-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.btn-portal {
  display: inline-block;
  background: rgba(149,212,233,0.12);
  color: var(--soft);
  border: 2px solid var(--soft);
  border-radius: 30px;
  padding: 14px 36px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-portal:hover {
  background: var(--soft);
  color: var(--navy);
}
@media (max-width: 768px) {
  .modal-box { padding: 48px 24px 40px; background-size: 140px; }
  .modal-box h2 { font-size: 20px; letter-spacing: 2px; }
  .modal-box p { font-size: 14px; }
}

/* ── FAQ Page ── */
.faq-section {
  background: var(--soft);
  padding: 80px 12.5% 100px;
}
.faq-title {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 44px;
}
.faq-tab-btn {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.faq-tab-btn.active {
  background: var(--navy);
  color: white;
}
.faq-tab-btn:not(.active):hover { background: rgba(6,14,159,0.1); }
.faq-panel { display: none; max-width: 740px; margin: 0 auto; }
.faq-panel.active { display: block; }
.faq-divider {
  border: none;
  border-top: 1.5px solid rgba(6,14,159,0.25);
  margin: 0;
}
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
}
.faq-arrow {
  color: var(--navy);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-question-text {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  line-height: 1.45;
}
.faq-answer {
  display: none;
  padding: 0 0 28px 26px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 400;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer .faq-notes {
  font-size: 13px;
  opacity: 0.65;
  font-style: italic;
  line-height: 1.7;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .faq-section { padding: 52px 5% 72px; }
  .faq-title { font-size: 21px; letter-spacing: 2px; }
  .faq-question-text { font-size: 13px; letter-spacing: 1px; }
  .faq-answer p { font-size: 15px; }
  .faq-tab-btn { font-size: 11px; padding: 10px 20px; }
}

/* ── Financing & Insurance Page ── */
.fi-section {
  padding: 72px 12.5%;
  text-align: center;
  background: var(--white);
}
.fi-section--alt { background: #eaeaf5; }
.fi-section h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 20px;
}
.fi-section p {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto 16px;
  font-weight: 400;
}
.fi-section p:last-child { margin-bottom: 0; }
.fi-cherry-card {
  background: var(--white);
  border: 1.5px solid #dde8f5;
  border-radius: 8px;
  padding: 36px 40px;
  max-width: 420px;
  margin: 36px auto 0;
}
.fi-cherry-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fi-cherry-icon {
  width: 40px;
  height: 40px;
  background: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.fi-cherry-name {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.fi-cherry-card p {
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 400;
  max-width: none;
}

@media (max-width: 768px) {
  .fi-section { padding: 48px 5%; }
  .fi-section h2 { font-size: 22px; }
  .fi-cherry-card { padding: 28px 24px; max-width: 100%; }
}

/* ── Savings Plan Page ── */
.sp-illustration {
  background: var(--soft);
  border-radius: 6px;
  padding: 48px 40px;
  max-width: 480px;
  margin: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--navy);
}
.sp-illustration .sp-main-icon { font-size: 64px; }
.sp-illustration .sp-accent { font-size: 22px; opacity: 0.55; }
.sp-tagline {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 20px;
}
.sp-plans-label {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.sp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 8px;
}
.sp-list li {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.85;
  padding: 4px 0;
}
.sp-plans-sublabel {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin: 4px 0 12px;
}

@media (max-width: 768px) {
  .sp-illustration { padding: 36px 24px; }
  .sp-illustration .sp-main-icon { font-size: 48px; }
  .sp-tagline { font-size: 18px; }
  .sp-list li { font-size: 15px; }
}

.sp-icon-img { display: block; margin: 24px auto 28px; max-width: 480px; width: 100%; border-radius: 0; }
