:root {
  --navy-950: #061528;
  --navy-900: #0b2347;
  --navy-800: #152d53;
  --blue-700: #0054a6;
  --blue-600: #0069c7;
  --cyan-500: #00aeef;
  --cyan-400: #33c1f5;
  --cyan-100: #ddf4fd;
  --blue-50: #eef8fd;
  --cert-blue: #1a6eb5;
  --white: #ffffff;
  --gray-900: #1a2332;
  --gray-700: #4a5568;
  --gray-500: #718096;
  --gray-200: #d8dee8;
  --gray-100: #f4f6f9;
  --gold: #e8a317;
  --max-width: 1080px;
  --header-height: 80px;
  --top-bar-height: 42px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  line-height: 1.7;
  background: var(--white);
}

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

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--cyan-500); }

h1, h2, h3, h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy-900);
}

p { margin-bottom: 1rem; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--navy-900); color: var(--white);
  padding: 0.75rem 1rem; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* Top phone bar — like Blue Sky */
.top-bar {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.9375rem;
  padding: 0.625rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1.0625rem;
}

.top-bar-phone:hover { color: var(--cyan-400); }

.top-bar-text {
  opacity: 0.85;
  text-align: center;
  flex: 1;
  display: none;
}

@media (min-width: 640px) {
  .top-bar-text { display: block; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo { flex-shrink: 0; }
.logo-img { height: 62px; width: auto; }
.logo-img--footer { height: 100px; width: auto; margin: 0 auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.nav-desktop a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--blue-700); }

.header-phone {
  display: none;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--blue-700);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: calc(var(--header-height) + var(--top-bar-height)) 0 0 0;
  background: var(--white);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--gray-200);
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 0.875rem 1rem;
  color: var(--gray-900);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-phone { display: block; }
  .menu-toggle { display: none; }
}

/* Classic hero (inner pages) */
.hero-classic {
  background: var(--gray-100);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.hero-classic-inner { max-width: 780px; margin: 0 auto; }

.hero-classic h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--navy-900);
}

/* Animated 3D hero */
.hero-animated {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--blue-700) 100%);
  color: var(--white);
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

.hero-animated-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-animated-main {
  text-align: center;
}

.hero-animated h1 {
  color: var(--white);
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero-lead--light {
  color: var(--white);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.hero-call--light {
  color: var(--white);
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 700;
}

.hero-call--light:hover {
  color: var(--cyan-100);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-checklist {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  text-align: left;
  font-size: 0.9375rem;
}

.hero-checklist li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.hero-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

@media (min-width: 900px) {
  .hero-animated { padding: 3rem 0 5rem; }
  .hero-animated-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
  .hero-animated-main { text-align: left; }
  .hero-badges { justify-content: flex-start; }
  .hero-lead--light { margin-left: 0; }
}

/* 3D spinning + jumping logo */
.logo-3d-scene {
  perspective: 900px;
  perspective-origin: 50% 50%;
  width: min(100%, 280px);
  height: 280px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hero-animated-main .logo-3d-scene {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero-animated-main .logo-3d-scene {
    margin-left: 0;
    margin-right: auto;
  }
}

.logo-3d-wrap {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: logo-jump 3.2s ease-in-out infinite;
  will-change: transform;
}

.logo-3d-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  animation: logo-spin-3d 7s linear infinite;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  will-change: transform;
}

.logo-3d-shadow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 55%;
  height: 18px;
  margin-left: -27.5%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
  animation: logo-shadow-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logo-spin-3d {
  0%   { transform: rotateY(0deg) rotateX(12deg); }
  100% { transform: rotateY(360deg) rotateX(12deg); }
}

@keyframes logo-jump {
  0%, 100% { transform: translateY(0) scale(1); }
  35%      { transform: translateY(-42px) scale(1.04); }
  55%      { transform: translateY(-42px) scale(1.04); }
  75%      { transform: translateY(-8px) scale(0.98); }
}

@keyframes logo-shadow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  35%, 55% { transform: scale(0.55); opacity: 0.2; }
  75%      { transform: scale(0.85); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-3d-wrap,
  .logo-3d-img,
  .logo-3d-shadow {
    animation: none;
  }
  .logo-3d-img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  }
}

.hero-animated-main .hero-lead.hero-lead--light {
  color: var(--white);
}

.hero-animated-main .hero-call.hero-call--light {
  color: var(--white);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.hero-call {
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--blue-700);
  font-family: "Source Sans 3", sans-serif;
}

.hero-call:hover { color: var(--cyan-500); }

/* Feature bar — like original Jersey Strong site */
.feature-bar {
  background: linear-gradient(90deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  padding: 1rem 0;
}

.feature-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  text-align: center;
}

.feature-item {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem;
}

.feature-item::before {
  content: "• ";
  color: var(--cyan-400);
}

@media (min-width: 768px) {
  .feature-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .feature-item { font-size: 0.875rem; }
}

/* Content sections — Blue Sky style */
.content-section {
  padding: 3.5rem 0;
}

.content-section--alt {
  background: var(--gray-100);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-rule {
  width: 80px;
  border: none;
  border-top: 3px solid var(--cyan-500);
  margin: 0 auto 2rem;
}

.section-subtitle {
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.prose {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--gray-700);
}

.prose p:last-child { margin-bottom: 0; }

.three-col,
.two-col {
  display: grid;
  gap: 2rem;
}

.info-block h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.info-block p {
  color: var(--gray-700);
  font-size: 1rem;
  margin: 0;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .three-col { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: repeat(2, 1fr); }
}

/* Certifications — white background, stacked badges */
.certifications-stack {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.cert-stack-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.cert-stack-item {
  text-align: center;
  max-width: 400px;
}

.cert-stack-img-wrap {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  display: inline-block;
}

.cert-stack-item img {
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto;
  display: block;
}

.cert-stack-item p {
  color: var(--gray-900);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.55;
}

/* Testimonials — simple stacked */
.testimonials-classic {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.review {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.75rem;
  margin: 0;
}

.content-section--alt .review {
  background: var(--white);
}

.review-stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.review footer {
  font-weight: 700;
  color: var(--navy-900);
  font-style: normal;
  font-size: 0.9375rem;
}

/* Contact on homepage — like Blue Sky */
.contact-home {
  display: grid;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(11, 35, 71, 0.06);
}

.contact-details h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  color: var(--navy-900);
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.contact-details-list li p { margin: 0; }

.contact-details-list strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.contact-phone-big {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.contact-phone-big a { color: var(--blue-700); }

.contact-phone-big a:hover { color: var(--cyan-500); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(11, 35, 71, 0.06);
}

.content-section--alt + .content-section .contact-form,
.content-section .contact-form {
  box-shadow: 0 2px 12px rgba(11, 35, 71, 0.06);
}

.contact-form h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-group input {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
}

@media (min-width: 768px) {
  .contact-home {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .contact-details { text-align: left; }
  .contact-form h3 { text-align: left; }
}

/* Towns section */
.towns-grid {
  display: grid;
  gap: 1.5rem;
}

.town-county {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.25rem 1.5rem;
}

.content-section--alt .town-county {
  background: var(--white);
}

.town-county h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}

.town-county p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.65;
}

.towns-collapsed { display: none; }
.towns-collapsed.towns-visible { display: block; }

@media (min-width: 640px) {
  .towns-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .towns-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

.btn-primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.btn-outline:hover {
  background: var(--blue-700);
  color: var(--white);
}

.btn-block { width: 100%; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-simple p { margin-bottom: 0.5rem; font-size: 0.9375rem; }

.footer-simple a { color: var(--cyan-400); }
.footer-simple a:hover { color: var(--white); }

.footer-logo { display: inline-block; margin-bottom: 1.25rem; }

.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }

/* ===== Inner pages (services, about, contact, service-areas) ===== */
.logo-3d-scene--page {
  width: min(100%, 200px);
  height: 200px;
  margin: 0 auto 1.25rem;
}

.page-hero .logo-3d-scene--page {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .logo-3d-scene--page {
    width: min(100%, 220px);
    height: 220px;
  }
}

.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--blue-700));
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.92; max-width: 600px; margin: 0 auto; }

.breadcrumb { font-size: 0.875rem; margin-bottom: 1rem; opacity: 0.85; }
.breadcrumb a { color: var(--cyan-100); }

section { padding: 3.5rem 0; }
section:nth-child(even) { background: var(--gray-100); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header p { color: var(--gray-700); }

.section-label {
  display: inline-block;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.cards-grid { display: grid; gap: 1.5rem; }

.card {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--cyan-100);
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 1rem;
}

.card h3 { font-family: "Source Sans 3", sans-serif; font-size: 1.125rem; }
.card p:last-child { margin: 0; color: var(--gray-700); }

@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-content ul { margin: 1rem 0 1.5rem 1.25rem; color: var(--gray-700); }

.split-image--pools {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pool-feature {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 37, 64, 0.16);
}

.pool-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pool-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pool-gallery--compact { margin-top: 0; }

.pool-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 37, 64, 0.1);
}

.pool-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pool-gallery__item--wide { grid-column: span 2; }

.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
}

.certifications {
  background: var(--white);
  color: var(--gray-900);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.certifications .section-header h2 {
  color: var(--navy-900);
}

.certifications .section-header p {
  color: var(--gray-700);
}

.cert-grid {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.cert-item { text-align: center; max-width: 280px; }
.cert-item img {
  width: 180px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  background: var(--white);
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}
.cert-item h3 {
  color: var(--navy-900);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
}

.cert-item p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0;
}

@media (min-width: 640px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonials-grid { display: grid; gap: 1.5rem; }

.testimonial {
  background: var(--white);
  padding: 1.75rem;
  border-left: 4px solid var(--cyan-500);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--cyan-500);
}

.testimonial-stars { color: var(--gold); margin-bottom: 0.75rem; }
.testimonial blockquote { font-style: italic; color: var(--gray-700); margin-bottom: 0.75rem; }
.testimonial cite { font-weight: 700; color: var(--navy-900); font-style: normal; }

@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { opacity: 0.9; max-width: 560px; margin: 0 auto 1.5rem; }

.btn-white { background: var(--white); color: var(--navy-900); }
.btn-white:hover { background: var(--cyan-100); color: var(--navy-900); }
.btn-lg { padding: 1rem 2rem; }

.contact-page {
  padding: 3.5rem 0 4.5rem;
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-info-card,
.contact-form--page {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 35, 71, 0.06);
}

.contact-info-card { padding: 2rem; }

.contact-info-header { margin-bottom: 1.75rem; }

.contact-info-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 0.75rem;
}

.contact-info-lead {
  color: var(--gray-700);
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid var(--gray-200);
}

.contact-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-list-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
}

.contact-list-body { min-width: 0; }

.contact-list-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-list-value {
  display: block;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.5;
}

a.contact-list-value {
  color: var(--blue-700);
  font-weight: 600;
}

a.contact-list-value:hover { color: var(--cyan-500); }

.contact-list-value--phone {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-call-btn {
  width: 100%;
  text-align: center;
}

.contact-form--page {
  padding: 2rem;
}

.contact-form--page h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  text-align: left;
  color: var(--navy-900);
}

.contact-form-note {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
}

.form-group input {
  border-radius: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.btn-block {
  display: block;
  width: 100%;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.95fr 1.05fr; gap: 2.5rem; }
  .contact-info-card,
  .contact-form--page { padding: 2.5rem; }
}

.county-grid { display: grid; gap: 1.25rem; }

.county-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200);
}

.county-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}

.county-card p { font-size: 0.875rem; color: var(--gray-700); margin: 0; }

@media (min-width: 640px) { .county-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .county-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-links h4 { color: var(--white); font-family: "Source Sans 3", sans-serif; margin-bottom: 0.75rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.logo-img--hero-sm {
  height: clamp(90px, 16vw, 130px);
  width: auto;
  margin: 0 auto 1rem;
}

.header-cta { display: none; align-items: center; gap: 0.75rem; }

@media (min-width: 900px) {
  .header-cta { display: flex; }
}

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  margin-bottom: 0.5rem;
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.125rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after { content: "+"; color: var(--blue-700); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 1.25rem 1.125rem; color: var(--gray-700); }
.faq-item.open .faq-answer { display: block; }

.nav-mobile .btn { margin-top: 0.75rem; width: 100%; }
