/* Reyes Repairs Heating & Air — tokens come from the logo: carbon black, chrome, flame red, frost blue.
   Type rule: the italic uppercase display face is reserved for the H1 and the brand. Everything a
   visitor has to READ (section headings, lists, FAQ, contact) is upright sentence case. */
:root {
  --bg: #08090b;
  --panel: #101216;
  --panel-2: #15181d;
  --line: #2a2e37;
  --text: #eef1f4;
  --soft: #d2d8df;
  --muted: #aab2bd;
  --heat: #e3261b;
  --heat-text: #ff6b61;
  --cool: #2a86f0;
  --cool-text: #6db0ff;
  --accent: var(--heat);
  --accent-text: var(--heat-text);
  --display: "Kanit", "Arial Black", sans-serif;
  --label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;
  --wrap: 1160px;
}
[data-mode="cool"] { --accent: var(--cool); --accent-text: var(--cool-text); }
[data-mode="heat"] { --accent: var(--heat); --accent-text: var(--heat-text); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 1.0625rem/1.65 var(--body); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; color: #000; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.narrow { max-width: 800px; }
.t-heat { color: var(--heat-text); } .t-cool { color: var(--cool-text); }
.break { overflow-wrap: anywhere; }

/* ── type ── */
h1 { font: italic 800 clamp(2rem, 4.6vw, 3.4rem)/1.05 var(--display); text-transform: uppercase; letter-spacing: -.005em; text-wrap: balance; }
.h2, .cta h2 { font: 700 clamp(1.5rem, 2.6vw, 2rem)/1.2 var(--body); letter-spacing: -.01em; text-wrap: balance; }
.h2 { margin-bottom: 18px; }
h3 { font: 600 1.15rem/1.3 var(--body); }
.eyebrow { font: 700 .95rem/1 var(--label); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.lede { font-size: 1.2rem; line-height: 1.6; color: var(--soft); max-width: 62ch; margin-top: 18px; }
.prose { color: var(--soft); max-width: 64ch; }
.prose.note { margin-top: 22px; padding-left: 16px; border-left: 3px solid var(--line); color: var(--muted); }
.small { font-size: .95rem; color: var(--muted); margin-top: 16px; }
.small a, .prose a, .lede a, .review-note a { color: var(--text); text-underline-offset: 3px; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; font: 600 .95rem/1 var(--label); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #5a616c; }
.crumbs a { text-decoration: none; } .crumbs a:hover { color: var(--text); text-decoration: underline; }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font: 700 1.05rem/1.1 var(--label); letter-spacing: .06em; text-transform: uppercase; text-decoration: none; padding: 13px 20px; border: 2px solid transparent; cursor: pointer; transform: skewX(-10deg); transition: background .2s, border-color .2s, color .2s; text-align: center; }
.btn > * { transform: skewX(10deg); }
.btn-call { background: #d02015; color: #fff; white-space: nowrap; } /* 5:1 on white text */
.btn-call:hover { background: #b81b11; }
.btn-ghost { border-color: #5a616c; color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); }
.btn-lg { padding: 16px 24px; font-size: 1.12rem; }

/* ── header ── */
.top { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 20px; padding: 10px max(20px, calc((100% - var(--wrap)) / 2)); background: rgba(8, 9, 11, .95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; flex-shrink: 0; }
.brand img { width: 84px; mix-blend-mode: lighten; }
.brand-name { font: italic 800 1.12rem/1 var(--display); text-transform: uppercase; white-space: nowrap; }
.brand-name small { display: block; font: 700 .78rem/1 var(--label); letter-spacing: .2em; margin-top: 5px; color: var(--muted); font-style: normal; }
.nav { display: flex; gap: 18px; }
.nav a { font: 600 .98rem/1 var(--label); letter-spacing: .05em; text-transform: uppercase; text-decoration: none; color: #c9cfd7; padding: 8px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.nav a:hover, .nav a[aria-current] { color: #fff; border-color: var(--accent); }
.menu-btn { display: none; background: none; border: 1px solid #5a616c; color: var(--text); font: 700 .95rem/1 var(--label); letter-spacing: .1em; text-transform: uppercase; padding: 11px 14px; cursor: pointer; }

/* ── hero ── */
.hero, .phero { position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero { padding: 64px 0 72px; }
.phero { padding: 52px 0 60px; }
.phero-sm { padding-bottom: 44px; }
.phero h1 { max-width: 20ch; }
/* honeycomb from the logo's banner, tinted by the current mode */
.hex { position: absolute; inset: 0 auto 0 0; width: min(520px, 65%); z-index: -1; background: var(--accent); opacity: .4; transition: background .35s;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E") 0 0 / 56px 98px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E") 0 0 / 56px 98px; }
.hero::after, .phero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 0% 40%, transparent 0, var(--bg) 60%); }
.hero-in { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 32px; padding-left: 6px; }
.hero-logo { width: 220px; mix-blend-mode: lighten; margin: 0 auto 18px; }

/* the selector: a small helper panel, never a gate to the rest of the page */
.statbox { background: var(--panel); border: 1px solid var(--line); padding: 20px; }
.stat { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #3a3f49; margin-bottom: 18px; }
.stat-btn { font: 600 1rem/1.25 var(--body); color: var(--muted); background: none; border: 0; padding: 13px 10px; cursor: pointer; transition: background .3s, color .3s; }
.stat-btn[data-set="cool"][aria-pressed="true"] { background: #1f6fd0; color: #fff; }
.stat-btn[data-set="heat"][aria-pressed="true"] { background: #c81f15; color: #fff; }
.stat-btn:not([aria-pressed="true"]):hover { color: #fff; }
.pane[hidden] { display: none; }
.pane-h { font: 600 1.05rem/1.3 var(--body); margin-bottom: 10px; }
.checks li { padding: 8px 0 8px 14px; border-left: 3px solid var(--accent); margin-bottom: 6px; color: var(--soft); transition: border-color .35s; }
.link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; color: var(--accent-text); text-decoration: none; }
.link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ── sections ── */
.sec { padding: 88px 0; }
.sec-alt { background: var(--panel); border-block: 1px solid var(--line); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.path { background: var(--panel); border: 1px solid var(--line); border-top: 4px solid var(--heat); padding: 28px; display: flex; flex-direction: column; }
.path:nth-child(2) { border-top-color: #8d96a3; }
.path:nth-child(3) { border-top-color: var(--cool); }
.path h3 { font-size: 1.4rem; margin-bottom: 8px; }
.path p { color: var(--muted); margin-bottom: 18px; }
.path ul { margin-top: auto; }
.path li + li { border-top: 1px solid var(--line); }
.path a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 0; text-decoration: none; font-weight: 600; }
.path a:hover { color: var(--accent-text); }

.steps { counter-reset: s; display: grid; grid-template-columns: repeat(var(--n, 4), 1fr); gap: 28px; margin-top: 30px; }
.steps li { counter-increment: s; border-top: 2px solid #3a3f49; padding-top: 16px; }
.steps li::before { content: counter(s); font: italic 800 2rem/1 var(--display); color: var(--accent-text); display: block; margin-bottom: 10px; }
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: 1rem; }

.area { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.area-group + .area-group { margin-top: 26px; }
.area-group h3 { font: 700 .95rem/1 var(--label); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.area-cols { display: grid; gap: 8px; }
.towns { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0 24px; }
.towns li { padding: 10px 0; border-bottom: 1px solid var(--line); }

.who { max-width: 70ch; color: var(--soft); margin-bottom: 40px; padding: 18px 20px; background: var(--panel); border-left: 3px solid var(--accent); }
.who strong { color: var(--text); }
.symptoms { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 26px; }
.symptoms > div { background: var(--bg); padding: 24px; }
.symptoms dt { font: 600 1.12rem/1.3 var(--body); margin-bottom: 8px; padding-left: 12px; border-left: 3px solid var(--accent); }
[data-mode="both"] .symptoms > div:nth-child(even) dt { border-color: var(--cool); }
.symptoms dd { color: var(--muted); font-size: 1rem; }
.ticks li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line); color: var(--soft); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 14px; height: 8px; border: solid var(--accent); border-width: 0 0 3px 3px; transform: rotate(-45deg); }
.safety { margin-top: 28px; padding: 16px 20px; border: 1px solid #6a2a25; background: #1a0f0e; color: var(--soft); max-width: 80ch; }
.safety strong { color: var(--heat-text); }

details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 20px 40px 20px 0; font-weight: 600; font-size: 1.1rem; line-height: 1.4; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font: 400 1.8rem/1 var(--body); color: var(--accent-text); }
details[open] summary::after { content: "–"; }
details p { color: var(--soft); padding: 0 0 24px; max-width: 68ch; }

/* ── CTA band: the two diagonal slashes from the logo banner ── */
.cta { position: relative; overflow: hidden; background: var(--panel-2); border-top: 1px solid var(--line); padding: 60px 0; }
.cta::before, .cta::after { content: ""; position: absolute; top: -20%; bottom: -20%; width: 30px; transform: skewX(-24deg); }
.cta::before { left: 3%; background: var(--heat); }
.cta::after { left: calc(3% + 46px); background: var(--cool); width: 10px; }
.cta-in { display: flex; flex-wrap: wrap; gap: 26px 48px; align-items: center; justify-content: space-between; padding-left: clamp(80px, 11vw, 140px); }
.cta p { color: var(--muted); margin-top: 8px; max-width: 52ch; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.review-note { padding: 22px 0 0; color: var(--muted); font-size: .98rem; }

/* ── contact ── */
.contact-card { background: var(--panel); border: 1px solid var(--line); padding: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.bigtel { display: block; font: italic 800 clamp(1.9rem, 4vw, 2.5rem)/1 var(--display); text-decoration: none; margin-top: 20px; }
.bigtel:hover { color: var(--heat-text); }
.field { font: 700 .95rem/1 var(--label); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 22px 0 8px; }
select { font: 400 1.05rem/1.4 var(--body); color: var(--text); background: var(--bg); border: 1px solid #5a616c; padding: 13px 14px; border-radius: 0; width: 100%; margin-bottom: 20px; }
.contact-card .btn { margin-left: 6px; }

.gesser-host { margin-top: 26px; min-height: 640px; background: #fff; }
.gesser-host .small { padding: 20px; color: #333; margin: 0; }

/* ── footer ── */
.foot { border-top: 1px solid var(--line); padding: 56px 0 48px; }
.foot-grid { width: min(var(--wrap), 100% - 40px); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.foot-logo { width: 190px; mix-blend-mode: lighten; margin-bottom: 14px; }
.foot p { color: var(--muted); font-size: .98rem; max-width: 44ch; }
.foot h2 { font: 700 .95rem/1 var(--label); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.foot li { padding: 5px 0; } .foot li a { text-decoration: none; } .foot li a:hover { text-decoration: underline; }
.foot .fine { max-width: none; width: min(var(--wrap), 100% - 40px); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: .9rem; }

.callbar { display: none; }

/* ── responsive ── */
@media (max-width: 1320px) {
  .menu-btn { display: block; order: 3; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 20px 16px; max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
}
@media (max-width: 900px) {
  .hero { padding: 40px 0 52px; }
  .hero-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-logo { display: none; }
  .two, .area { grid-template-columns: 1fr; gap: 44px; }
  .paths { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .sec { padding: 60px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-in { padding-left: 0; } .cta::before, .cta::after { opacity: .16; }
}
@media (max-width: 640px) {
  .top-call span { display: none; } .top-call { padding: 12px 14px; }
  .brand img { width: 66px; } .brand-name { font-size: .98rem; } .brand-name small { font-size: .68rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-btns .btn, .cta-btns .btn, .contact-card .btn { width: calc(100% - 12px); }
  /* the fixed bar must never sit on top of content: the page reserves its height */
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .callbar { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); background: rgba(8, 9, 11, .97); border-top: 1px solid var(--line); }
  .callbar .btn { padding: 14px 6px; font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
