/* ===================================================================
   Hughes Heating & Air Conditioning LLC — Ocala, FL
   Theme: "Cool the Florida heat" — deep teal-navy + sun-orange CTAs.
   Self-contained: system fonts, inline SVG icons, CSS/SVG visuals.
   Palette: teal-navy #0C3A4E primary + steel.  Orange #F47B20 = CTAs ONLY.
   =================================================================== */
:root {
  --navy:       #0C3A4E;   /* brand primary — deep teal-navy */
  --navy-800:   #124D66;   /* raised */
  --navy-deep:  #072A38;   /* footer base */
  --steel:      #45607A;   /* steel gray-blue */
  --steel-ic:   #2F4A5E;   /* icon ink */
  --ink:        #14293A;   /* body headings */
  --muted:      #5B6B78;   /* secondary text */
  --paper:      #ffffff;
  --paper-alt:  #F2F6F8;   /* section tint */
  --line:       #DFE6EB;   /* hairlines */
  --tint-navy:  #E4EFF3;   /* teal icon chip bg */
  --tint-steel: #EAF0F3;   /* gray icon chip bg */
  --accent:     #F47B20;   /* WARM CTA accent — CTAs only */
  --accent-600: #DA6410;   /* CTA hover */
  --sky:        #7FB2CC;   /* cool decorative tint */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* Inline SVG icon base */
.ic {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 72px; background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 13.5px; color: var(--steel); text-decoration: none; font-weight: 400; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 9px 18px;
  border-radius: 6px; font-weight: 600 !important; font-size: 13.5px !important;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--accent-600) !important; }
.nav-cta .ic { font-size: 15px; }

/* ===== HERO — SPLIT layout: copy-panel left, CSS/SVG summer scene right ===== */
.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1.08fr 0.92fr; background: var(--navy);
}
.hero-scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(9,32,44,0.86) 0%, rgba(12,58,78,0.62) 48%, rgba(12,58,78,0.22) 100%);
}
.hero-left {
  position: relative; z-index: 2; padding: 4.5rem 3.5rem 4.5rem 3rem;
  max-width: 700px; display: flex; flex-direction: column; justify-content: center;
}
.hero-right { position: relative; overflow: hidden; background: var(--navy-800); }
.hero-right .hero-scene { z-index: 0; }
/* diagonal seam blends the copy panel into the scene */
.hero-seam {
  position: absolute; z-index: 2; top: 0; bottom: 0; left: -2px; width: 120px; pointer-events: none;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy) 38%, rgba(12,58,78,0) 100%);
}
/* floating condenser-status chip on the scene */
.hero-chip {
  position: absolute; z-index: 3; right: 1.75rem; bottom: 1.75rem;
  display: flex; align-items: center; gap: 11px;
  background: rgba(7,26,36,0.72); border: 1px solid rgba(143,208,234,0.35);
  backdrop-filter: blur(4px); border-radius: 12px; padding: 0.7rem 0.95rem;
}
.hero-chip .hc-dot { width: 10px; height: 10px; border-radius: 50%; background: #8FD0EA; box-shadow: 0 0 0 4px rgba(143,208,234,0.22); flex-shrink: 0; }
.hero-chip .hc-t { display: block; font-size: 12.5px; font-weight: 600; color: #fff; }
.hero-chip .hc-s { display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
  font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.tag .ic { font-size: 14px; color: var(--sky); }
.h1 {
  font-family: var(--font-serif); font-size: 52px; line-height: 1.07;
  color: #fff; letter-spacing: -0.01em; margin-bottom: 1.25rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}
.h1 .cool { color: #8FD0EA; }
.hero-p { font-size: 16px; color: rgba(255,255,255,0.92); line-height: 1.7; max-width: 460px; margin-bottom: 2rem; font-weight: 300; }
.btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 1.4rem; margin-top: 2.25rem; flex-wrap: wrap; }
.hero-badges span { font-size: 12.5px; color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 7px; }
.hero-badges .ic { font-size: 16px; color: var(--sky); }
.scroll-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; text-decoration: none;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.4);
  animation: scrollCue 1.8s ease-in-out infinite;
}
.scroll-cue:hover { background: rgba(255,255,255,0.24); }
@keyframes scrollCue { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Buttons */
.btn-primary {
  background: var(--accent); color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 7px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-600); }
.btn-primary .ic { font-size: 17px; }
.btn-lg { font-size: 16px; padding: 16px 30px; border-radius: 8px; box-shadow: 0 8px 24px rgba(244,123,32,0.32); }
.btn-lg:hover { transform: translateY(-1px); }
.btn-ghost {
  font-size: 14px; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  padding: 13px 24px; border-radius: 7px; border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.15s, border-color 0.15s;
}
.btn-lg.btn-ghost { padding: 15px 26px; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-ghost .ic { font-size: 17px; }

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); }
.trust-item { padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 0.9rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ic-teal { background: var(--tint-navy);  color: var(--navy); }
.ic-steel { background: var(--tint-steel); color: var(--steel-ic); }
.ic-gray { background: #F0F2F4; color: var(--steel); }
.trust-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-sub { font-size: 12px; color: var(--muted); font-weight: 300; }

/* REQUEST SERVICE — the pitch moment */
.request { background: var(--navy); padding: 3.5rem 3rem; }
.request-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; max-width: 1080px; margin: 0 auto; }
.sec-tag.light { color: var(--sky); }
.request-h { font-family: var(--font-serif); font-size: 34px; line-height: 1.12; color: #fff; letter-spacing: -0.01em; margin-bottom: 1rem; }
.request-p { font-size: 15.5px; color: rgba(255,255,255,0.84); line-height: 1.7; font-weight: 300; max-width: 440px; margin-bottom: 1.5rem; }
.request-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 26px; color: #fff; text-decoration: none; }
.request-phone .ic { font-size: 22px; color: var(--accent); }
.request-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.request-badges span { font-size: 12.5px; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 6px; }
.request-badges .ic { font-size: 16px; color: var(--sky); }

.request-card { background: #fff; border-radius: 14px; padding: 1.75rem; box-shadow: 0 20px 50px rgba(0,0,0,0.28); }
.rq-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 1.1rem; }
.rq-field { display: block; margin-bottom: 0.9rem; }
.rq-field span { display: block; font-size: 12px; font-weight: 500; color: var(--steel); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
.rq-field input, .rq-field textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.rq-field input:focus, .rq-field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12,58,78,0.1); }
.btn-request {
  width: 100%; justify-content: center; margin-top: 0.35rem;
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 20px; border: none; border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s;
}
.btn-request:hover { background: var(--accent-600); }
.btn-request .ic { font-size: 17px; }
.rq-note { margin-top: 0.9rem; font-size: 11.5px; color: var(--muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }

/* SERVICES */
.services { padding: 3.25rem 3rem; background: var(--paper); }
.sec-tag { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.sec-h { font-family: var(--font-serif); font-size: 32px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1.75rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.svc { background: #fff; padding: 1.4rem 1.5rem; transition: background 0.15s; }
.svc:hover { background: #FAFBFC; }
a.svc { text-decoration: none; display: block; }
.svc-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; font-size: 18px; }
.svc-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* TEMP STRIP */
.temp-strip { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.strip-heat, .strip-cool { background: var(--paper-alt); padding: 2rem 3rem; display: flex; align-items: center; gap: 1.25rem; }
.strip-heat { border-right: 1px solid var(--line); }
.strip-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.strip-heat .strip-icon { background: var(--tint-navy); color: var(--navy); }
.strip-cool .strip-icon { background: var(--tint-steel); color: var(--steel-ic); }
.strip-title { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--ink); }
.strip-sub { font-size: 13px; font-weight: 300; color: var(--muted); }

/* ABOUT */
.about { padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.about-p { font-size: 15px; color: var(--steel); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; max-width: 560px; }
.about-card { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem 2rem; }
.about-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.about-row:last-child { border-bottom: none; }
.about-row .ic { font-size: 20px; color: var(--navy); margin-top: 2px; }
.about-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.about-role { font-size: 12.5px; color: var(--muted); font-weight: 300; margin-top: 2px; }

/* ENERGY / BENEFITS */
.energy { padding: 4rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line); }
.energy-intro { font-size: 15px; color: var(--steel); line-height: 1.8; font-weight: 300; max-width: 640px; margin-top: -1.5rem; margin-bottom: 2rem; }
.energy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.benefit { display: flex; gap: 0.75rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.25rem; font-size: 13.5px; color: var(--steel); line-height: 1.55; font-weight: 300; }
.benefit .ic { color: var(--navy); font-size: 18px; margin-top: 1px; }

/* OFFERS */
.offers { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-alt); border-top: 1px solid var(--line); }
.offer { padding: 2.5rem 3rem; display: flex; align-items: flex-start; gap: 1.25rem; border-right: 1px solid var(--line); }
.offer:last-child { border-right: none; }
.offer-pct { font-family: var(--font-serif); font-size: 46px; color: var(--navy); line-height: 1; flex-shrink: 0; }
.offer-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.offer-note { font-size: 13px; color: var(--muted); font-weight: 300; }

/* FOOTER */
.footer { background: var(--navy); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-decoration: none; }
.ft-name { font-size: 14px; font-weight: 600; color: #fff; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }
.ft-heading { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.ft-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 0.5rem; font-weight: 300; }
.ft-row .ic { font-size: 15px; color: rgba(255,255,255,0.4); }
.ft-row strong { color: #fff; font-weight: 600; }
.ft-row a { color: inherit; text-decoration: none; }
.ft-bottom { background: var(--navy-deep); padding: 1rem 3rem; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* PAGE HERO (subpages) — CSS/SVG scene */
.page-hero { position: relative; overflow: hidden; padding: 4.5rem 3rem; display: flex; flex-direction: column; justify-content: center; min-height: 320px; }
.page-hero .hero-scene { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-overlay { background: linear-gradient(100deg, rgba(9,32,44,0.84) 0%, rgba(12,58,78,0.66) 55%, rgba(12,58,78,0.34) 100%); }
.ph-inner { position: relative; z-index: 2; max-width: 720px; }
.page-h1 { font-family: var(--font-serif); font-size: 42px; line-height: 1.12; color: #fff; letter-spacing: -0.01em; margin-bottom: 1rem; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.page-hero-p { font-size: 15.5px; color: rgba(255,255,255,0.92); line-height: 1.7; font-weight: 300; max-width: 560px; }

/* CONTENT PAGES */
.page-section { padding: 4rem 3rem; }
.page-section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); }

/* CTA STRIP */
.cta-strip { background: var(--navy); padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: var(--font-serif); font-size: 28px; color: #fff; margin-bottom: 4px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; }

/* DEMO NOTES — internal/pitch markers, removed before production */
.demo-note { display: flex; align-items: flex-start; gap: 12px; border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06); border-radius: 10px; padding: 0.9rem 1.25rem; font-size: 13px; color: #5B21B6; line-height: 1.6; }
.demo-note-badge { flex-shrink: 0; background: #7C3AED; color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-top: 2px; }
.demo-note-strip { padding: 1rem 3rem; background: var(--paper); }
.demo-note-strip.gray { background: var(--paper-alt); }

/* LOGO MARK (placeholder monogram — swap for real logo) */
.logo-mark { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.02em; background: var(--navy); }
.ft-logo-mark { width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: #fff; background: var(--navy-800); }

/* Labeled placeholder block (for imagery slots) */
.ph-block { position: relative; border: 1.5px dashed var(--sky); background: repeating-linear-gradient(45deg, rgba(127,178,204,0.06) 0, rgba(127,178,204,0.06) 12px, rgba(127,178,204,0.12) 12px, rgba(127,178,204,0.12) 24px); border-radius: 12px; min-height: 220px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; }
.ph-block span { font-size: 12.5px; color: var(--steel); font-weight: 500; letter-spacing: 0.03em; max-width: 260px; line-height: 1.5; }

/* ===================================================================
   POLISH PASS — trust signals, credentials, reviews, financing,
   sticky mobile call bar, refined motion & micro-interactions.
   =================================================================== */

/* --- Refined hero motion (subtle, respects reduced-motion) --- */
.hero-scene .sun-glow { transform-origin: center; animation: sunPulse 9s ease-in-out infinite; }
@keyframes sunPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 0.72; } }
.airflow path { stroke-dasharray: 360; animation: airDrift 7s ease-in-out infinite; }
.airflow path:nth-child(2) { animation-delay: 1.1s; }
@keyframes airDrift { 0% { stroke-dashoffset: 360; opacity: 0; } 22% { opacity: 0.42; } 78% { opacity: 0.42; } 100% { stroke-dashoffset: -360; opacity: 0; } }

/* --- Reveal-on-scroll --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* --- Credentials / certifications strip --- */
.creds { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.5rem 3rem; }
.creds-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 1rem 2.25rem; flex-wrap: wrap; }
.cred {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600;
  color: var(--steel-ic); letter-spacing: 0.01em; padding: 8px 4px;
}
.cred .cred-badge {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  background: var(--tint-navy); color: var(--navy);
}
.cred .cred-badge.warm { background: rgba(244,123,32,0.12); color: var(--accent-600); }
.cred small { display: block; font-size: 11px; font-weight: 400; color: var(--muted); letter-spacing: 0.02em; margin-top: 1px; }
.cred-sep { width: 1px; height: 30px; background: var(--line); }

/* --- Reviews / testimonials --- */
.reviews { padding: 4rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line); }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.reviews-head .sec-h { margin-bottom: 0; }
.rating-summary { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem 1.1rem; box-shadow: 0 6px 18px rgba(12,58,78,0.05); }
.rating-summary .rs-score { font-family: var(--font-serif); font-size: 30px; color: var(--ink); line-height: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars .ic { fill: currentColor; stroke: none; font-size: 15px; }
.rs-count { font-size: 12px; color: var(--muted); margin-top: 3px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.5rem 1.35rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  box-shadow: 0 6px 20px rgba(12,58,78,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(12,58,78,0.1); }
.review-quote { font-size: 14.5px; color: var(--ink); line-height: 1.65; font-weight: 300; }
.review-quote strong { font-weight: 600; }
.review-by { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 0.35rem; }
.review-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; background: var(--steel); font-family: var(--font-serif); }
.review-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.review-loc { font-size: 12px; color: var(--muted); }
.review-src { margin-left: auto; font-size: 11px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.review-src .ic { font-size: 13px; color: #34A853; }

/* --- Financing band --- */
.financing { background: linear-gradient(105deg, var(--navy) 0%, var(--navy-800) 100%); padding: 3rem; position: relative; overflow: hidden; }
.financing::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(244,123,32,0.22), transparent 70%); pointer-events: none; }
.financing-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; position: relative; z-index: 1; }
.fin-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.fin-tag .ic { font-size: 15px; }
.fin-h { font-family: var(--font-serif); font-size: 30px; color: #fff; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 0.85rem; }
.fin-p { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.7; font-weight: 300; max-width: 480px; }
.fin-points { display: flex; flex-direction: column; gap: 0.75rem; }
.fin-point { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 0.9rem 1.1rem; }
.fin-point .fp-num { font-family: var(--font-serif); font-size: 24px; color: #8FD0EA; line-height: 1; flex-shrink: 0; min-width: 52px; }
.fin-point .fp-txt { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.45; }
.fin-point .fp-txt strong { color: #fff; font-weight: 600; }

/* --- FAQ (native details/summary accordion) --- */
.faq { padding: 4rem 3rem; background: var(--paper); border-top: 1px solid var(--line); }
.faq-list { max-width: 780px; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-size: 15.5px; font-weight: 600; color: var(--ink); transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--navy); }
.faq-item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--steel); border-bottom: 2px solid var(--steel);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); border-color: var(--navy); }
.faq-a { padding: 0 2.5rem 1.25rem 0; font-size: 14px; color: var(--steel); line-height: 1.72; font-weight: 300; }

/* Maintenance-plan 3-up offers */
.offers-3 { grid-template-columns: repeat(3, 1fr); }

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

/* --- Micro-interactions on existing cards --- */
.svc { position: relative; }
.svc-icon, .strip-icon, .trust-icon, .cred-badge { transition: transform 0.2s ease; }
a.svc:hover .svc-icon { transform: translateY(-2px) scale(1.05); }
.trust-item { transition: background 0.15s ease; }
.trust-item:hover { background: #FAFBFC; }
.benefit { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.benefit:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(12,58,78,0.07); border-color: #CBD8E0; }
.offer { transition: background 0.15s ease; }
.request-phone { transition: opacity 0.15s ease; }
.request-phone:hover { opacity: 0.85; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --- Reduced motion: strip all motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   HUGHES LAYOUT VARIANT — problem-led humidity section + zigzag services.
   =================================================================== */

/* --- Florida humidity / IAQ problem section (leads the page) --- */
.humidity {
  padding: 4rem 3rem;
  background: linear-gradient(160deg, #EAF1F5 0%, #E0EBF0 55%, #DBE9EF 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.humidity-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.sec-tag.blue { color: var(--navy); }
.humidity-h { font-family: var(--font-serif); font-size: 34px; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1rem; }
.humidity-h .clammy { color: var(--accent-600); font-style: italic; }
.humidity-p { font-size: 15.5px; color: var(--steel); line-height: 1.75; font-weight: 300; max-width: 520px; margin-bottom: 1.5rem; }
.humidity-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hum-point { display: flex; align-items: flex-start; gap: 0.7rem; background: rgba(255,255,255,0.7); border: 1px solid #CFDEE6; border-radius: 10px; padding: 0.85rem 1rem; font-size: 13px; color: var(--steel); line-height: 1.5; font-weight: 400; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.hum-point:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(12,58,78,0.08); }
.hum-point .ic { color: var(--navy); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.hum-point strong { color: var(--ink); font-weight: 600; }

/* Humidity visual card (self-contained SVG "clammy home" gauge) */
.humidity-visual { position: relative; }
.hum-card {
  position: relative; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 100%);
  border-radius: 18px; padding: 1.75rem; overflow: hidden;
  box-shadow: 0 22px 48px rgba(12,41,58,0.22);
}
.hum-card::after { content: ""; position: absolute; left: -60px; bottom: -70px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(143,208,234,0.16), transparent 70%); }
.hum-illu { display: block; width: 100%; height: auto; position: relative; z-index: 1; }
.hum-readout { position: relative; z-index: 1; display: flex; gap: 0.75rem; margin-top: 1.1rem; }
.hum-stat { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 0.85rem 0.95rem; }
.hum-stat .hs-num { font-family: var(--font-serif); font-size: 26px; color: #fff; line-height: 1; }
.hum-stat .hs-num.warm { color: var(--accent); }
.hum-stat .hs-num.cool { color: #8FD0EA; }
.hum-stat .hs-lab { font-size: 11px; color: rgba(255,255,255,0.68); margin-top: 5px; letter-spacing: 0.02em; }

/* --- Services as alternating full-width zigzag rows --- */
.svc-rows { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.25rem; }
.svc-row { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2.75rem; align-items: center; }
.svc-row .svc-media { order: 0; }
.svc-row .svc-body  { order: 1; }
.svc-row:nth-child(even) .svc-media { order: 1; }
.svc-row:nth-child(even) .svc-body  { order: 0; }

.svc-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 260px; border-radius: 16px; overflow: hidden;
}
.svc-media.cool  { background: linear-gradient(135deg, var(--navy) 0%, #1C6A83 100%); }
.svc-media.steel { background: linear-gradient(135deg, #223B4D 0%, var(--steel) 100%); }
.svc-media::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(143,208,234,0.22), transparent 66%); }
.svc-media::after  { content: ""; position: absolute; right: -34px; bottom: -46px; width: 190px; height: 190px; border: 1.5px solid rgba(255,255,255,0.10); border-radius: 50%; }
.svc-illu { width: 118px; height: 118px; color: #C7E6F2; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }

.svc-body { display: flex; flex-direction: column; }
.svc-num { font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: var(--accent-600); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.svc-h2 { font-family: var(--font-serif); font-size: 24px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.6rem; line-height: 1.2; }
.svc-desc2 { font-size: 14.5px; color: var(--steel); line-height: 1.7; font-weight: 300; max-width: 480px; margin-bottom: 0.9rem; }
.svc-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--navy); text-decoration: none; }
.svc-link .ic { font-size: 16px; transition: transform 0.18s ease; }
.svc-link:hover .ic { transform: translateX(3px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { gap: 0; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  .h1 { font-size: 40px; }
  .hero-left { padding: 3rem 1.5rem; }
  .request { padding: 3rem 1.5rem; }
  .request-inner { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .temp-strip { grid-template-columns: 1fr; }
  .strip-heat { border-right: none; border-bottom: 1px solid var(--line); }
  .offers { grid-template-columns: 1fr; }
  .offer { border-right: none; border-bottom: 1px solid var(--line); }
  .footer { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .services { padding: 3rem 1.5rem; }
  .about { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .energy { padding: 3rem 1.5rem; }
  .energy-grid { grid-template-columns: 1fr 1fr; }
  .ft-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 4px; text-align: center; }
  .page-hero { padding: 3.5rem 1.5rem; }
  .page-h1 { font-size: 34px; }
  .page-section { padding: 3rem 1.5rem; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .demo-note-strip { padding: 1rem 1.5rem; }
  .creds { padding: 1.25rem 1.5rem; }
  .creds-inner { gap: 0.75rem 1.5rem; }
  .cred-sep { display: none; }
  .reviews { padding: 3rem 1.5rem; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(3) { display: none; }
  .financing { padding: 2.5rem 1.5rem; }
  .financing-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .faq { padding: 3rem 1.5rem; }
  .offers-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 0 1rem; }
  .logo-sub { display: none; }
  .nav-cta { padding: 8px 14px; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .energy-grid { grid-template-columns: 1fr; }
  .h1 { font-size: 33px; }
  .btns { gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .request-h { font-size: 28px; }
  .cta-strip .btn-primary { width: 100%; justify-content: center; }
  .reviews-head { flex-direction: column; align-items: flex-start; }

  /* Sticky dual-path call bar — emergency callers find the number instantly */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: var(--paper); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(12,41,58,0.12);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; font-size: 14.5px; font-weight: 600; text-decoration: none; }
  .mobile-bar .mb-call { background: var(--accent); color: #fff; }
  .mobile-bar .mb-quote { background: var(--paper); color: var(--navy); border-left: 1px solid var(--line); }
  .mobile-bar .ic { font-size: 17px; }
  body { padding-bottom: 60px; }
  footer { margin-bottom: 4px; }
}

/* --- Hughes layout-variant responsive (split hero, humidity, zigzag) --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-left { max-width: none; padding: 3rem 1.5rem; }
  .hero-right { min-height: 240px; order: 2; }
  .hero-seam { display: none; }
  .hero-chip { right: 1rem; bottom: 1rem; }

  .humidity { padding: 3rem 1.5rem; }
  .humidity-inner { grid-template-columns: 1fr; gap: 2rem; }
  .humidity-visual { max-width: 460px; }

  .svc-row { grid-template-columns: 1fr; gap: 1.25rem; }
  /* keep media above copy on every row when stacked */
  .svc-row .svc-media, .svc-row:nth-child(even) .svc-media { order: 0; }
  .svc-row .svc-body,  .svc-row:nth-child(even) .svc-body  { order: 1; }
  .svc-media { min-height: 200px; }
  .svc-illu { width: 96px; height: 96px; }
}
@media (max-width: 600px) {
  .hero-left { padding: 2.5rem 1.25rem; }
  .humidity-h { font-size: 27px; }
  .humidity-points { grid-template-columns: 1fr; }
  .hum-readout { flex-direction: column; }
  .svc-h2 { font-size: 21px; }
}
