*, *::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;
}

/* ── 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: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Nav ── */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12.5%;
  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: 28px; }
.nav-links a { 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; }
.nav-links a:hover { color: var(--red); }

.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; }

.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(--red);
  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: 800;
  font-size: 40px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--textmd);
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.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 {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 24px 12.5%;
}
.promo-banner h2 {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  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: 800;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.content-text p {
  font-size: 14px;
  color: var(--textmd);
  line-height: 1.78;
  margin-bottom: 24px;
}
.content-img img { width: 100%; min-height: 280px; border-radius: 6px; 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: var(--navy);
  padding: 72px 12.5%;
  position: relative;
  overflow: hidden;
}
.testimonials .big-quote {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  color: rgba(255,255,255,0.05);
  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 { font-size: 48px; color: var(--soft); font-family: Georgia, serif; line-height: 1; margin-bottom: 16px; }
.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;
}
.testimonials cite {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  font-style: normal;
  display: block;
  margin-bottom: 30px;
}
.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: 800;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-section p {
  font-size: 14px;
  color: var(--textmd);
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-img .img-placeholder { width: 260px; min-height: 320px; border-radius: 6px; }
.about-img img { width: 260px; height: 320px; object-fit: cover; border-radius: 6px; 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: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.location-card {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6,14,159,0.10);
  background: var(--white);
  border: 2px solid #dde8f5;
  transition: border-color 0.2s;
}
.location-card.active { border-color: #dde8f5; }
.location-card:hover { border-color: var(--navy); }
.location-card .map-placeholder {
  height: 150px;
  background: repeating-linear-gradient(45deg, #b8d8f0 0, #b8d8f0 1px, #d4eaf8 1px, #d4eaf8 14px);
  display: flex; align-items: center; justify-content: center;
}
.location-card .map-placeholder span { font-family: monospace; font-size: 11px; color: #5a7a96; background: rgba(255,255,255,0.7); padding: 6px 12px; border-radius: 3px; }
.location-card iframe { width: 100%; height: 150px; border: 0; display: block; }
.location-info { padding: 16px 20px; }
.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.08em; margin-bottom: 6px; }
.location-info address { font-style: normal; font-size: 12px; color: var(--textmd); line-height: 1.6; margin-bottom: 6px; }
.location-info .loc-phone { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; font-size: 13px; color: var(--red); }

/* ── 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);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--soft); }
.footer-badge { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 10px 16px; font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif; color: white; text-align: center; line-height: 1.3; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.55); }
.footer-logo-img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }

/* ── 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); }

/* ── About photo ── */
.about-photo { width: 260px; height: 320px; object-fit: cover; border-radius: 6px; 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 {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    padding: 16px;
    order: 3;
    background: var(--soft);
  }

  .promo-banner { padding: 20px 5%; }
  .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 { flex-direction: column; align-items: stretch; }
  .location-card { max-width: 100%; }

  footer { padding: 32px 5% 20px; }
  .footer-top { flex-direction: column; }
  .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; }
}

/* ── 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; }
