/* =========================================================
   AirWater Environmental — Multi-Page Build v2.7
   Logo-derived palette: teal, orange, green, blue, navy
   ========================================================= */

:root {
  /* DARKS */
  --navy:        #0e2a3a;   /* primary dark — nav, footer, dark sections */
  --navy-mid:    #14384d;   /* slightly lighter — anchor strip, hover states */
  --navy-rgb:    14, 42, 58;
  --primary-dark: var(--navy);
  --primary-dark-rgb: var(--navy-rgb);

  /* PRIMARY ACCENT — logo teal */
  --blue:        #0fa3b5;   /* primary brand accent — buttons, links, CTAs */
  --blue-dark:   #0a8392;   /* hover */

  /* SECONDARY ACCENT — logo orange */
  --tan:         #f29020;   /* gold/orange accent — review stars, eyebrows, financing */
  --tan-light:   #fbb663;   /* lighter accent — eyebrows on dark bg */
  --accent:      var(--tan);

  /* TERTIARY ACCENT — logo green */
  --green:       #6fb224;
  --green-dark:  #5a9320;

  /* NEUTRALS */
  --cream:       #f5f3ee;   /* warm neutral — alternating section bg */
  --section-alt: var(--cream);
  --border:      #ddd6cc;
  --white:       #ffffff;

  /* TEXT */
  --text:        #1a1e25;
  --muted:       #5a6070;

  /* TYPE */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-serif:   "Lora", Georgia, serif;
  --font-ui:      "Source Sans 3", system-ui, -apple-system, sans-serif;

  /* SHADOWS */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  padding-bottom: 64px; /* room for mobile sticky bar */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 16px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: 0.8px; }
p { margin: 0 0 16px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   1. TOP BAR — Auto-scrolling credibility ticker (v2.7 Rule 6)
   ========================================================= */
.top-bar {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tb-ticker {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.tb-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: tb-scroll 45s linear infinite;
  will-change: transform;
}
.tb-track:hover { animation-play-state: paused; }
.tb-item {
  padding: 0 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.95);
}
.tb-item strong { color: var(--tan-light); font-weight: 600; }
.tb-sep { color: var(--blue); opacity: 0.75; }
@keyframes tb-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tb-track { animation: none; transform: translateX(0); }
}
@media (max-width: 600px) {
  .top-bar { font-size: 11px; height: 34px; }
  .tb-item { padding: 0 10px; font-size: 10px; }
}

/* =========================================================
   2. NAV — Sticky navbar with logo
   ========================================================= */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; }
.nav-logo-text {
  display: flex; flex-direction: column;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-logo-text .brand .accent { color: var(--blue); }
.nav-logo-text .sub {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--tan);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 4px;
  font-size: 10px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.5px;
  border-radius: 0;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--blue); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  background: var(--tan);
  color: #fff !important;
  border-radius: 4px;
  border: 2px solid var(--tan);
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: #e07d10; transform: translateY(-1px); }

.nav-phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
.nav-phone .ph-icon { color: var(--blue); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}
.nav-mobile {
  display: none;
  background: #fff;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile .sub-link { padding-left: 16px; font-size: 13px; opacity: 0.85; }
.nav-mobile-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--tan);
  color: #fff !important;
  padding: 14px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* =========================================================
   3. BUTTONS
   ========================================================= */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary { background: var(--tan); color: #fff !important; }
.btn-primary:hover { background: #e07d10; transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff !important; }
.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff !important; }

.btn-blue {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

/* =========================================================
   4. HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(var(--navy-rgb), 0.94) 0%,
    rgba(var(--navy-rgb), 0.88) 35%,
    rgba(var(--navy-rgb), 0.55) 62%,
    rgba(var(--navy-rgb), 0.15) 90%,
    rgba(var(--navy-rgb), 0)    100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 72px 32px 72px 64px;
  color: #fff;
  margin: 0 auto 0 0;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(111,178,36,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111,178,36,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(111,178,36,0.1); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero h1 em { color: var(--tan); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 560px;
  font-family: var(--font-serif);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 28px;
}
.tbadge {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}
.tbadge span::before { content: "✓"; color: var(--green); font-weight: 700; margin-right: 6px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero { min-height: 540px; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(var(--navy-rgb), 0.94) 0%,
      rgba(var(--navy-rgb), 0.86) 55%,
      rgba(var(--navy-rgb), 0.45) 100%
    );
  }
  .hero-content { max-width: 100%; padding: 44px 22px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { font-size: 12px; padding: 12px 20px; }
}

/* =========================================================
   5. LEAD CAPTURE (below hero)
   ========================================================= */
.lead-capture {
  background: var(--cream);
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}
.lc-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.lc-kicker {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.lc-title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  margin: 12px 0 18px;
  color: var(--navy);
  text-transform: uppercase;
}
.lc-sub {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 55ch;
  font-family: var(--font-serif);
}
.lc-bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.lc-bullets li {
  font-size: 1rem;
  line-height: 1.5;
  margin: 12px 0;
  padding-left: 38px;
  position: relative;
  font-family: var(--font-ui);
  color: var(--text);
}
.lc-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.lc-direct {
  margin-top: 32px;
  background: var(--navy);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 4px;
  color: #fff;
}
.lc-direct-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.lc-direct-text { flex: 1; }
.lc-direct-label {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.lc-direct-phone {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.lc-direct-phone:hover { color: var(--tan-light); }

@media (max-width: 900px) {
  .lc-grid { grid-template-columns: 1fr; gap: 36px; }
  .lc-form-wrap { order: 2; }
  .lc-copy { order: 1; }
  .lead-capture { padding: 52px 22px; }
  .lc-direct-phone { font-size: 22px; }
}

/* =========================================================
   6. FORM — v6 wizard
   ========================================================= */
.lead-form {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(14,42,58,0.12);
  font-family: var(--font-ui);
}
.form-progress { margin-bottom: 22px; }
.form-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-progress-hint { color: var(--muted); }
.form-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: var(--blue);
  width: 50%;
  transition: width 0.3s;
}
.lead-form label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  display: block;
  width: 100%;
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  margin-top: 6px;
  background: #fff;
  color: var(--text);
  transition: border 0.15s, box-shadow 0.15s;
  letter-spacing: normal;
  text-transform: none;
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,163,181,0.15);
}
.lead-form textarea { resize: vertical; min-height: 80px; }
.next-btn, .submit-btn, .back-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
  transition: all 0.15s;
}
.next-btn, .submit-btn {
  background: var(--tan);
  color: #fff;
  width: 100%;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.next-btn:hover, .submit-btn:hover { background: #e07d10; }
.back-btn {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.back-btn:hover { border-color: var(--navy); color: var(--navy); }
.form-step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.form-step-actions .back-btn { flex: 0 0 auto; padding: 14px 20px; }
.form-step-actions .submit-btn { flex: 1; }
.hc-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-ui);
}
.hc-error {
  background: #fff3f3;
  border: 1px solid #e7b6b6;
  color: #9b2424;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 12px;
  font-family: var(--font-ui);
}

/* Honeypot */
._gotcha {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Wizard */
.form-step[hidden] { display: none; }
.form-step { display: block; }

/* Submit button loading state */
.submit-btn .btn-label-sending { display: none; align-items: center; gap: 10px; }
.submit-btn .btn-label-idle    { display: inline-flex; align-items: center; gap: 10px; }
.lead-form.is-sending .submit-btn { cursor: progress; opacity: 0.85; pointer-events: none; }
.lead-form.is-sending .submit-btn .btn-label-idle    { display: none; }
.lead-form.is-sending .submit-btn .btn-label-sending { display: inline-flex; }
.lead-form.is-sending .back-btn { pointer-events: none; opacity: 0.4; }

.btn-spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  animation: btn-spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn-spinner { animation: none; border-top-color: rgba(255,255,255,0.4); }
}

/* =========================================================
   7. PROOF BAR
   ========================================================= */
.proof-bar {
  background: var(--navy);
  color: #fff;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}
.ps-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
}
.ps-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}
.pdiv {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}
.pq {
  max-width: 360px;
  text-align: center;
}
.pq-stars { color: var(--tan); font-size: 16px; letter-spacing: 2px; }
.pq-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  margin: 6px 0;
}
.pq-name {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
  .proof-bar { gap: 18px; padding: 24px 18px; }
  .pdiv { display: none; }
  .pq { display: none; }
}

/* =========================================================
   8. SECTIONS
   ========================================================= */
.section { padding: 80px 24px; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sk {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.sk-lite { color: var(--tan-light); }
.st {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--navy);
  text-transform: uppercase;
}
.st-w { color: #fff; }
.ss {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
}
.section-navy .ss { color: rgba(255,255,255,0.85); }

/* =========================================================
   9. SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.svc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--navy);
}
.svc-card p {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.svc-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
}
.svc-link:hover { color: var(--tan); }
.svc-link::after { content: "→"; transition: transform 0.15s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   10. ABOUT / OWNER BLOCK
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.about-image::before {
  content: "";
  position: absolute;
  left: -20px; top: -20px;
  width: 100%; height: 100%;
  border: 3px solid var(--blue);
  border-radius: 8px;
  z-index: -1;
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
  padding: 24px;
  background: var(--cream);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
}
.as-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.as-label {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.owner-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.owner-sig-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.owner-sig-title {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image::before { display: none; }
  .about-image img { min-height: 360px; }
}

/* =========================================================
   11. WHY US / 6-CARD GRID
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover {
  background: rgba(15,163,181,0.08);
  border-color: var(--blue);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.why-card p {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-serif);
  font-size: 0.97rem;
  line-height: 1.55;
  margin: 0;
}

/* Process steps */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 60px auto 0;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  top: 32px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--tan) 20%, var(--tan) 80%, transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--tan);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  border: 4px solid var(--navy);
}
.process-step h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.process-step p {
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
}

/* =========================================================
   12. GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-grid .g-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item.wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .g-item.tall { grid-row: span 1; }
  .gallery-grid .g-item.wide { grid-column: span 2; }
}

/* =========================================================
   13. REVIEWS
   ========================================================= */
.reviews-summary {
  text-align: center;
  margin-bottom: 36px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-summary strong { color: var(--tan); font-size: 18px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--tan);
  opacity: 0.18;
  line-height: 1;
}
.review-stars { color: var(--tan); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 18px;
}
.review-meta {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.review-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.review-loc {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.review-google {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 6px;
}
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}
.reviews-cta a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.reviews-cta a::after { content: " →"; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   14. FAQ
   ========================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.35;
}
.faq-q::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.65;
  font-size: 0.97rem;
}
.faq-a strong { color: var(--navy); }
.faq-item.open .faq-a { display: block; }

@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   15. SERVICE AREA
   ========================================================= */
.area-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}
.area-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.area-col h4 {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 14px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.area-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 8px;
}
.area-col li {
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 4px 0;
  color: var(--text);
  break-inside: avoid;
}
@media (max-width: 768px) {
  .area-columns { grid-template-columns: 1fr; gap: 20px; }
  .area-col ul { columns: 2; }
}

/* =========================================================
   16. GBP MAP
   ========================================================= */
.gbp-map {
  width: 100%;
}
.gbp-map-frame {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.gbp-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
@media (max-width: 768px) {
  .gbp-map-frame { height: 300px; }
}

/* =========================================================
   17. CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--blue);
  color: #fff;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 50%, rgba(255,255,255,0.06) 50%);
  pointer-events: none;
}
.cta-content { max-width: 600px; position: relative; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-content p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.cta-actions .btn-primary { background: var(--tan); }
.cta-actions .btn-primary:hover { background: #e07d10; }

@media (max-width: 800px) {
  .cta-banner { padding: 44px 22px; flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* =========================================================
   18. FOOTER
   ========================================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 24px 24px;
  font-family: var(--font-ui);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.f-brand .f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.f-brand .f-logo img { width: 44px; height: 44px; }
.f-brand .f-brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.f-brand p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.f-nap { margin-top: 18px; }
.f-nap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.f-nap-item .ic { color: var(--tan); flex-shrink: 0; margin-top: 2px; }
.f-nap-item a { color: rgba(255,255,255,0.92); }
.f-nap-item a:hover { color: var(--tan-light); }

.f-col h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tan);
  display: inline-block;
}
.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f-col li { margin-bottom: 10px; font-size: 14px; }
.f-col a { color: rgba(255,255,255,0.78); transition: color 0.15s; }
.f-col a:hover { color: var(--tan-light); padding-left: 4px; }

.f-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.f-bottom a { color: rgba(255,255,255,0.65); }
.f-bottom a:hover { color: var(--tan-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 44px 22px 22px; }
}

/* =========================================================
   19. MOBILE STICKY BAR
   ========================================================= */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  background: var(--navy);
  border-top: 1px solid rgba(242,144,32,0.45);
  padding: 8px 12px;
}
.ms-phone {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 6px 8px;
}
.ms-phone .ms-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ms-phone .ms-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.ms-cta {
  background: var(--tan);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.ms-cta:hover { background: #e07d10; color: #fff !important; }

@media (min-width: 901px) {
  .mobile-sticky { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================
   20. PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  background: var(--navy);
  background-image: linear-gradient(135deg, rgba(15,163,181,0.15) 0%, transparent 60%), url('/images/texture-outdoor.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,58,0.85) 0%, rgba(14,42,58,0.95) 100%);
}
.page-header > * { position: relative; z-index: 1; }
.ph-kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 14px;
}
.ph-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.ph-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.breadcrumbs {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--tan-light); }
.breadcrumbs span { color: var(--tan); }
.breadcrumbs strong { color: var(--tan-light); font-weight: 500; }

/* =========================================================
   21. INLINE FORM SECTION (inner pages)
   ========================================================= */
.inline-form-section {
  background: var(--cream);
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inline-form-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
}
.inline-form-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 12px 0 16px;
}
.inline-form-copy .lc-kicker { margin-bottom: 0; }
.inline-form-copy p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .inline-form-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   22. CONTENT PROSE (for service detail pages)
   ========================================================= */
.prose-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.prose h2 { margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
.prose ul {
  font-family: var(--font-serif);
  padding-left: 24px;
  margin-bottom: 18px;
}
.prose ul li {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 8px;
  color: var(--text);
}
.prose img {
  border-radius: 8px;
  margin: 24px 0;
}
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.prose-aside {
  position: sticky;
  top: 90px;
}
.aside-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  margin-bottom: 20px;
}
.aside-card h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tan);
}
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card ul li { margin-bottom: 8px; font-family: var(--font-ui); font-size: 14px; }
.aside-card ul li a { color: var(--navy); }
.aside-card ul li a:hover { color: var(--blue); }
.aside-card .check-list li { padding-left: 22px; position: relative; font-family: var(--font-ui); }
.aside-card .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 900px) {
  .prose-grid { grid-template-columns: 1fr; gap: 36px; }
  .prose-aside { position: static; }
}

/* =========================================================
   23. CRED STRIP (about page)
   ========================================================= */
.cred-strip {
  background: var(--cream);
  padding: 56px 24px;
}
.cred-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-item {
  background: #fff;
  padding: 26px 22px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border);
}
.cred-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cred-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--navy);
}
.cred-item p {
  font-family: var(--font-serif);
  font-size: 0.93rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   24. CONTACT QUICK ROW
   ========================================================= */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--cream);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.contact-card .contact-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.contact-card a { color: var(--navy); }
.contact-card a:hover { color: var(--blue); }
.contact-card .contact-sub { font-family: var(--font-ui); font-size: 13px; color: var(--muted); margin-top: 4px; }

@media (max-width: 800px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* =========================================================
   25. SKIP TO CONTENT
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 9999;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* =========================================================
   26. UTIL
   ========================================================= */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
