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

:root {
  /* Color scheme sourced from the JD Air Solutions wireframe design system:
     accent (blue, cooling) / accent-2 (orange, heating) / accent-900 (deep navy-blue). */
  --navy: #12253f;
  --navy-mid: #1c3c6b;
  --navy-light: #2a5595;
  --blue: #3a72c2;
  --blue-light: #74adf5;
  --blue-pale: #eaf3ff;
  --orange: #d35f26;
  --orange-light: #f07a3d;
  --orange-pale: #fff1ea;
  --white: #FFFFFF;
  --frost: #f5f5f8;
  --slate: #a9c3e8;
  --text: #14213a;
  --text-soft: #4a5a76;
  --border: #d9e3f2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18,37,63,0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 84px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo { display: flex; align-items: center; }

/* Brand lockup: the logo file has a transparent background, so it sits
   directly on the navy nav/footer with no crop or badge card needed —
   just sized to fit. */
.brand-mark { display: block; }
.brand-mark img { display: block; width: auto; }
.nav-mark img { height: 76px; }
.footer-mark { margin-bottom: 0.5rem; }
.footer-mark img { height: 168px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-phone {
  color: var(--white) !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-light); color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.mobile-close { position: absolute; top: 1.5rem; right: 5%; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 136px 5% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(211,95,38,0.14) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 80% 20%, rgba(42,85,149,0.8) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--orange-light); }
.hero-sub { font-size: 1.1rem; color: var(--slate); max-width: 540px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; justify-content: center; }
.hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}
.tag-blue { background: var(--blue-pale); color: var(--navy-light); }
.tag-orange { background: var(--orange-pale); color: #a8481c; }
.tag-neutral { background: var(--frost); color: var(--text-soft); border: 1px solid var(--border); }
.tag-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.tag-outline-dark { border: 1px solid var(--blue); color: var(--blue); background: transparent; }
.hero-tags .tag-blue, .hero-tags .tag-orange { background: rgba(58,114,194,0.18); color: var(--blue-light); }
.hero-tags .tag-orange { background: rgba(211,95,38,0.18); color: var(--orange-light); }

/* Signature: animated ring */
.hero-ring-wrap { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; z-index: 1; }
.ring-svg { width: 100%; height: 100%; }
@keyframes spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes pulse { 0%,100%{ opacity:0.6; transform:scale(1); } 50%{ opacity:1; transform:scale(1.05); } }
.ring-outer { animation: spin-cw 28s linear infinite; transform-origin: 50% 50%; }
.ring-inner { animation: spin-ccw 18s linear infinite; transform-origin: 50% 50%; }
.ring-core { animation: pulse 4s ease-in-out infinite; transform-origin: 50% 50%; }

/* trust strip */
.trust-strip {
  background: var(--navy-mid);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--slate); font-size: 0.82rem; font-weight: 500; }
.trust-item svg { color: var(--orange-light); flex-shrink: 0; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--navy);
  padding: 166px 5% 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 85% 20%, rgba(58,114,194,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 40% 60% at 10% 90%, rgba(211,95,38,0.14) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .hero-eyebrow { color: var(--orange-light); }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--slate); font-size: 1.05rem; max-width: 62ch; line-height: 1.7; }

/* Emergency banner (contact) */
.emergency-banner {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 84px;
}
.emergency-banner a { color: var(--white); font-weight: 700; text-decoration: underline; }
.emergency-banner .tag { background: rgba(255,255,255,0.18); color: var(--white); }

/* ── SECTION SHARED ── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.section-sub { color: var(--text-soft); max-width: 540px; margin-top: 0.75rem; line-height: 1.7; }
.section-header { margin-bottom: 3rem; }
.section-rule { border: 0; border-top: 1px solid var(--border); margin: 0 0 2rem; }

/* ── WHAT WE DO / GRID CARDS ── */
.services { background: var(--frost); }
.services-grid, .value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(58,114,194,0.12); transform: translateY(-2px); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}
.service-icon.blue { background: var(--blue-pale); }
.service-icon.orange { background: var(--orange-pale); }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; text-transform: uppercase; }
.service-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; }
.services-cta { margin-top: 2rem; display: flex; justify-content: flex-start; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--orange); }

/* ── WHY US SPLIT (also used for About story) ── */
.why-split { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: clamp(24px,5vw,64px); align-items: center; }
.why-split.reverse { grid-template-columns: minmax(0,7fr) minmax(0,5fr); }
.why-split.reverse .why-visual { order: 2; }
.why-visual {
  aspect-ratio: 4/5;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--blue) 130%);
  display: flex; align-items: center; justify-content: center;
}
.why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.why-visual svg { position: relative; z-index: 1; width: 62%; height: auto; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; max-width: 480px; margin-top: 1.75rem; }
.why-point { display: flex; align-items: baseline; gap: 0.7rem; }
.why-point-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--orange); }
.why-point-label { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--frost); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--white); border-radius: 12px; padding: 1.75rem; border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.stars { color: var(--orange); font-size: 0.9rem; }
.testi-card blockquote { font-size: 0.95rem; color: var(--text); line-height: 1.65; font-weight: 600; font-family: 'Syne', sans-serif; }
.testi-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 3.5rem 5%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 90% 50%, rgba(211,95,38,0.16) 0%, transparent 70%);
}
.cta-band-text { position: relative; max-width: 480px; }
.cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 0.6rem; text-transform: uppercase; }
.cta-band p { color: var(--slate); position: relative; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }
.cta-outline-white { color: var(--white); border-color: rgba(255,255,255,0.35); }
.cta-outline-white:hover { border-color: rgba(255,255,255,0.7); }
.cta-wrap { padding: 0 5% 96px; }

/* ── SERVICES PAGE: sheets ── */
.service-sheet {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.service-sheet-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.75rem;
  background: var(--frost);
  border-bottom: 1px solid var(--border);
}
.service-sheet-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-right: auto;
}
.service-sheet-row {
  display: grid;
  grid-template-columns: minmax(140px, 22%) 1fr minmax(140px, 200px);
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.service-sheet-row:last-child { border-bottom: none; }
.service-sheet-row .name { font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; color: var(--navy); font-size: 0.95rem; }
.service-sheet-row .desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; }
.service-sheet-row .response { font-size: 0.8rem; font-weight: 600; color: var(--blue); }

.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.plan-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.plan-card h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; text-transform: uppercase; color: var(--navy); }
.plan-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
.plan-card .btn-secondary { width: fit-content; margin-top: 0.5rem; }

/* ── ABOUT PAGE: areas ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.area-chip {
  background: var(--frost);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.area-chip:hover { border-color: var(--orange); color: var(--orange); }

.license-sheet { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; padding: 1.75rem; }
.license-sheet p { flex-basis: 100%; font-size: 0.82rem; color: var(--text-soft); margin-top: 0.5rem; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: clamp(24px,5vw,56px); align-items: start; }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.field { margin-bottom: 1.1rem; }
.field > label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field .input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--frost);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.field .input:focus { border-color: var(--blue); background: var(--white); }
.field textarea.input { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { display: block; font-size: 0.75rem; color: var(--orange); margin-top: 0.35rem; }

.seg { display: flex; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.seg-opt { flex: 1; text-align: center; padding: 0.6rem 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--text-soft); cursor: pointer; transition: background 0.2s, color 0.2s; border-right: 1px solid var(--border); }
.seg-opt:last-child { border-right: none; }
.seg-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg-opt.active { background: var(--blue); color: var(--white); }

.radio-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.radio:hover { border-color: var(--blue-light); }
.radio .dot { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; position: relative; transition: border-color 0.2s; }
.radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio input:checked + .dot { border-color: var(--blue); }
.radio input:checked + .dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); }
.radio:has(input:checked) { border-color: var(--blue); background: var(--blue-pale); }

.success-panel { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.5rem 0; }
.success-panel h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; text-transform: uppercase; color: var(--navy); }
.success-panel p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; max-width: 48ch; }

.contact-info-card {
  background: var(--frost);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
}
.contact-info-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; text-transform: uppercase; color: var(--navy); margin-bottom: 1.1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail strong { display: block; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.15rem; }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: var(--navy); text-decoration: none; }
.contact-detail a:hover { color: var(--blue); }

.map-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, var(--blue) 140%);
  display: flex; align-items: center; justify-content: center;
}
.map-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-visual span {
  position: relative; z-index: 1;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 5% 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--slate); font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; max-width: 34ch; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--slate); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col .footer-detail { color: var(--slate); font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-bottom span { color: var(--slate); font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .services-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-split, .why-split.reverse { grid-template-columns: 1fr; }
  .why-split.reverse .why-visual { order: 0; }
  .why-visual { max-width: 360px; margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-sheet-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .service-sheet-row .response { color: var(--text-soft); }
}
@media (max-width: 900px) {
  .hero-ring-wrap { display: none; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .services-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── UTILITIES (replace per-page inline styles) ── */
.hidden { display: none !important; }
.pt-0 { padding-top: 0; }
.pt-32 { padding-top: 32px; }
.pb-96 { padding-bottom: 96px; }

/* Long-form paragraphs (About story, Where We Work intro) */
.prose { font-size: 15px; line-height: 1.75; max-width: 56ch; color: var(--text-soft); margin-bottom: 1.1rem; }
.prose:last-child { margin-bottom: 0; }

/* Wider variant of the standard section subtitle */
.section-sub.wide { max-width: 56ch; }

/* Page hero that sits below the emergency banner (Contact) */
.page-hero.compact { padding-top: 72px; }

/* Plan-card tags hug their content instead of stretching full-width */
.plan-card .tag { align-self: flex-start; }

/* Mobile menu phone link accent */
.mobile-menu .menu-phone { color: var(--orange-light); }
