/* =================================================================
   Dixieland Tree Service — Global Stylesheet
   Mobile-first, performance-optimized, minimal specificity
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --green-900: #1b3a1e;
  --green-700: #2d5a31;
  --green-600: #3b7340;
  --green-500: #4a8c52;
  --green-100: #e6f0e5;
  --accent: #f5a623;
  --accent-dark: #c97f11;
  --red: #c0392b;
  --ink-900: #14261a;
  --ink-700: #2d3a34;
  --ink-500: #5c6b63;
  --ink-300: #9aa8a0;
  --paper: #fafaf7;
  --white: #ffffff;
  --border: #dce2dd;
  --shadow-sm: 0 1px 2px rgba(20, 38, 26, 0.05);
  --shadow-md: 0 4px 14px rgba(20, 38, 26, 0.08);
  --shadow-lg: 0 10px 30px rgba(20, 38, 26, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --maxw: 1200px;
  --maxw-narrow: 820px;
  --nav-h: 72px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--green-700);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  margin: 0 0 1em;
}
ul,
ol {
  padding-left: 1.25em;
}
li {
  margin-bottom: 0.4em;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 56px 0;
}
.section-sm {
  padding: 32px 0;
}
.section-alt {
  background: var(--paper);
}
.section-dark {
  background: var(--green-900);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75em;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--accent);
  color: var(--ink-900);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}
.btn-secondary {
  background: var(--green-700);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-900);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-700);
  color: var(--white);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 1.1rem;
}
.btn-block {
  display: block;
  width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-900);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
}
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 2px;
  position: relative;
}
.nav-links a:hover {
  color: var(--green-700);
  text-decoration: none;
}
.nav-cta {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: none;
  font-weight: 700;
  color: var(--green-900);
  font-size: 1rem;
}
.nav-phone::before {
  content: "\260E";
  margin-right: 6px;
  color: var(--green-600);
}
.nav-toggle {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

/* Dropdown menu */
.nav-has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  list-style: none;
  margin: 0;
  z-index: 10;
}
.nav-has-dropdown:hover .dropdown,
.nav-has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.dropdown li {
  margin: 0;
}
.dropdown a {
  display: block;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-900);
}
.dropdown a:hover {
  background: var(--green-100);
  color: var(--green-900);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu > ul > li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu > ul > li:last-child {
  border-bottom: 0;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--ink-900);
  font-weight: 600;
}
.mobile-menu .sub {
  padding-left: 16px;
  padding-bottom: 8px;
}
.mobile-menu .sub a {
  padding: 8px 0;
  font-weight: 400;
  font-size: 0.95rem;
}
.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-cta-row .btn {
  flex: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.hero-media {
  min-width: 0;
}
.hero-video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
}
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero h1 {
  color: var(--white);
  max-width: 780px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
  }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: #ffd58c;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-badge::before {
  content: "\26A1";
}

/* Hero variant for inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 56px 0;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  font-size: 1.1rem;
  margin: 0;
}
.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.breadcrumbs span[aria-current] {
  color: var(--white);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
}
.trust-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item-icon {
  font-size: 1.4rem;
  color: var(--green-700);
}
.trust-item strong {
  color: var(--green-900);
  font-size: 0.95rem;
}

/* ---------- Cards & Grids ---------- */
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.card h3 {
  margin-bottom: 8px;
  color: var(--ink-900);
}
.card p {
  color: var(--ink-500);
  font-size: 0.97rem;
  flex: 1;
}
.card a.card-link {
  font-weight: 700;
  margin-top: 10px;
  color: var(--green-700);
}
.card a.card-link::after {
  content: " \2192";
}

/* ---------- Service / location lists ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-grid a {
  display: block;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink-900);
  font-weight: 600;
}
.link-grid a:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  text-decoration: none;
  background: var(--green-100);
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 22px 72px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--ink-500);
}
a.step-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
a.step-link:hover,
a.step-link:focus-visible {
  border-color: var(--green-700);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  text-decoration: none;
}
a.step-link h3 {
  color: var(--green-700);
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 1.05rem;
  color: var(--ink-700);
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}
.gallery-item span {
  position: relative;
  z-index: 1;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.ba-item {
  margin: 0;
}
.ba-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  background: #000;
}
.ba-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.video-card {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.video-frame {
  position: relative;
  padding-top: 177.78%;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 44px;
  color: var(--ink-900);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-700);
  font-weight: 700;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq .faq-body {
  padding: 0 20px 18px;
  color: var(--ink-700);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink-900);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(74, 140, 82, 0.2);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-top: 8px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-900);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.cta-band-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #12231b;
  color: #c3d2c6;
  padding: 56px 0 20px;
  font-size: 0.95rem;
}
.site-footer a {
  color: #c3d2c6;
}
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-brand p {
  color: #9bb2a1;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid #2a3d2f;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9bb2a1;
}
.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Emergency callout ---------- */
.emergency-strip {
  background: #000000;
  color: var(--accent);
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.emergency-strip a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- Content pages ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 1.6em;
}
.prose h3 {
  margin-top: 1.4em;
}
.prose ul li::marker {
  color: var(--green-600);
}
.callout {
  background: var(--green-100);
  border-left: 4px solid var(--green-700);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.callout h4 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--green-900);
}
.callout p {
  margin: 0;
  color: var(--ink-700);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  color: var(--green-700);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-phone {
    display: inline-block;
  }
  .nav-toggle {
    display: none;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .two-col {
    grid-template-columns: 2fr 1fr;
  }
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero {
    padding: 96px 0 112px;
  }
}
@media (min-width: 1024px) {
  .link-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .mobile-menu,
  .emergency-strip {
    display: none;
  }
}
