/* ===================================================
   FREEDOM PLUMBING LLC v2 — styles.css
   Mobile-first · System fonts · No dependencies
   =================================================== */

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

/* === DESIGN TOKENS === */
:root {
  --navy-950: #071a34;
  --navy-900: #0d2b57;
  --navy-800: #123c78;
  --navy-700: #1a4d99;
  --red-700:  #c41e2e;
  --red-600:  #df2d3f;
  --white:    #ffffff;
  --cream:    #f5f7fb;
  --mist:     #e6edf6;
  --slate-900: #1c2840;
  --slate-700: #43536c;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(7,26,52,.08), 0 1px 2px rgba(7,26,52,.06);
  --shadow-md: 0 4px 16px rgba(7,26,52,.1);
  --shadow-lg: 0 8px 32px rgba(7,26,52,.12);
  --shadow-xl: 0 20px 48px rgba(7,26,52,.16);

  --ease: cubic-bezier(.4,0,.2,1);
}

/* === BASE === */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px; /* space for mobile CTA bar */
  overflow-x: hidden;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--navy-950); color: var(--white);
  padding: .75rem 1.5rem; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* === ANNOUNCEMENT BAR === */
.announcement {
  background: var(--navy-950);
  padding: .4rem 1rem;
  text-align: center;
}
.announcement-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .75rem;
  font-size: .75rem; color: rgba(255,255,255,.8);
  max-width: 1200px; margin: 0 auto;
}
.announcement-inner strong { color: var(--white); }
.announcement-inner a {
  color: var(--white); font-weight: 700;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.4);
  text-underline-offset: 2px;
}
.ann-sep { opacity: .35; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.header-logo img { height: 5rem; width: auto; }

.header-nav { display: none; align-items: center; gap: .25rem; }
.header-nav a {
  font-size: .875rem; font-weight: 500; color: var(--slate-700);
  padding: .375rem .75rem; border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--navy-900); background: var(--cream);
}

.header-actions { display: flex; align-items: center; gap: .75rem; }

.btn-call-header {
  display: none; align-items: center; gap: .5rem;
  background: var(--red-700); color: var(--white);
  padding: .5rem 1.25rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700; letter-spacing: .01em;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.btn-call-header:hover { background: var(--red-600); transform: translateY(-1px); }
.btn-call-header svg { width: 14px; height: 14px; flex-shrink: 0; }

/* === HAMBURGER === */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: .5rem; border-radius: var(--radius-sm);
  transition: background .15s;
}
.hamburger:hover { background: var(--cream); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-900); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE NAV DRAWER === */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(7,26,52,.55); z-index: 190;
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--white); z-index: 200;
  padding: 4.5rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; background: var(--cream);
  border: none; border-radius: var(--radius-full); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--slate-900); line-height: 1;
}

.mobile-nav-logo { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 2px solid var(--mist); }
.mobile-nav-logo img { height: 5rem; width: auto; }

.mobile-nav a {
  display: block; font-size: 1.0625rem; font-weight: 600;
  color: var(--slate-900); padding: .875rem 1rem;
  border-radius: var(--radius-md); border-bottom: 1px solid var(--mist);
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--cream); color: var(--navy-900); }

.mobile-nav-call {
  margin-top: 1rem; display: flex; align-items: center;
  justify-content: center; gap: .5rem;
  background: var(--red-700) !important; color: var(--white) !important;
  padding: 1rem !important; border-radius: var(--radius-full) !important;
  font-size: 1rem !important; font-weight: 700 !important;
  border-bottom: none !important; text-align: center;
}
.mobile-nav-call:hover { background: var(--red-600) !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-full);
  font-family: var(--font); font-size: 1rem; font-weight: 700; line-height: 1;
  cursor: pointer; border: 2px solid transparent; transition: all .2s var(--ease);
  text-align: center; white-space: nowrap; text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--red-700); color: var(--white); border-color: var(--red-700);
  box-shadow: 0 4px 16px rgba(196,30,46,.28);
}
.btn-primary:hover {
  background: var(--red-600); border-color: var(--red-600);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,46,.38);
}

.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-900); color: var(--white); border-color: var(--navy-900);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn-lg { padding: .875rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* === SECTIONS === */
.section    { padding: 4rem 0; }
.section-lg { padding: 5rem 0; }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); }

/* === TYPOGRAPHY HELPERS === */
.eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red-700);
  margin-bottom: .75rem;
}
.eyebrow-light { color: rgba(255,255,255,.65); }

h1 { font-size: clamp(1.875rem, 5vw, 3rem);   font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
h2 { font-size: clamp(1.375rem, 3.5vw, 2.125rem); font-weight: 700; line-height: 1.2;  letter-spacing: -.015em; }
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.35; }
p  { line-height: 1.7; }

.lead { font-size: 1.0625rem; line-height: 1.7; color: var(--slate-700); }

.section-header { margin-bottom: 2.5rem; }
.section-header h2 { color: var(--slate-900); margin-bottom: 1rem; }
.section-header p { color: var(--slate-700); font-size: 1.0625rem; max-width: 60ch; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 55%, #0f3568 100%);
  position: relative; overflow: hidden;
  padding: 4rem 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(18,60,120,.5) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(196,30,46,.12) 0%, transparent 45%);
}
/* subtle grid pattern */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,30,46,.18); border: 1px solid rgba(196,30,46,.35);
  color: rgba(255,255,255,.92); padding: .375rem 1rem;
  border-radius: var(--radius-full); font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--red-600);
  border-radius: var(--radius-full); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: .4; }
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-lead { color: rgba(255,255,255,.78); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
}
.hero-proof-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.68); font-size: .8125rem;
}
.hero-proof-item svg { color: rgba(255,255,255,.45); width: 14px; height: 14px; flex-shrink: 0; }

/* Hero side card */
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px); border-radius: var(--radius-xl); padding: 2rem;
}
.hero-card-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .75rem;
}
.hero-phone-link {
  display: block; color: var(--white);
  font-size: clamp(1.375rem, 4vw, 1.875rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .375rem;
  transition: opacity .15s;
}
.hero-phone-link:hover { opacity: .85; }
.hero-card-sub { font-size: .8125rem; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.hero-card-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--red-700); color: var(--white);
  padding: .875rem; border-radius: var(--radius-lg); font-weight: 700;
  font-size: .9375rem; transition: background .15s;
  margin-bottom: 1.25rem;
}
.hero-card-cta:hover { background: var(--red-600); }
.hero-card-cta svg { width: 18px; height: 18px; }

.hero-popular { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; }
.hero-popular-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: .75rem;
}
.popular-tags { display: flex; flex-wrap: wrap; gap: .375rem; }
.popular-tag {
  background: rgba(255,255,255,.09); color: rgba(255,255,255,.78);
  padding: .25rem .625rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 500;
}

/* ===================================================
   TRUST STRIP
   =================================================== */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--mist);
  padding: 1.75rem 0;
}
.trust-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.trust-item { display: flex; align-items: flex-start; gap: .875rem; }
.trust-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item-title { font-size: .875rem; font-weight: 700; color: var(--slate-900); margin-bottom: .125rem; }
.trust-item-desc  { font-size: .75rem; color: var(--slate-700); line-height: 1.5; }

/* ===================================================
   SERVICES GRID
   =================================================== */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.service-card:hover {
  border-color: var(--navy-800); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.service-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.service-icon svg { width: 24px; height: 24px; }
.service-body h3 { font-size: 1rem; color: var(--slate-900); margin-bottom: .375rem; }
.service-body p  { font-size: .875rem; color: var(--slate-700); line-height: 1.6; }

/* services page: link variant */
.service-card-link .service-icon { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.why-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.why-card:hover { border-color: var(--navy-800); box-shadow: var(--shadow-md); }
.why-num {
  font-size: 2rem; font-weight: 800; color: var(--mist);
  line-height: 1; margin-bottom: 1rem; user-select: none;
}
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--red-700), var(--red-600));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 1rem;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { color: var(--slate-900); margin-bottom: .5rem; }
.why-card p  { font-size: .9375rem; color: var(--slate-700); }

/* ===================================================
   SERVICE AREA
   =================================================== */
.city-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1.5rem;
}
.city-item {
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1rem; background: var(--white);
  border: 1.5px solid var(--mist); border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600; color: var(--slate-900);
  transition: border-color .15s, box-shadow .15s;
}
.city-item:hover { border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
.city-dot {
  width: 8px; height: 8px; background: var(--red-700);
  border-radius: var(--radius-full); flex-shrink: 0;
}
.city-item.primary-city {
  background: var(--navy-900); color: var(--white); border-color: var(--navy-900);
  font-weight: 700;
}
.city-item.primary-city .city-dot { background: rgba(255,255,255,.6); }
.city-item.primary-city:hover { border-color: var(--navy-800); }

/* ===================================================
   COVERAGE INFO CARDS
   =================================================== */
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
.coverage-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.coverage-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 1rem;
}
.coverage-card-icon svg { width: 22px; height: 22px; }
.coverage-card h3 { font-size: .9375rem; color: var(--slate-900); margin-bottom: .375rem; }
.coverage-card p  { font-size: .875rem; color: var(--slate-700); line-height: 1.6; }

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-900));
  padding: 4rem 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 25% 50%, rgba(18,60,120,.45) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 50ch; margin: 0 auto 2rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.contact-info-card {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-900));
  border-radius: var(--radius-xl); padding: 2rem; color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: .5rem; }
.contact-info-card .contact-intro { color: rgba(255,255,255,.65); font-size: .9375rem; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail  { display: flex; align-items: flex-start; gap: .875rem; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: .25rem;
}
.contact-detail-value { font-size: .9375rem; font-weight: 600; color: var(--white); overflow-wrap: break-word; word-break: break-word; }
.contact-detail-value a { color: var(--white); transition: opacity .15s; }
.contact-detail-value a:hover { opacity: .8; }

.contact-notes { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
.contact-note {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem; font-size: .875rem; color: rgba(255,255,255,.65);
}
.contact-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .125rem; color: rgba(255,255,255,.4); }

/* === FORM CARD === */
.form-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2rem;
}
.form-card h2 { color: var(--slate-900); margin-bottom: .375rem; }
.form-subtitle { font-size: .9rem; color: var(--slate-700); margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--slate-900); margin-bottom: .375rem;
}
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--slate-300); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 1rem; color: var(--slate-900);
  background: var(--white); transition: border-color .15s, box-shadow .15s; line-height: 1.5;
}
.form-control:focus {
  outline: none; border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(18,60,120,.12);
}
.form-control::placeholder { color: var(--slate-500); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0 1.25rem; }

.form-note { font-size: .8rem; color: var(--slate-500); margin-top: .875rem; line-height: 1.5; }
.form-note a { color: var(--navy-800); text-decoration: underline; text-underline-offset: 2px; }

.form-success {
  display: none; background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  color: #166534; font-weight: 600; font-size: .9rem; margin-top: 1rem;
}
.form-error {
  display: none; background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  color: #991b1b; font-weight: 600; font-size: .9rem; margin-top: 1rem;
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-900));
  padding: 3.5rem 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 60%, rgba(18,60,120,.4) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 58ch; line-height: 1.7; }

/* ===================================================
   WHAT TO EXPECT PAGE
   =================================================== */
.expect-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
.expect-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.expect-card:hover { border-color: var(--navy-800); box-shadow: var(--shadow-md); }
.expect-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.expect-icon svg { width: 22px; height: 22px; }
.expect-body h3 { font-size: 1rem; color: var(--slate-900); margin-bottom: .375rem; }
.expect-body p  { font-size: .875rem; color: var(--slate-700); line-height: 1.6; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.about-highlight {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-900));
  border-radius: var(--radius-xl); padding: 2rem; color: var(--white);
}
.about-highlight h2, .about-highlight h3 { color: var(--white); margin-bottom: .75rem; }
.about-highlight p { color: rgba(255,255,255,.72); font-size: .9375rem; line-height: 1.7; }

.vet-badge {
  display: inline-flex; align-items: center; gap: .625rem;
  background: rgba(196,30,46,.22); border: 1px solid rgba(196,30,46,.4);
  padding: .5rem 1.25rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 800; color: rgba(255,255,255,.92);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem;
  display: block; width: fit-content;
}

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white); border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.value-card:hover { border-color: var(--navy-800); box-shadow: var(--shadow-md); }
.value-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-700), var(--red-600));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.value-icon svg { width: 22px; height: 22px; }
.value-body h3 { font-size: 1rem; color: var(--slate-900); margin-bottom: .375rem; }
.value-body p  { font-size: .875rem; color: var(--slate-700); line-height: 1.6; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--navy-950); color: rgba(255,255,255,.65);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-logo {
  height: 5rem; width: auto; margin-bottom: 1rem;
}
.footer-brand-desc { font-size: .875rem; line-height: 1.7; max-width: 26ch; }
.footer-vet-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,30,46,.2); border: 1px solid rgba(196,30,46,.3);
  padding: .375rem .875rem; border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 800; color: rgba(255,255,255,.88);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 1rem; width: fit-content;
}

.footer-col-title {
  font-size: .75rem; font-weight: 800; color: var(--white);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-items { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .625rem; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: .1875rem; color: rgba(255,255,255,.4); }
.footer-contact-item span, .footer-contact-item a {
  font-size: .875rem; color: rgba(255,255,255,.65); transition: color .15s;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ===================================================
   MOBILE FLOATING CTA BAR
   =================================================== */
.mobile-cta-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--mist);
  box-shadow: 0 -4px 20px rgba(7,26,52,.1); gap: .75rem;
}
.mobile-cta-bar .btn { flex: 1; padding: .75rem .75rem; font-size: .9rem; }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms;  }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

/* ===================================================
   UTILITIES
   =================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.text-center { text-align: center; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-6  { margin-bottom: 1.5rem; }

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* Mobile: show Request Service form before contact info card */
@media (max-width: 767px) {
  .form-card        { order: 1; }
  .contact-info-card { order: 2; }
}

@media (min-width: 480px) {
  .trust-strip-inner  { grid-template-columns: repeat(2, 1fr); }
  .city-grid          { grid-template-columns: repeat(3, 1fr); }
  .form-row           { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid      { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero               { padding: 5rem 0; }
  .hero-grid          { grid-template-columns: 1fr 360px; gap: 3rem; }
  .header-nav         { display: flex; }
  .btn-call-header    { display: flex; }
  .hamburger          { display: none; }
  .mobile-cta-bar     { display: none; }
  .trust-strip-inner  { grid-template-columns: repeat(4, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: repeat(3, 1fr); }
  .expect-grid        { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-split        { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 5fr 7fr; align-items: start; }
  .footer-grid        { grid-template-columns: 5fr 2fr 2fr 3fr; }
  .area-primary-split { grid-template-columns: repeat(2, 1fr); }
  .page-hero          { padding: 4.5rem 0; }
  .section            { padding: 5rem 0; }
  .section-lg         { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .hero               { padding: 6rem 0; }
  .services-grid      { grid-template-columns: repeat(3, 1fr); }
  .service-card       { flex-direction: column; }
  .expect-grid        { grid-template-columns: repeat(3, 1fr); }
  .values-grid        { grid-template-columns: repeat(3, 1fr); }
}
