/* Customer Comfort Heating & Cooling, site stylesheet
   Brand palette: Red #EB001B, Ink #161616, white, light greys. Variable names kept from the first draft. */

:root {
  --navy: #161616;        /* ink: the black from the logo lockup */
  --navy-deep: #0A0A0A;
  --navy-soft: #3A3A3A;
  --ember: #EB001B;       /* Customer Comfort red, sampled from the logo */
  --ember-dark: #B80015;
  --ember-tint: #FDE9EB;
  --frost: #F1F1F1;
  --frost-deep: #D6D6D6;
  --mist: #F7F7F7;
  --line: #E2E2E2;
  --slate: #1C1C1C;
  --slate-soft: #5B5B5B;
  --white: #FFFFFF;
  --ok: #2E8B57;
  --shadow: 0 10px 30px rgba(20, 48, 79, 0.10);
  --shadow-sm: 0 3px 10px rgba(0,0,0,0.06);
  --radius: 6px;
  --display: "Barlow Semi Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Public Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --wrap: 1180px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember-dark); }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 1.2rem; color: var(--slate-soft); max-width: 62ch; }
.measure { max-width: 66ch; }
.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ember-dark);
  margin-bottom: 0.6rem;
  display: block;
}
.num { font-variant-numeric: tabular-nums; }
.muted { color: var(--slate-soft); }
.small { font-size: 0.9rem; }
.center { text-align: center; }
.center .lede, .center .measure { margin-left: auto; margin-right: auto; }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.band-mist { background: var(--mist); }
.band-frost { background: var(--frost); }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: var(--white); }
.band-navy .eyebrow { color: #FF4A5C; }
.band-navy a { color: var(--white); }
.band-navy .muted { color: #BDBDBD; }
.section-head { margin-bottom: 2.25rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 700; font-size: 1.05rem; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: var(--radius);
  border: 2px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-ember { background: var(--ember); color: var(--white); box-shadow: 0 4px 14px rgba(235,0,27,.3); }
.btn-ember:hover { background: var(--ember-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-lg { font-size: 1.2rem; padding: 1.1rem 1.9rem; }
.btn-sm { font-size: 0.9rem; padding: 0.65rem 1rem; }
.btn svg { width: 1.1em; height: 1.1em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Top bar + header */
.topbar { background: var(--navy-deep); color: #BDBDBD; font-size: 0.88rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 36px; }
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar .motto { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: #FF4A5C; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--navy); flex-shrink: 0; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-name { font-family: var(--display); text-transform: uppercase; font-weight: 800; font-size: 1.45rem; line-height: 0.95; letter-spacing: 0.01em; }
.brand-name small { display: block; font-size: 0.72rem; letter-spacing: 0.16em; font-weight: 600; color: var(--ember-dark); margin-top: 3px; }

.nav { margin-left: auto; }
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.15rem; }
.nav > ul > li { position: relative; }
.nav a, .nav button {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; font-size: 1rem;
  color: var(--navy); text-decoration: none; padding: .7rem .65rem; background: none; border: 0; cursor: pointer; border-radius: 4px; white-space: nowrap;
}
.nav a:hover, .nav button:hover, .nav li.open > button { background: var(--mist); color: var(--ember-dark); }
.nav button svg { width: .8em; height: .8em; transition: transform .15s; }
.nav li.open > button svg { transform: rotate(180deg); }
.nav .sub { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); padding: .5rem; margin: 0; list-style: none; display: none; }
.nav li.open > .sub { display: block; }
.nav .sub a { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; font-weight: 500; font-size: .97rem; padding: .55rem .8rem; }
.nav .sub a:hover { background: var(--ember-tint); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--navy); text-decoration: none; letter-spacing: .01em; white-space: nowrap; }
.header-phone svg { width: 1.2rem; height: 1.2rem; color: var(--ember); }
.header-phone:hover { color: var(--ember-dark); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 2px solid var(--navy); border-radius: var(--radius); padding: .45rem .6rem; cursor: pointer; color: var(--navy); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1400px) and (min-width: 1081px) {
  .nav a, .nav button { font-size: .9rem; padding: .7rem .45rem; letter-spacing: .03em; }
  .header-phone { font-size: 1.1rem; }
  .header-cta .btn { font-size: .92rem; padding: .8rem 1rem; }
  .site-header .wrap { gap: 1rem; }
  .brand-name { font-size: 1.25rem; }
}
@media (max-width: 1080px) {
  .topbar .motto { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); max-height: calc(100vh - 84px); overflow: auto; }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; gap: 0; padding: .5rem 1rem 1rem; }
  .nav > ul > li { border-bottom: 1px solid var(--line); }
  .nav a, .nav button { width: 100%; justify-content: space-between; padding: .9rem .5rem; }
  .nav .sub { position: static; box-shadow: none; border: 0; padding: 0 0 .5rem .75rem; }
}
@media (max-width: 720px) {
  .topbar .wrap > span:first-child { display: none; }
  .topbar .wrap { justify-content: center; }
}
@media (max-width: 560px) {
  .header-phone { display: none; }
  .header-cta .btn { font-size: .85rem; padding: .65rem .8rem; }
  .header-cta .btn svg { display: none; }
  .brand-name { font-size: 1.1rem; }
  .brand-mark { width: 38px; height: 38px; }
  .site-header .wrap { gap: .6rem; min-height: 68px; }
  .nav-toggle { margin-left: 0; padding: .4rem .5rem; }
}

/* Mobile sticky call bar */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--white); border-top: 1px solid var(--line); padding: .6rem .75rem; gap: .6rem; box-shadow: 0 -4px 16px rgba(0,0,0,.12); }
.mobile-bar .btn { flex: 1; font-size: .95rem; padding: .85rem .5rem; }
@media (max-width: 720px) { .mobile-bar { display: flex; } body { padding-bottom: 72px; } }

/* Hero */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(900px 500px at 80% 20%, rgba(235,0,27,.35), transparent 60%),
  radial-gradient(700px 500px at 10% 90%, rgba(255,255,255,.06), transparent 60%); }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: #FF4A5C; }
.hero .lede { color: #D9D9D9; font-size: 1.25rem; }
.hero-points { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .5rem; }
.hero-points li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1.05rem; }
.hero-points svg { width: 1.3rem; height: 1.3rem; flex: none; color: #FF4A5C; margin-top: .15rem; }
.offer-card { background: var(--white); color: var(--slate); border-radius: 10px; padding: 1.75rem; box-shadow: 0 25px 60px rgba(0,0,0,.35); position: relative; }
.offer-card .tag { position: absolute; top: -14px; left: 1.5rem; background: var(--ember); color: var(--white); font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .85rem; padding: .35rem .8rem; border-radius: 4px; }
.offer-card h2 { font-size: 2rem; margin: .5rem 0 .25rem; }
.offer-price { display: flex; align-items: baseline; gap: .75rem; margin: .75rem 0 1rem; }
.offer-price .price { font-family: var(--display); font-weight: 800; font-size: 3.2rem; color: var(--ember-dark); line-height: 1; }
.offer-price .worth { color: var(--slate-soft); text-decoration: line-through; font-size: 1.05rem; }
.offer-card ul { margin: 0 0 1.25rem; padding-left: 1.2rem; }
.offer-card li { margin-bottom: .3rem; }
.offer-card .fine { font-size: .82rem; color: var(--slate-soft); margin-top: 1rem; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Announcement strip */
.strip { background: var(--ember); color: var(--white); }
.strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem 1.5rem; padding: .85rem 0; text-align: center; }
.strip strong { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; }
.strip a { color: var(--white); font-weight: 700; }

/* Service cards */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .75rem; }
.card h3 { margin: 0; }
.card .icon { width: 64px; height: 64px; border-radius: 14px; background: var(--ember); color: var(--white); display: grid; place-items: center; }
.card .icon svg { width: 34px; height: 34px; }
.card ul.links { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.card ul.links a { text-decoration: none; display: flex; align-items: center; gap: .4rem; color: var(--slate); }
.card ul.links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); flex: none; }
.card ul.links a:hover { color: var(--ember-dark); text-decoration: underline; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-ember { border-top: 5px solid var(--ember); }

/* Offer tiles */
.tile { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tile-head { background: var(--navy); color: var(--white); padding: 1.25rem 1.25rem 1rem; }
.tile-head .val { font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; color: #FF4A5C; }
.tile-head .what { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 1.15rem; margin-top: .3rem; letter-spacing: .02em; }
.tile-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.tile-body p { font-size: .97rem; }
.tile-body .fine { font-size: .8rem; color: var(--slate-soft); }
.tile-body .btn { margin-top: auto; align-self: flex-start; }

/* Reviews */
.review { background: var(--white); border-radius: 10px; padding: 1.5rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .75rem; }
.stars { color: #F2A900; display: flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; }
.review blockquote { margin: 0; font-size: 1.02rem; }
.review cite { font-style: normal; font-weight: 700; color: var(--navy); font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; }
.review .placeholder-note { font-size: .8rem; color: var(--ember-dark); background: var(--ember-tint); padding: .3rem .5rem; border-radius: 4px; align-self: flex-start; }
.rating-summary { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.rating-summary .big { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; }

/* Promise / pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 1.5rem; border-left: 4px solid var(--ember); background: rgba(255,255,255,.06); border-radius: 0 8px 8px 0; }
.pillar h3 { color: var(--white); margin-bottom: .4rem; }
.pillar p { color: #D9D9D9; margin: 0; }

/* Split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } .split.reverse > :first-child { order: 0; } }

/* Photo placeholder (swap for a real photo) */
.photo { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; background:
  linear-gradient(135deg, #F4F4F4 0%, #EBEBEB 50%, #DCDCDC 100%);
  border: 2px dashed var(--frost-deep); display: grid; place-items: center; overflow: hidden; }
.photo.wide { aspect-ratio: 16 / 9; }
.photo.tall { aspect-ratio: 3 / 4; }
.photo.square { aspect-ratio: 1; }
.photo .cap { text-align: center; padding: 1.25rem; color: var(--slate-soft); font-size: .92rem; max-width: 30ch; }
.photo .cap strong { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--ember-dark); margin-bottom: .3rem; }
.photo .cap svg { width: 40px; height: 40px; margin: 0 auto .5rem; color: var(--frost-deep); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo.polaroid { transform: rotate(-2deg); box-shadow: var(--shadow); border: 10px solid var(--white); border-bottom-width: 42px; border-radius: 3px; }

/* Checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 2rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; }
.checks svg { width: 1.35rem; height: 1.35rem; color: var(--ember); flex: none; margin-top: .15rem; }
@media (max-width: 700px) { .checks { grid-template-columns: 1fr; } }
.checks.one { grid-template-columns: 1fr; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.stat .v { font-family: var(--display); font-weight: 800; font-size: 2.8rem; line-height: 1; color: var(--ember-dark); }
.stat .l { font-size: .95rem; color: var(--slate-soft); margin-top: .4rem; }

/* Service area */
.area { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .area { grid-template-columns: 1fr; } }
.map { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; background: var(--frost); }
.map iframe { width: 100%; height: 100%; border: 0; }
.towns { columns: 3; column-gap: 1.5rem; list-style: none; margin: 0 0 1.5rem; padding: 0; font-size: .97rem; }
.towns li { break-inside: avoid; padding: .15rem 0; display: flex; gap: .4rem; align-items: center; }
.towns li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ember); flex: none; }
@media (max-width: 600px) { .towns { columns: 2; } }

/* Financing */
.fin-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .fin-points { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fin-points { grid-template-columns: 1fr; } }
.fin-point { background: var(--white); border-radius: 10px; padding: 1.5rem; text-align: center; border: 1px solid var(--line); }
.fin-point svg { width: 40px; height: 40px; margin: 0 auto .75rem; color: var(--ember); }
.fin-point h4 { margin-bottom: .3rem; }
.fin-point p { font-size: .93rem; color: var(--slate-soft); margin: 0; }

/* Plan */
.plan-box { background: var(--white); color: var(--slate); border-radius: 12px; padding: 2rem; box-shadow: var(--shadow); }
.plan-box h3 { margin-bottom: .25rem; }
.plan-price { font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--ember-dark); line-height: 1; }
.plan-price small { font-size: 1.1rem; color: var(--slate-soft); font-weight: 600; }

/* Contact */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.call-box { background: var(--navy); color: var(--white); border-radius: 12px; padding: 2rem; }
.call-box h3 { color: var(--white); }
.call-box .big-phone { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: #FF4A5C; text-decoration: none; display: block; margin: .5rem 0 1rem; line-height: 1; }
.call-box .big-phone:hover { color: var(--white); }
.call-box address { font-style: normal; color: #D9D9D9; line-height: 1.5; }
.hours { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .25rem; color: #D9D9D9; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed rgba(255,255,255,.18); padding: .25rem 0; }

form.lead { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; box-shadow: var(--shadow-sm); display: grid; gap: 1rem; }
form.lead .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { form.lead .row { grid-template-columns: 1fr; } }
form.lead label { display: grid; gap: .3rem; font-weight: 600; font-size: .92rem; }
form.lead input, form.lead select, form.lead textarea { font: inherit; padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--slate); width: 100%; }
form.lead input:focus, form.lead select:focus, form.lead textarea:focus { border-color: var(--ember); outline: none; box-shadow: 0 0 0 3px rgba(235,0,27,.18); }
form.lead .consent { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .85rem; color: var(--slate-soft); }
form.lead .consent input { width: auto; margin-top: .2rem; }
.hp { position: absolute; left: -9999px; }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 85% 30%, rgba(235,0,27,.3), transparent 60%); }
.page-hero .wrap { position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) 0; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center; }
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: #D9D9D9; }
.page-hero .eyebrow { color: #FF4A5C; }
@media (max-width: 860px) { .page-hero .wrap { grid-template-columns: 1fr; } .page-hero .photo { display: none; } }
.crumbs { font-size: .85rem; color: #BDBDBD; margin-bottom: .75rem; }
.crumbs a { color: #BDBDBD; }

/* Service detail blocks */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 1px solid var(--line); }
.service-block:first-of-type { border-top: 0; }
.service-block.reverse > :first-child { order: 2; }
@media (max-width: 860px) { .service-block { grid-template-columns: 1fr; gap: 1.75rem; } .service-block.reverse > :first-child { order: 0; } }
.service-block h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.service-block ul { padding-left: 1.2rem; margin: .75rem 0 1.25rem; }
.service-block li { margin-bottom: .3rem; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 8px; background: var(--white); margin-bottom: .75rem; }
.faq summary { cursor: pointer; padding: 1rem 1.25rem; font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 1.1rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--ember); }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 1.25rem 1.25rem; }

/* Promise box */
.promise { border: 2px solid var(--ember); border-radius: 12px; padding: 1.75rem; background: var(--ember-tint); }
.promise h3 { color: var(--ember-dark); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.5rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 1.25rem; width: 34px; height: 34px; border-radius: 50%; background: var(--ember); color: var(--white); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.step h3 { margin-top: .5rem; }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1000px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.member { text-align: center; }
.member .photo { aspect-ratio: 1; border-radius: 50%; width: 180px; margin: 0 auto 1rem; }
.member h3 { margin-bottom: .1rem; }
.member .role { color: var(--ember-dark); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--display); }

/* Table */
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: .97rem; background: var(--white); }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; color: var(--navy); background: var(--mist); }

/* Bottom CTA band */
.cta-band { background: linear-gradient(120deg, #B80015, #EB001B); color: var(--white); }
.cta-band .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 2.5rem 0; }
.cta-band h2 { color: var(--white); margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { margin: .25rem 0 0; color: #FFD5D9; }
.cta-band .btn-navy { box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.cta-band .btn-outline-light:hover { color: var(--ember-dark); }

/* Footer */
.site-footer { background: var(--navy-deep); color: #BDBDBD; padding: 3.5rem 0 1.5rem; font-size: .95rem; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: #FF4A5C; text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.site-footer .brand { color: var(--white); margin-bottom: 1rem; }
.site-footer .brand-name small { color: #FF4A5C; }
.social { display: flex; gap: .75rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.social a:hover { background: var(--ember); color: var(--white); }
.social svg { width: 20px; height: 20px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 1.5rem; font-size: .85rem; }
.foot-bottom .motto { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; color: #FF4A5C; font-weight: 700; }

/* Bracket highlight: unconfirmed numbers show with a subtle underline during review. Remove .review-mode from <body> when live. */
body.review-mode .tbc { background: #FFF4C2; border-bottom: 2px dotted #C9A200; border-radius: 2px; padding: 0 2px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Refinements */
.split .stats { grid-template-columns: repeat(2, 1fr); }
.area { align-items: stretch; }
.map { aspect-ratio: auto; min-height: 380px; height: 100%; }
@media (max-width: 900px) { .map { height: auto; aspect-ratio: 4 / 3; } }
.plan-box .muted { color: var(--slate-soft); }
.plan-box .eyebrow { color: var(--ember-dark); }
.call-box a { color: var(--white); }
.call-box a.big-phone { color: #FF4A5C; }
.call-box .tbc, .band-navy .tbc, .hero .tbc:not(.price):not(.worth) { background: rgba(255, 244, 194, .18); border-color: #F4D35E; }
.hero .offer-card .tbc { background: #FFF4C2; border-color: #C9A200; }
.card ul.links a { align-items: flex-start; }
.card ul.links a::before { margin-top: .6em; }
.area > * { min-width: 0; }
@media (max-width: 900px) { .map { min-height: 0; width: 100%; } }
.nav a, .nav button { line-height: 1.2; min-height: 44px; }
[id] { scroll-margin-top: 110px; }

/* Logo images */
.brand img { height: 52px; width: auto; display: block; max-width: none; }
.site-footer .brand img { height: 46px; }
@media (max-width: 560px) { .brand img { height: 38px; } }
.hero-logo { position: absolute; right: -3%; top: 50%; transform: translateY(-50%) rotate(-4deg); width: 44%; max-width: 620px; opacity: .07; pointer-events: none; }
.tile-head .val { color: #FF4A5C; }
.stars { color: #F2A900; }
.band-navy .pillar { background: rgba(255,255,255,.05); }
.topbar .badge { display: inline-block; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; padding: 0 .4rem; margin-left: .5rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
body.review-mode .call-box .tbc, body.review-mode .band-navy .tbc, body.review-mode .hero .fine .tbc, body.review-mode .hero .eyebrow .tbc { background: rgba(255,244,194,.18); border-color: #F4D35E; color: #FFE7A0; }
.brand img { height: 58px; }

.header-phone svg { width: 20px; height: 20px; flex: none; }

/* Legal pages (privacy, terms) */
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.legal-toc { position: sticky; top: 96px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.legal-toc ol { margin: .5rem 0 1rem; padding-left: 1.25rem; font-size: .92rem; line-height: 1.5; }
.legal-toc li { margin: .3rem 0; }
.legal-toc a { text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-body h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.legal-body section { margin-top: 2.5rem; scroll-margin-top: 96px; }
.legal-body h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); padding-top: 1.25rem; border-top: 1px solid var(--line); }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.5rem; text-transform: none; letter-spacing: 0; font-family: var(--body); font-weight: 700; }
.legal-body ul { padding-left: 1.25rem; }
.legal-body li { margin: .4rem 0; }
.legal-box { background: var(--ember-tint); border-left: 4px solid var(--ember); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1rem 0 1.25rem; font-size: .95rem; }
.legal-box p { margin: 0; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-toc { position: static; }
}
/* Real photos in slots */
.photo.has-img { border: 0; background: none; }
.photo.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo .cap code { display: block; margin-top: .4rem; font-size: .75rem; color: var(--slate-soft); }
.member .photo.has-img { border-radius: 50%; }
.service-block.no-photo { grid-template-columns: 1fr; }
.service-block.no-photo > div { max-width: 70ch; }
/* Compact circle logo in the header */
.brand img.brand-circle { height: 62px; width: auto; max-width: none; }
@media (max-width: 1400px) and (min-width: 1081px) { .brand img.brand-circle { height: 56px; } }
@media (max-width: 560px) { .brand img.brand-circle { height: 46px; } }
