/* ============================================================
   Air For Less Heating & Cooling
   Temporary marketing site styles
   Designed for a 55-65+ Las Vegas homeowner audience:
   large type, high contrast, big buttons, lots of white space.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --blue:        #0F5BA8;   /* brand cool / primary brand */
  --blue-dark:   #0B406E;
  --blue-soft:   #E7F0F9;
  --navy:        #142A3F;   /* headings */
  --red:         #D8232A;   /* brand hot / primary CTA */
  --red-dark:    #B0161C;
  --red-soft:    #FBE9E9;
  --text:        #243443;   /* body */
  --muted:       #5A6B7B;
  --bg:          #FFFFFF;
  --bg-alt:      #F3F8FC;   /* section tint */
  --line:        #DCE6F0;
  --shadow:      0 10px 30px rgba(15, 42, 70, 0.10);
  --shadow-sm:   0 4px 14px rgba(15, 42, 70, 0.08);
  --radius:      14px;
  --radius-lg:   22px;
  --wrap:        1140px;
  --font-head:   "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body:   "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1875rem; /* 19px at default root; scales with the text-size control */
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--blue { background: var(--blue); color: #fff; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .92rem;
  color: var(--blue);
  margin: 0 0 .6em;
}
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.1;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 60px;
  white-space: nowrap;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn svg { width: 24px; height: 24px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-call { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(216,35,42,.28); }
.btn-call:hover { background: var(--red-dark); }
.btn-schedule { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(15,91,168,.26); }
.btn-schedule:hover { background: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-soft); }
.btn-white { background:#fff; color: var(--blue); }
.btn-white:hover { background: #f1f6fb; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row--center { justify-content: center; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.logo-mark { width: 46px; height: 46px; flex: none; }
.logo-img { height: 48px; width: auto; display: block; flex: none; }
.logo-icon { height: 46px; width: auto; display: block; flex: none; }
.logo-full { display: block; width: 230px; max-width: 78vw; height: auto; background: #fff; padding: 14px 16px; border-radius: 14px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .01em;
  white-space: nowrap;
}
.logo-name .b { color: var(--blue); }
.logo-name .r { color: var(--red); }
.logo-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 88px;
}
.nav { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: space-evenly; padding: 0 22px; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.22rem;
  color: var(--navy); text-decoration: none; white-space: nowrap;
}
.header-phone svg { width: 22px; height: 22px; color: var(--red); }
.header-phone span small {
  display:block; font-size:.6rem; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; color: var(--muted);
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #F3F8FC 0%, #FFFFFF 100%); padding: 64px 0 76px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--blue); }
.hero-sub {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.3rem; color: var(--navy); margin: 0 0 .7em;
}
.hero p.lead { font-size: 1.18rem; color: var(--text); max-width: 36ch; }
.hero .btn-row { margin-top: 28px; }
.rating {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; font-weight: 600; color: var(--navy);
}
.stars { color: #C27A00; font-size: 1.35rem; letter-spacing: 2px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
/* Reusable photo frame for content images (matches the placeholder slots) */
.photo {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -18px; bottom: -18px;
  background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--red); line-height: 1; }
.hero-badge .lbl { font-size: .98rem; color: var(--muted); font-weight: 600; line-height: 1.25; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); color: #fff; }
.trustbar ul {
  list-style: none; margin: 0; padding: 20px 0;
  display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 8px 0;
}
.trustbar li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1.04rem; white-space: nowrap; padding: 2px 22px; }
.trustbar li:not(:last-child) { border-right: 1px solid rgba(255,255,255,.22); }
.trustbar svg { width: 20px; height: 20px; color: #6FC3FF; flex: none; }

/* ---------- Problem cards (What's going on) ---------- */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.problem-card {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c4d6e8; }
.problem-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; background: var(--blue-soft); color: var(--blue);
}
.problem-icon.hot { background: var(--red-soft); color: var(--red); }
.problem-icon svg { width: 30px; height: 30px; }
.problem-card h3 { margin: 0; font-size: 1.3rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.go {
  font-family: var(--font-head); font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: 7px; font-size: 1.02rem;
}
.problem-card .go { margin-top: auto; }
.problem-card:hover .go, a.service:hover .go { gap: 11px; }

/* ---------- Why choose (reasons) ---------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; max-width: 940px; margin: 0 auto; }
.reason { display: flex; gap: 18px; }
.reason .check {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
}
.reason .check svg { width: 24px; height: 24px; }
.reason h3 { margin: 2px 0 4px; font-size: 1.22rem; }
.reason p { margin: 0; color: var(--muted); font-size: 1.04rem; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service {
  display: flex; gap: 22px; background:#fff; border:1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
a.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c4d6e8; }
.service .ico {
  flex: none; width: 64px; height: 64px; border-radius: 14px;
  display: grid; place-items: center; background: var(--blue-soft); color: var(--blue);
}
.service .ico.hot { background: var(--red-soft); color: var(--red); }
.service .ico svg { width: 34px; height: 34px; }
.service h3 { margin: 0 0 6px; }
.service p { margin: 0; color: var(--muted); font-size: 1.04rem; }

/* ---------- Service area ---------- */
.area-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.area-list { list-style:none; margin:0; padding:0; columns: 2; column-gap: 30px; }
.area-list li {
  display:flex; align-items:center; gap:11px; padding:9px 0; font-size:1.08rem; font-weight:500;
  break-inside: avoid;
}
.area-list svg { width:20px; height:20px; color: var(--red); flex:none; }
.area-list a { color: var(--blue); text-decoration: none; font-weight: 600; }
.area-list a:hover { text-decoration: underline; }
.area-card {
  background: var(--blue); color:#fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.area-card h3 { color:#fff; font-size:1.6rem; }
.area-card p { color: #DCEAF7; }
.area-card .btn { margin-top: 8px; }

/* ---------- About ---------- */
.about-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items:center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width:100%; height:auto; display:block; }
.about-copy h2 { margin-top:0; }
.about-copy p { font-size: 1.1rem; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color:#fff; text-align:center; }
.final-cta h2 { color:#fff; }
.final-cta p { color:#DCEAF7; font-size:1.18rem; max-width:560px; margin:0 auto 28px; }
.final-cta .btn-row { justify-content:center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C7D4E0; padding: 56px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .logo-name .b { color:#fff; }
.site-footer .logo-name .r { color:#FF8A8F; }
.site-footer .logo-sub { color:#8FA3B5; }
.site-footer p { color:#A9BACB; font-size: 1rem; }
.footer-col h4 { color:#fff; font-family:var(--font-head); font-size:1.08rem; margin:0 0 14px; }
.footer-col ul { list-style:none; margin:0; padding:0; }
.footer-col li { padding: 5px 0; }
.footer-col a { color:#C7D4E0; text-decoration:none; }
.footer-col a:hover { color:#fff; text-decoration: underline; }
.footer-phone {
  display:inline-flex; align-items:center; gap:10px; color:#fff !important;
  font-family:var(--font-head); font-weight:800; font-size:1.4rem; margin: 6px 0 4px;
}
.footer-phone svg { width:24px; height:24px; color:#FF8A8F; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff !important; transition: background .15s ease;
}
.social-link:hover { background: rgba(255,255,255,.22); }
.social-link svg { width: 22px; height: 22px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; font-size:.92rem; color:#8FA3B5;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar { display: none; }

/* ---------- Schedule page ---------- */
.page-hero { background: var(--bg-alt); padding: 56px 0; text-align:center; border-bottom:1px solid var(--line); }
.page-hero p { color: var(--muted); font-size:1.15rem; max-width:620px; margin: 0 auto; }
.form-layout { display:grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items:start; }
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 22px; }
.field label { display:block; font-family:var(--font-head); font-weight:600; font-size:1.05rem; color:var(--navy); margin-bottom:8px; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width:100%; font-family:var(--font-body); font-size:1.08rem; color:var(--text);
  padding: 15px 16px; border:2px solid var(--line); border-radius:10px; background:#fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--blue); box-shadow:0 0 0 3px var(--blue-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-aside { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 32px; }
.form-aside h3 { margin-top:0; }
.form-aside .or { text-align:center; color:var(--muted); font-weight:600; margin: 18px 0; }
.confirm {
  display:none; background: var(--blue-soft); border:2px solid var(--blue);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 24px; color: var(--navy);
}
.confirm.show { display:block; }
.confirm strong { color: var(--blue-dark); }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .eff { color: var(--muted); font-weight: 600; margin-top: -8px; }
.legal h2 { margin-top: 1.9em; font-size: 1.5rem; }
.legal h3 { margin-top: 1.4em; font-size: 1.18rem; color: var(--navy); }
.legal p, .legal li { font-size: 1.05rem; }
.legal ul { padding-left: 1.25em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .4em; }
.legal a { color: var(--blue); }
.legal .notice {
  background: var(--blue-soft); border-left: 5px solid var(--blue);
  padding: 18px 22px; border-radius: 10px; margin: 24px 0;
}
.legal .notice h2 { margin-top: 0; font-size: 1.2rem; }

/* ---------- Focus visibility (accessibility) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .problem-card:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px;
}

/* ---------- Image placeholders (client supplies final photos) ---------- */
.img-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blue-soft), #F3F8FC);
  border: 2px dashed #B9D0E6;
  border-radius: var(--radius-lg);
  display: grid; place-content: center; justify-items: center; gap: 10px;
  text-align: center; padding: 26px; color: var(--blue);
}
.img-ph svg { width: 46px; height: 46px; opacity: .65; }
.img-ph b { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--blue-dark); }
.img-ph small { color: var(--muted); font-size: .92rem; max-width: 30ch; }
.img-ph--wide { aspect-ratio: 16 / 9; }
.img-ph--tall { aspect-ratio: 3 / 4; }

/* ---------- Breadcrumbs ---------- */
.crumbs-bar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 15px 0; font-size: 1rem; }
.crumbs a { color: var(--blue); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: #9FB3C6; }
.crumbs .here { color: var(--navy); font-weight: 600; }

/* ---------- Tick lists ---------- */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { display: flex; gap: 13px; padding: 11px 0; font-size: 1.08rem; align-items: flex-start; }
.ticks svg { flex: none; width: 26px; height: 26px; color: var(--blue); margin-top: 2px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step .n {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { margin: 0 0 6px; font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); font-size: 1.02rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; }
.faq details[open] { border-color: #C4D6E8; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.16rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 700; font-size: 1.7rem; color: var(--blue); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq .ans { padding: 0 24px 22px; color: var(--text); font-size: 1.06rem; }
.faq .ans p { margin: 0; }

/* ---------- Other services link cards ---------- */
.svc-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-link {
  display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.svc-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c4d6e8; }
.svc-link .ico { flex: none; width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.svc-link .ico.hot { background: var(--red-soft); color: var(--red); }
.svc-link .ico svg { width: 28px; height: 28px; }
.svc-link b { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); display: block; }
.svc-link span { display: block; color: var(--muted); font-size: .96rem; }

/* ---------- Utility bar + text-size control (accessibility) ---------- */
.util-bar { background: var(--navy); color: #C7D4E0; }
.util-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 42px; padding: 5px 0; }
.util-tag { font-size: .92rem; font-weight: 500; }
.textsize { display: flex; align-items: center; gap: 8px; }
.ts-label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #fff; letter-spacing: .02em; }
.ts-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 34px; padding: 4px 11px;
  border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff;
  border-radius: 8px; font-family: var(--font-head); font-weight: 700; line-height: 1; cursor: pointer;
}
.ts-btn[data-ts="down"] { font-size: .9rem; }
.ts-btn[data-ts="up"] { font-size: 1.15rem; }
.ts-btn:hover { background: rgba(255,255,255,.14); }
.ts-btn[aria-disabled="true"] { opacity: .4; cursor: default; }
@media (max-width: 560px) {
  .util-tag { display: none; }
  .util-inner { justify-content: center; }
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: #C27A00; font-size: 1.2rem; letter-spacing: 2px; }
.review-card p { margin: 0; font-size: 1.06rem; color: var(--text); }
.review-card .who { margin-top: auto; font-family: var(--font-head); }
.review-card .who b { color: var(--navy); display: block; font-size: 1.05rem; }
.review-card .who span { color: var(--muted); font-size: .95rem; }

/* ---------- Scheduling page ---------- */
.sched-banner { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; text-align: center; padding: 64px 0; }
.sched-banner h1 { color: #fff; margin-bottom: .3em; }
.sched-banner p { color: #DCEAF7; font-size: 1.2rem; max-width: 640px; margin: 0 auto; }
.sched-banner a { color: #fff; font-weight: 700; }

.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sched-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; text-decoration: none; color: #fff; width: 100%;
  border: none; cursor: pointer; font-family: var(--font-body);
  border-radius: var(--radius-lg); padding: 46px 28px; min-height: 232px;
  box-shadow: var(--shadow); transition: transform .14s ease, box-shadow .14s ease;
}
.sched-btn:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(15,42,70,.22); }
.sched-btn .ico { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.sched-btn .ico svg { width: 42px; height: 42px; }
.sched-btn .t { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; line-height: 1.15; }
.sched-btn .s { font-size: 1.04rem; opacity: .94; }
.sched-btn.red  { background: var(--red); }
.sched-btn.blue { background: var(--blue); }
.sched-btn.navy { background: var(--navy); }
.sched-btn.is-active { outline: 4px solid var(--sandstone, #C27A00); outline-offset: 4px; }

.embed-ph { border: 2px dashed #B9D0E6; border-radius: var(--radius-lg); background: var(--bg-alt); padding: 48px 28px; text-align: center; }
.embed-ph svg { width: 46px; height: 46px; color: var(--blue); opacity: .6; margin-bottom: 8px; }
.embed-ph b { display: block; font-family: var(--font-head); font-size: 1.18rem; color: var(--blue-dark); margin-bottom: 6px; }
.embed-ph small { color: var(--muted); font-size: .98rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .hero p.lead { max-width: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .area-wrap, .about-grid, .form-layout, .two-col { grid-template-columns: 1fr; gap: 32px; }
  .svc-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 1.125rem; }
  .section { padding: 56px 0; }
  .nav { display: none; }
  .header-actions .btn-schedule { display: none; } /* covered by sticky bottom bar */
  .header-phone span small { display:none; }
  .header-phone { font-size: 1.05rem; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-name { font-size: 1.3rem; }
  .header-inner { min-height: 72px; }
  .logo-img { height: 40px; }
  .logo-full { width: 200px; }
  .logo-icon { height: 40px; }
  .reasons, .service-grid, .steps, .svc-links, .reviews-grid, .sched-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  /* sticky call bar */
  .mobile-callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    box-shadow: 0 -6px 18px rgba(0,0,0,.14);
  }
  .mobile-callbar a {
    flex:1; display:flex; align-items:center; justify-content:center; gap:9px;
    padding: 16px; font-family:var(--font-head); font-weight:700; font-size:1.1rem;
    text-decoration:none; color:#fff;
  }
  .mobile-callbar svg { width:22px; height:22px; }
  .mobile-callbar .mc-call { background: var(--red); }
  .mobile-callbar .mc-sched { background: var(--blue); }
  body { padding-bottom: 64px; } /* room for call bar */
}
@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .area-list { columns: 1; }
  .btn { width: 100%; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
}

/* Trust bar: stack cleanly before the single row would overflow */
@media (max-width: 1024px) {
  .trustbar ul { flex-direction: column; flex-wrap: wrap; gap: 4px; }
  .trustbar li { border-right: 0 !important; padding: 7px 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
