/*
Theme Name: Rank Rent Theme
Theme URI: https://github.com/yourrepo/rank-rent-theme
Description: A clean, fast, SEO-optimized theme for rank-and-rent local service websites.
Version: 1.0
Author: Your Name
*/
/* ============================================================
   SITE VARIABLES — swap this file per site, nothing else changes
   ============================================================ */

:root {
  /* Brand colors */
  --color-primary:       #1c2b3a;   /* nav, hero, cta banner bg */
  --color-primary-dark:  #111e2b;   /* footer, trust bar bg */
  --color-accent:        #c8773a;   /* buttons, links, highlights */
  --color-accent-dark:   #a85e28;   /* button hover, link hover */
  --color-accent-light:  #fdf0e8;   /* icon bg, pill bg */

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  /* Neutral palette */
  --color-text:         #1e1e1e;
  --color-text-light:   #555555;
  --color-text-muted:   #888888;
  --color-bg:           #ffffff;
  --color-bg-light:     #f7f7f7;
  --color-border:       #e8e8e8;
  --color-white:        #ffffff;

  /* Layout */
  --container-width:    1140px;
  --section-padding:    60px;
  --border-radius:      6px;
  --border-radius-lg:   10px;

  /* Site identity — update per site */
  --site-name:          "Granite State Junk";
  --site-phone:         "(603) 931-4298";
  --site-phone-raw:     "6039314298";
  --site-tagline:       "Southern NH Junk Removal";
}

/* ============================================================
   PER-SITE OVERRIDE EXAMPLES (copy to new variables.css)
   ============================================================

   Crawl Space Carolina:
   --color-primary:      #1a2535;
   --color-accent:       #2563eb;
   --color-accent-dark:  #1d4ed8;
   --color-accent-light: #eff6ff;

   Solid Foundation DFW:
   --color-primary:      #1c1c2e;
   --color-accent:       #d97706;
   --color-accent-dark:  #b45309;
   --color-accent-light: #fef3c7;

   Volunteer State Crawlspace:
   --color-primary:      #1e2a1e;
   --color-accent:       #0891b2;
   --color-accent-dark:  #0e7490;
   --color-accent-light: #e0f7fa;
   ============================================================ */
/* ============================================================
   RANK & RENT DESIGN SYSTEM — style.css
   Mobile-first. All colors via variables.css.
   Class naming: semantic, site-agnostic.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

ul { list-style: none; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-dark:hover { background: var(--color-primary-dark); color: var(--color-white); }

/* ── SECTION LABELS ───────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-brand img {
  height: 52px;
  width: auto;
  display: block;
  max-width: 260px;
}
.nav-brand span { color: var(--color-accent); }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-white); }

.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: " ▾"; font-size: 10px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-primary-dark);
  border-radius: var(--border-radius);
  padding: 8px 0;
  min-width: 180px;
  z-index: 100;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.nav-dropdown-menu a:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }

.nav-cta {
  display: none;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--color-accent-dark); color: var(--color-white); }

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  background: var(--color-primary-dark);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-mobile-menu a:hover { color: var(--color-white); }
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.site-hero {
  background: var(--color-primary);
  padding: 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.site-hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.site-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-primary-dark);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.trust-icon {
  color: var(--color-accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: var(--section-padding) 0; }
.section-light { background: var(--color-bg-light); }
.section-dark { background: var(--color-primary); }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.section-dark .section-header h2 { color: var(--color-white); }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius-lg);
  padding: 28px 24px;
  background: var(--color-bg);
  transition: border-color 0.2s;
}
.service-card:hover { border-left-color: var(--color-accent-dark); }

/* .service-card-img retained for service/location pages if needed */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.service-icon {
  display: none;
}

.service-card h3 {
  font-size: 19px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent-dark);
  text-decoration: none;
}
.service-link:hover { color: var(--color-accent); }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.step { text-align: center; }

.step-num {
  width: 54px;
  height: 54px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 19px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  color: var(--color-white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
.cta-phone:hover { color: var(--color-accent); }

.cta-sub {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 32px;
  display: block;
}

/* ── CONTENT BODY (location + service pages) ──────────────── */
.content-body { padding: var(--section-padding) 0; }

.content-body .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.content-main h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin: 40px 0 14px;
}
.content-main h2:first-child { margin-top: 0; }

.content-main h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin: 28px 0 10px;
}

.content-main p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-main ul {
  list-style: none;
  margin: 0 0 20px;
}

.content-main ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.content-main ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.content-main strong { color: var(--color-text); font-weight: 700; }

.content-main a { color: var(--color-accent-dark); }
.content-main a:hover { color: var(--color-accent); }

/* ── CONTENT SIDEBAR ──────────────────────────────────────── */
.content-sidebar {}

.sidebar-cta-box {
  background: var(--color-primary);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta-box h3 {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 10px;
}
.sidebar-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 20px;
}
.sidebar-phone {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.sidebar-info-box {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-info-box h4 {
  font-size: 15px;
  color: var(--color-primary);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.sidebar-info-box ul { list-style: none; }
.sidebar-info-box ul li {
  font-size: 14px;
  color: var(--color-text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-info-box ul li:last-child { border-bottom: none; }

/* ── PRICE TABLE ──────────────────────────────────────────── */
.price-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--color-bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-accent);
}

.price-label {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 400;
}

.price-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* ── INLINE CTA (mid-page) ────────────────────────────────── */
.inline-cta {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 24px 28px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.inline-cta p {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
}

/* ── LOCATION PILLS ───────────────────────────────────────── */
.location-pills {
  margin: 40px 0;
}
.location-pills h3 {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.2s;
}
.pill:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

/* ── CONTENT IMAGE ────────────────────────────────────────── */
.content-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  margin: 32px 0;
  object-fit: cover;
  height: 280px;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-trust-list {
  list-style: none;
  margin: 28px 0;
}
.about-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.about-trust-list li:last-child { border-bottom: none; }
.about-trust-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { padding: var(--section-padding) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--color-accent); }

.form-group textarea { height: 130px; resize: vertical; }

.contact-info h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-phone-big {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
  text-decoration: none;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary-dark);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--color-accent); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-phone-pill {
  display: inline-block;
  background: rgba(90,173,90,0.15);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin: 24px 0; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.faq-answer {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin: 0;
}

/* ── CONTENT BODY VISUAL BREAKS ───────────────────────────── */
.content-main h2 {
  font-size: 26px;
  color: var(--color-primary);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}
.content-main h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-main h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin: 28px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--color-accent);
}

/* ── SERVICE AREAS PAGE ───────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.area-card:hover { border-color: var(--color-accent); }

.area-card h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 6px;
  border: none;
  padding: 0;
}

.area-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

.area-card-arrow {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

@media (min-width: 640px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── RESPONSIVE — tablet (640px+) ────────────────────────── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .price-table { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — desktop (900px+) ───────────────────────── */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-hamburger { display: none; }

  .site-hero { padding: 44px 0; }
  .site-hero h1 { font-size: 56px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .content-body .container { grid-template-columns: 1fr 340px; }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .section-header h2 { font-size: 40px; }
}

/* ── RESPONSIVE — large (1100px+) ────────────────────────── */
@media (min-width: 1100px) {
  .site-hero h1 { font-size: 62px; }
}
