/* Best Choice Heating & Air Conditioning — Design DNA
   Register: BRAND
   Mood: San Antonio desert-adobe warmth — a stucco courtyard at dusk, not a
   sterile blue HVAC-tech dashboard.
   Anchor refs: adobe brick wall at golden hour, a wall-mount thermostat dial,
   a Southwest turquoise pendant used sparingly as jewelry, not paint
   Color: warm terracotta-sand canvas, deep umber ink, flame-orange brand accent
   (heating), a small desert-turquoise pop reserved only for cooling mentions
   (Committed palette, warm-dominant — no blue/steel-gray as a base)
   Type: Bitter (slab serif display) + Karla (grotesque-humanist body)
   Layout: asymmetric split-screen hero (text left, dial gauge right)
   Motion: calm, slow draw-in — quint easing
   Signature element: animated thermometer/dial gauge with a sweeping needle,
   settling on a "just right" mark
*/

:root {
  --canvas: oklch(90% 0.035 55);
  --canvas-alt: oklch(85% 0.04 52);
  --panel: oklch(96% 0.02 55);
  --ink: oklch(24% 0.025 40);
  --ink-soft: oklch(42% 0.02 42);
  --flame: oklch(62% 0.18 45);
  --flame-dark: oklch(50% 0.17 42);
  --turquoise: oklch(62% 0.09 195);
  --umber: oklch(30% 0.03 40);
  --line: oklch(74% 0.03 55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Bitter', serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ---- Nav ---- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-brand { font-family: 'Bitter', serif; font-size: 19px; font-weight: 700; }
.nav-brand span { color: var(--flame-dark); }

.nav-links { display: flex; gap: 30px; font-size: 15px; }
.nav-links a { color: var(--ink-soft); transition: color 0.25s ease; }
.nav-links a:hover { color: var(--flame-dark); }

.nav-cta {
  background: var(--flame);
  color: white !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--flame-dark); }

/* ---- Hero: asymmetric split screen ---- */
.hero {
  max-width: 1140px;
  margin: 20px auto 0;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  color: var(--flame-dark);
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-copy .sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--flame);
  color: white;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--flame-dark); }

.btn-secondary {
  border: 2px solid var(--umber);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--umber);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.btn-secondary:hover { border-color: var(--flame); color: var(--flame-dark); }

/* Signature: dial gauge */
.gauge-wrap {
  background: var(--panel);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px oklch(24% 0.025 40 / 0.12);
}
.gauge-svg { width: 100%; max-width: 240px; height: auto; }
.gauge-needle {
  transform-origin: 100px 100px;
  animation: sweep 1.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes sweep {
  0% { transform: rotate(-95deg); }
  60% { transform: rotate(28deg); }
  100% { transform: rotate(8deg); }
}

/* ---- Sections ---- */
section { padding: 76px 0; }
.section-alt { background: var(--umber); color: oklch(92% 0.015 55); }
.section-alt h2, .section-alt .display { color: oklch(96% 0.01 55); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--flame-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; max-width: 640px; }
.section-head p { color: var(--ink-soft); font-size: 17px; max-width: 560px; }
.section-alt .section-head p { color: oklch(80% 0.02 55); }

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.service-card {
  background: var(--panel);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--line);
}
.service-card .num { color: var(--flame-dark); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 12px; display: block; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); }
.service-card.cool { border-top: 3px solid var(--turquoise); }
.service-card.heat { border-top: 3px solid var(--flame); }

/* ---- Trust strip ---- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.trust-strip .big-rating {
  font-family: 'Bitter', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--flame-dark);
  margin-bottom: 8px;
}
.trust-strip p { color: var(--ink-soft); font-size: 15px; max-width: 520px; margin: 0 auto; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--flame);
  color: white;
  text-align: center;
  padding: 72px 32px;
  border-radius: 20px;
}
.cta-band h2 { color: white; font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 14px; }
.cta-band p { color: oklch(94% 0.03 45); margin-bottom: 28px; }
.cta-band .btn-primary { background: var(--umber); color: white; }
.cta-band .btn-primary:hover { background: oklch(22% 0.02 40); }

/* ---- Footer ---- */
footer {
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---- Inner page layout ---- */
.page-header {
  padding: 56px 32px 40px;
  max-width: 780px;
  margin: 0 auto;
}
.page-header h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--ink-soft); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.stat-strip .stat {
  padding: 24px;
  background: var(--panel);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.stat strong { font-family: 'Bitter', serif; font-size: 26px; display: block; color: var(--flame-dark); margin-bottom: 6px; }
.stat span { font-size: 14px; color: var(--ink-soft); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 32px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  background: var(--panel);
}
.contact-card a.phone { font-family: 'Bitter', serif; font-size: 28px; color: var(--flame-dark); display: block; margin: 8px 0 24px; }
.contact-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.contact-row:last-child { border-bottom: none; }

form.light-form { display: flex; flex-direction: column; gap: 16px; }
form.light-form label { font-size: 14px; font-weight: 700; color: var(--ink); }
form.light-form input, form.light-form select, form.light-form textarea {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--canvas);
}
form.light-form textarea { resize: vertical; min-height: 90px; }
form.light-form button {
  background: var(--flame);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.25s ease;
}
form.light-form button:hover { background: var(--flame-dark); }

@media (max-width: 780px) {
  .hero { grid-template-columns: 1fr; }
  .services-grid, .stat-strip, .contact-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
