/* ============================================================
   PARRISH INSURANCE SERVICES — Design System
   Fonts: Lora (headings) + Montserrat (body)
   Palette: Coastal Navy, Gold, Sand, White, Charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122850;
  --navy-light: #2a5499;
  --gold:       #C8A45A;
  --gold-light: #dfc07e;
  --gold-dark:  #a8842e;
  --sand:       #F5F3EE;
  --sand-dark:  #e8e4db;
  --white:      #FFFFFF;
  --charcoal:   #2C2C2A;
  --gray-mid:   #6b6b68;
  --gray-light: #9a9a97;

  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  --max-w: 1160px;
  --nav-h: 80px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(27,58,107,0.08);
  --shadow-md: 0 6px 24px rgba(27,58,107,0.13);
  --shadow-lg: 0 16px 48px rgba(27,58,107,0.18);

  --transition: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Skip to content (ADA) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Typography Scale ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { font-size: clamp(0.92rem, 1.5vw, 1rem); color: var(--gray-mid); line-height: 1.8; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.75;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
}

/* heading accent — no underline rule */
.underline-gold {
  display: inline-block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,58,107,0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav__logo img {
  height: 52px;
  width: auto;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.nav__logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta { margin-left: 1rem; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  aria-label: "Toggle navigation";
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,0.95) 40%, rgba(18,40,80,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1, .page-hero .lead { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.8); }

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__body { padding: 1.75rem; }

/* Coverage icon card */
.coverage-card {
  background: var(--white);
  border: 1px solid rgba(27,58,107,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,164,90,0.3);
}
.coverage-card:hover::before { transform: scaleX(1); }

.coverage-icon {
  width: 60px;
  height: 60px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  transition: background var(--transition);
}
.coverage-card:hover .coverage-icon {
  background: rgba(200,164,90,0.15);
}

/* Team card */
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--sand);
  box-shadow: var(--shadow-md);
}
.team-card__name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-card__creds {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cred-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
}
.team-card__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.team-card__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: var(--navy);
}
.team-card__social a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Stat Strip ──────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── Carrier logos strip ─────────────────────────────────── */
.carriers-overflow {
  overflow: hidden;
  position: relative;
  height: 64px;
}
.carriers-overflow::before,
.carriers-overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.carriers-overflow::before {
  left: 0;
  background: linear-gradient(to right, var(--sand), transparent);
}
.carriers-overflow::after {
  right: 0;
  background: linear-gradient(to left, var(--sand), transparent);
}
.carriers-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  height: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.carriers-track img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  object-fit: contain;
}
.carriers-track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Forms ───────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid rgba(27,58,107,0.2);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,90,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.required-note {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success h3 { color: var(--navy); margin-bottom: 0.75rem; }

/* Checkboxes for coverage type */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
  align-items: flex-start;
}
.footer__contact-item span:first-child {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold); }
.footer__license {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 0.5rem 0 1rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav__links, .nav__cta {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(27,58,107,0.08);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open, .nav__cta.open {
    display: flex;
  }
  .nav__cta {
    margin-left: 0;
    padding: 0 1.5rem 1.5rem;
    top: auto;
    flex-direction: row;
  }
  .nav__toggle { display: flex; }

  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}

/* ── Home page specific ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18,40,80,0.88) 0%,
    rgba(27,58,107,0.72) 55%,
    rgba(27,58,107,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 5rem;
  max-width: 680px;
}
.hero__content .section-label { color: var(--gold); }
.hero__content h1 {
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
}
.hero__content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__content .lead { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.hero__contact a:hover { color: var(--gold); }
.hero__contact-icon { font-size: 1rem; }

/* Intro section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img { position: relative; }
.intro-img__photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.intro-img__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}
.why-points { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.why-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}
.why-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Coverage grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.coverage-grid a { text-decoration: none; color: inherit; }
.coverage-grid h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.coverage-grid p { font-size: 0.88rem; }
.coverage-card--cta {
  background: var(--navy);
}
.coverage-card--cta h3,
.coverage-card--cta p { color: var(--white); }
.coverage-card--cta .coverage-icon { background: rgba(255,255,255,0.1); }
.coverage-card--cta:hover { background: var(--navy-dark); }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Area grid */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Carrier text fallback */
.carrier-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-mid);
  opacity: 0.6;
  white-space: nowrap;
}

/* CTA banner */
.cta-banner { background: var(--sand); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .intro-grid, .area-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-img__badge { left: 1rem; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__btns { flex-direction: column; }
}
