/* ============================================
   Area Wide AC & Heat — Brand Tokens
   ============================================ */
:root {
  --ice-blue: #3B9FD4;
  --ice-blue-dark: #2678A8;
  --deep-navy: #163A5C;
  --flame-orange: #F2811C;
  --flame-orange-dark: #D6690A;
  --amber: #FFB648;
  --frost-white: #F5FAFD;
  --white: #FFFFFF;
  --charcoal: #24313D;
  --charcoal-soft: #55697A;
  --border-soft: #DCE9F2;
  --shadow-soft: 0 8px 24px rgba(22, 58, 92, 0.08);
  --shadow-lift: 0 16px 36px rgba(22, 58, 92, 0.16);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--frost-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--deep-navy);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; }
a { color: var(--ice-blue-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--navy {
  background: var(--deep-navy);
  color: #DCEAF5;
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--frost { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame-orange-dark);
  background: rgba(242, 129, 28, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: var(--charcoal-soft); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--flame-orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 129, 28, 0.35);
}
.btn-primary:hover { background: var(--flame-orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--deep-navy);
  color: var(--white);
}
.btn-navy:hover { background: #0f2a44; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-navy);
}
.brand img { height: 52px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ice-blue), var(--flame-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--deep-navy);
  font-size: 1.02rem;
}
.phone-pill svg { flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--deep-navy);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .phone-pill span.phone-text { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(59,159,212,0.16), transparent 45%),
              radial-gradient(circle at 85% 15%, rgba(242,129,28,0.14), transparent 40%),
              var(--frost-white);
  padding: 64px 0 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy);
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { flex-shrink: 0; color: var(--ice-blue-dark); }
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-media img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 30px rgba(22,58,92,0.18));
}

/* Comfort Spectrum divider — signature element */
.comfort-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0;
}
.comfort-divider .bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ice-blue) 0%, var(--amber) 52%, var(--flame-orange) 100%);
}
.comfort-divider svg { flex-shrink: 0; }
.comfort-divider.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 0;
}

/* Trust bar */
.trust-bar {
  background: var(--deep-navy);
  color: var(--white);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}
.trust-bar span { display: flex; align-items: center; gap: 8px; }

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(59,159,212,0.15), rgba(242,129,28,0.15));
  color: var(--ice-blue-dark);
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--charcoal-soft); font-size: 0.98rem; margin-bottom: 0; }

/* Process steps (real sequence — numbering justified) */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process .step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  border: 1px solid var(--border-soft);
  text-align: left;
}
.process .step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  background: var(--flame-orange);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.process .step:nth-child(even)::before { background: var(--ice-blue); }
.process .step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process .step p { font-size: 0.92rem; color: var(--charcoal-soft); margin-bottom: 0; }

/* About / owner */
.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--frost-white);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep-navy);
}
.badge svg { color: var(--flame-orange-dark); flex-shrink: 0; }
.owner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}
.owner-card .role {
  color: var(--flame-orange-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* Service area */
.town-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.town-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.town-card:hover { border-color: var(--ice-blue); transform: translateY(-3px); }
.town-card .town-name { font-weight: 700; color: var(--deep-navy); display: block; font-size: 1.02rem; }
.town-card .town-zip { color: var(--charcoal-soft); font-size: 0.86rem; }
.town-card.current {
  background: linear-gradient(135deg, rgba(59,159,212,0.1), rgba(242,129,28,0.08));
  border-color: var(--flame-orange);
}

/* Contact / CTA */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep-navy);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--frost-white);
  color: var(--charcoal);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 3px solid rgba(59,159,212,0.35);
  border-color: var(--ice-blue);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.contact-info-list svg { flex-shrink: 0; margin-top: 3px; color: var(--flame-orange-dark); }

/* Sticky mobile call bar */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--flame-orange);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-weight: 700;
  font-size: 1.02rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 62px; }
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  color: #C6D9E8;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 30px;
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #C6D9E8; }
.footer-grid a:hover { color: var(--white); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: #9FB8CC;
}

/* Fade-in on load */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .process { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 10px 16px; }
}
