/* ==========================================================================
   KW Heating & Cooling
   Illustration-led brand system. The two mascots carry the identity, so the
   palette is built from them: Kona's charcoal, Woody's gold, on a warm cream,
   anchored by a deep Chicago blue. Coral reads heating, sky reads cooling.
   ========================================================================== */

:root {
  /* Brand */
  --navy:      #123A5E;   /* primary. trust, and a nod to the city flag */
  --navy-2:    #0C2B47;
  --navy-3:    #1D4E78;
  --gold:      #E8A93C;   /* Woody */
  --gold-2:    #F6C978;
  --gold-3:    #C68A24;
  --char:      #2A2A2E;   /* Kona */
  --char-2:    #3E3E45;
  --coral:     #E2603C;   /* heating */
  --coral-2:   #F5D8CE;
  --sky:       #7FBFE8;   /* cooling */
  --sky-2:     #DCEDF8;

  /* Paper */
  --cream:     #FFF8ED;
  --cream-2:   #FDF0DA;
  --cream-3:   #F7E5C8;
  --white:     #FFFFFF;
  --line:      #EBDCC0;
  --line-2:    #F2E6D2;

  /* Ink */
  --ink:       #1B2733;
  --ink-2:     #3D4A57;
  --muted:     #6B7885;
  --muted-2:   #8C97A2;

  /* Type */
  --display: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --body:    "Figtree", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --t-xs:   .78rem;
  --t-sm:   .9rem;
  --t-md:   1rem;
  --t-lg:   1.1rem;
  --t-xl:   clamp(1.25rem, 1.7vw, 1.45rem);
  --t-2xl:  clamp(1.5rem, 2.4vw, 2.05rem);
  --t-3xl:  clamp(1.85rem, 3.3vw, 2.7rem);
  --t-4xl:  clamp(2.2rem, 4.4vw, 3.4rem);
  --t-hero: clamp(2.4rem, 5vw, 4.1rem);

  /* Form */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 30px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(18,58,94,.06), 0 4px 14px rgba(18,58,94,.06);
  --sh:    0 10px 32px rgba(18,58,94,.10), 0 2px 8px rgba(18,58,94,.05);
  --sh-lg: 0 26px 66px rgba(12,43,71,.18), 0 8px 20px rgba(12,43,71,.08);
  --sh-gold: 0 12px 28px rgba(198,138,36,.32);

  --sec-y: clamp(3.5rem, 7.5vw, 6.5rem);
  --hdr-h: 78px;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-md);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--navy);
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: var(--t-hero); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); letter-spacing: -.012em; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--coral); }
::selection { background: var(--gold); color: var(--navy-2); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: calc(var(--hdr-h) + 1.25rem); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: var(--cream);
  padding: .8rem 1.2rem; text-decoration: none; font-weight: 700;
}
.skip:focus { left: 0; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------- layout ---- */
.wrap { width: 100%; max-width: 1260px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.wrap--tight { max-width: 880px; }

.sec { padding-block: var(--sec-y); }
.sec--cream2 { background: var(--cream-2); }
.sec--navy { background: var(--navy); color: rgba(255,248,237,.84); }
.sec--navy h2, .sec--navy h3 { color: var(--cream); }

.head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.head--mid { margin-inline: auto; text-align: center; }
.head p { font-size: var(--t-lg); line-height: 1.7; color: var(--muted); margin: 0; }
.sec--navy .head p { color: rgba(255,248,237,.72); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display);
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--coral); margin-bottom: .85rem;
}
.kicker svg { width: 15px; height: 15px; }
.kicker--gold { color: var(--gold); }

/* ------------------------------------------------------------- buttons ---- */
.btn {
  --bg: var(--navy); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.65rem;
  background: var(--bg); color: var(--fg);
  border: 2px solid transparent; border-radius: var(--r-pill);
  font-family: var(--display); font-size: var(--t-sm); font-weight: 700;
  letter-spacing: .005em; text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: 0 0 17px; }

.btn--gold  { --bg: var(--gold);  --fg: var(--navy-2); }
.btn--gold:hover { box-shadow: var(--sh-gold); }
.btn--coral { --bg: var(--coral); --fg: #FFF6F2; }
.btn--cream { --bg: var(--cream); --fg: var(--navy); }
.btn--out   { --bg: transparent; --fg: var(--navy); border-color: var(--line); }
.btn--out:hover { border-color: var(--navy); box-shadow: none; }
.btn--out-light { --bg: transparent; --fg: var(--cream); border-color: rgba(255,248,237,.4); }
.btn--out-light:hover { background: rgba(255,248,237,.1); border-color: var(--cream); box-shadow: none; }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--t-md); }
.btn--block { width: 100%; }

/* --------------------------------------------------------------- pills ---- */
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .85rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: var(--t-xs); font-weight: 600; color: var(--ink-2);
}
.pill svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--gold-3); }
.pill--light { background: rgba(255,248,237,.12); border-color: rgba(255,248,237,.26); color: var(--cream); }
.pill--light svg { color: var(--gold); }

.chip {
  display: inline-block; padding: .38rem .8rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-pill); font-size: var(--t-sm); color: var(--ink-2);
}

/* --------------------------------------------------------------- forms ---- */
.fld {
  width: 100%; padding: .85rem 1rem;
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: var(--t-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.fld::placeholder { color: var(--muted-2); }
.fld:focus-visible { outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(29,78,120,.16); }
select.fld {
  appearance: none; cursor: pointer; padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7885' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7.5 10 4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 17px;
}
select.fld:invalid { color: var(--muted-2); }
textarea.fld { min-height: 88px; resize: vertical; }

/* Honeypot: off-canvas rather than display:none, which bots look for. */
.honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.fine { font-size: var(--t-xs); line-height: 1.55; color: var(--muted); margin: .85rem 0 0; }
.fine a { color: var(--coral); font-weight: 700; }

.ok { text-align: center; padding: 1.5rem .5rem; }
.ok__tick {
  width: 52px; height: 52px; margin: 0 auto 1rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold); color: var(--navy-2); font-size: 1.5rem; font-weight: 700;
}
.ok p { color: var(--muted); font-size: var(--t-sm); }

/* -------------------------------------------------------------- reveal ---- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.61,.36,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,237,.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1.5px solid transparent;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.hdr.stuck { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.hdr__in { min-height: var(--hdr-h); display: flex; align-items: center; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
/* The mark is a wide two-head lockup, so it needs width rather than a square box
   to stay legible. */
.logo__mk { width: 60px; height: auto; flex: 0 0 60px; }
.logo__tx { display: flex; flex-direction: column; line-height: 1; }
.logo__nm { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: var(--navy); }
.logo__sb { font-size: .55rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-top: .25rem; }
.logo--light .logo__nm { color: var(--cream); }
.logo--light .logo__sb { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav > a, .nav__btn {
  font-family: var(--display); font-size: var(--t-sm); font-weight: 600;
  color: var(--ink-2); text-decoration: none;
  background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav > a:hover, .nav__btn:hover { color: var(--coral); }
.nav__car { width: 14px !important; height: 14px !important; opacity: .5; transition: transform .2s ease; }

.nav__grp { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + .8rem); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 280px; margin: 0; padding: .5rem; list-style: none;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__grp:hover .nav__menu, .nav__grp:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a { display: block; padding: .55rem .7rem; border-radius: 8px; font-size: var(--t-sm); color: var(--ink-2); text-decoration: none; }
.nav__menu a:hover { background: var(--cream-2); color: var(--coral); }

/* Phone treatment. Four Seasons make the number the loudest thing on the page;
   we keep that prominence but give it a considered lockup instead of shouting. */
.hdr__tel { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.hdr__tel svg { width: 30px; height: 30px; flex: 0 0 30px; padding: 7px; border-radius: 50%; background: var(--coral-2); color: var(--coral); }
.hdr__tel span { display: flex; flex-direction: column; line-height: 1.1; }
.hdr__tel small { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hdr__tel b { font-family: var(--display); font-size: 1.02rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; }
.hdr__tel:hover b { color: var(--coral); }

.burger { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 2px; transition: transform .24s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .burger { display: block; }
  .hdr__tel small { display: none; }
  /* Below this the number cannot fit beside the logo and the burger, and the
     sticky bar already carries a call action, so the icon alone does the job. */
  @media (max-width: 620px) { .hdr__tel b { display: none; } }
  .nav {
    position: fixed; inset: var(--hdr-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - var(--hdr-h)); overflow-y: auto; overscroll-behavior: contain;
    background: var(--cream); border-bottom: 1.5px solid var(--line);
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) calc(6rem + env(safe-area-inset-bottom, 0px));
    box-shadow: var(--sh-lg);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav > a, .nav__btn { width: 100%; justify-content: space-between; padding: .95rem .2rem; border-bottom: 1.5px solid var(--line-2); font-size: var(--t-md); }
  .nav__grp { position: static; }
  .nav__menu, .nav__grp:hover .nav__menu, .nav__grp:focus-within .nav__menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; border: 0; box-shadow: none; background: transparent;
    padding: 0 0 .5rem .2rem; display: none;
  }
  .nav__grp.open .nav__menu { display: block; }
  .nav__menu a { padding: .7rem .2rem; color: var(--muted); }
  .nav__btn[aria-expanded="true"] .nav__car { transform: rotate(180deg); }
  .nav__cta { margin-top: 1.1rem; }
  .nav__cta .btn { width: 100%; }
}

/* ==========================================================================
   HERO — cream field, illustration led, no photograph
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--cream); padding-block: clamp(2rem, 4vw, 3.5rem) 0; }
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 78vw; height: 78vw; max-width: 900px; max-height: 900px;
  right: -22vw; top: -30%;
  background: radial-gradient(circle, var(--cream-2) 0%, var(--cream-2) 55%, transparent 70%);
  border-radius: 50%;
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }

.hero__flag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: var(--cream);
  padding: .4rem .9rem .4rem .55rem; border-radius: var(--r-pill);
  font-family: var(--display); font-size: var(--t-xs); font-weight: 700; letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.hero__flag svg { width: 22px; height: 22px; padding: 4px; background: var(--gold); color: var(--navy-2); border-radius: 50%; }
.hero h1 { margin-bottom: .9rem; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero__sub { font-size: var(--t-lg); line-height: 1.68; color: var(--ink-2); max-width: 46ch; margin-bottom: 1.6rem; }

/* Big tappable number, borrowed prominence, premium execution */
.hero__call { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 1.5rem; margin-bottom: 1.5rem; }
.hero__num { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.hero__num svg { width: 40px; height: 40px; flex: 0 0 40px; padding: 9px; border-radius: 50%; background: var(--coral); color: #FFF6F2; }
.hero__num span { display: flex; flex-direction: column; line-height: 1.15; }
.hero__num small { font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero__num b { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.hero__num:hover b { color: var(--coral); }

.hero__pills { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }

.hero__art { position: relative; }
.hero__art img { width: 100%; max-width: 560px; margin-inline: auto; }
.hero__badge {
  position: absolute; z-index: 2; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh); padding: .7rem .95rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero__badge svg { width: 26px; height: 26px; flex: 0 0 26px; padding: 5px; border-radius: 50%; background: var(--sky-2); color: var(--navy-3); }
.hero__badge b { display: block; font-family: var(--display); font-size: var(--t-sm); font-weight: 800; color: var(--navy); line-height: 1.15; }
.hero__badge small { font-size: .68rem; color: var(--muted); }
/* Keep both badges clear of the mascots' faces. */
.hero__badge--a { left: -1%; top: 1%; }
.hero__badge--b { right: -1%; bottom: 14%; }

@media (max-width: 940px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__badge--a { left: -4%; }
  .hero__badge--b { right: -4%; }
}
@media (max-width: 560px) {
  .hero__badge { padding: .55rem .7rem; }
  .hero__badge small { display: none; }
  .hero__num b { font-size: 1.5rem; }
}

/* ---- quick quote bar sitting across the hero base ---- */
.qbar { position: relative; z-index: 2; margin-top: clamp(2rem, 4vw, 3rem); }
.qbar__card {
  background: var(--navy); color: var(--cream);
  border-radius: var(--r-lg); padding: clamp(1.25rem, 2.4vw, 1.75rem);
  box-shadow: var(--sh-lg);
}
.qbar__top { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .8rem; margin-bottom: 1rem; }
.qbar__top h2 { font-size: var(--t-xl); color: var(--cream); margin: 0; }
.qbar__top span { font-size: var(--t-sm); color: rgba(255,248,237,.62); }
.qbar__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: .6rem; align-items: stretch; }
.qbar__row .btn { white-space: nowrap; }
@media (max-width: 1000px) { .qbar__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } .qbar__row .btn { grid-column: 1 / -1; } }
@media (max-width: 560px) { .qbar__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   NEIGHBOURHOOD MARQUEE
   ========================================================================== */
.mq { background: var(--navy-2); color: var(--cream); padding-block: .85rem; overflow: hidden; }
.mq__track { display: flex; gap: 0; width: max-content; animation: mq 46s linear infinite; }
.mq:hover .mq__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .mq__track { animation: none; } }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq__list { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.mq__list li {
  display: inline-flex; align-items: center; gap: .75rem;
  padding-inline: .9rem;
  font-family: var(--display); font-size: var(--t-sm); font-weight: 600;
  color: rgba(255,248,237,.8); white-space: nowrap;
}
.mq__list li::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .65; }

/* ==========================================================================
   OFFERS
   ========================================================================== */
.off__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.off {
  position: relative; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
}
.off--feat { background: var(--navy); border-color: var(--navy); color: rgba(255,248,237,.8); box-shadow: var(--sh-lg); }
.off--feat h3 { color: var(--cream); }
.off__tag {
  position: absolute; top: -.7rem; left: 1.4rem;
  background: var(--gold); color: var(--navy-2);
  font-family: var(--display); font-size: var(--t-xs); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: var(--r-pill);
}
.off__price { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; color: var(--coral); line-height: 1; margin: .2rem 0 .6rem; letter-spacing: -.03em; }
.off--feat .off__price { color: var(--gold); }
.off__price sup { font-size: .5em; font-weight: 700; top: -.7em; }
.off h3 { font-size: var(--t-lg); margin-bottom: .5rem; }
.off p { font-size: var(--t-sm); line-height: 1.65; color: var(--muted); margin-bottom: 1.2rem; }
.off--feat p { color: rgba(255,248,237,.74); }
.off ul { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .45rem; flex: 1; }
.off ul li { display: flex; gap: .5rem; align-items: flex-start; font-size: var(--t-sm); color: var(--ink-2); }
.off--feat ul li { color: rgba(255,248,237,.82); }
.off ul svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: .3rem; color: var(--gold-3); }
.off--feat ul svg { color: var(--gold); }
.off__fine { font-size: var(--t-xs) !important; color: var(--muted-2) !important; margin: .8rem 0 0 !important; }
@media (max-width: 900px) { .off__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ==========================================================================
   CHICAGO HOME TYPE PICKER
   ========================================================================== */
.pick__tabs { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.pick__tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.15rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-pill); cursor: pointer;
  font-family: var(--display); font-size: var(--t-sm); font-weight: 700; color: var(--ink-2);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.pick__tab svg { width: 17px; height: 17px; color: var(--muted); transition: color .18s ease; }
.pick__tab:hover { transform: translateY(-2px); border-color: var(--navy-3); }
.pick__tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.pick__tab[aria-selected="true"] svg { color: var(--gold); }

.pick__panel { display: none; }
.pick__panel.on { display: block; }
.pick__body {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh);
}
.pick__era { font-size: var(--t-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-3); margin-bottom: .5rem; }
.pick__body h3 { font-size: var(--t-2xl); margin-bottom: .7rem; }
.pick__body p { color: var(--muted); line-height: 1.72; font-size: var(--t-sm); }
.pick__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.pick__facts li { display: grid; grid-template-columns: 26px 1fr; gap: .7rem; align-items: start; }
.pick__facts svg { width: 20px; height: 20px; margin-top: .2rem; }
.pick__facts b { display: block; font-family: var(--display); font-size: var(--t-sm); color: var(--navy); }
.pick__facts span { font-size: var(--t-sm); color: var(--muted); line-height: 1.6; }
.pick__facts .ic-warm { color: var(--coral); }
.pick__facts .ic-cool { color: var(--navy-3); }
.pick__facts .ic-ok   { color: var(--gold-3); }
@media (max-width: 860px) { .pick__body { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES — split warm / cool, each fronted by a mascot
   ========================================================================== */
.svc__split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.25rem); }
.svc__col { border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); border: 1.5px solid var(--line); background: var(--white); }
.svc__col--warm { background: linear-gradient(170deg, #FFF3EC 0%, var(--white) 55%); border-color: var(--coral-2); }
.svc__col--cool { background: linear-gradient(170deg, var(--sky-2) 0%, var(--white) 55%); border-color: #CBE2F1; }
.svc__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.svc__mascot { width: 104px; height: auto; flex: 0 0 104px; }
.svc__col h3 { font-size: var(--t-2xl); margin: 0 0 .2rem; }
.svc__who { font-size: var(--t-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.svc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.svc__list li { border-top: 1.5px solid var(--line-2); }
.svc__list li:first-child { border-top: 0; }
.svc__list a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .85rem .2rem; text-decoration: none; color: var(--ink); }
.svc__list a:hover { color: var(--coral); }
.svc__list b { font-family: var(--display); font-size: var(--t-md); font-weight: 700; }
.svc__list span { font-size: var(--t-xs); color: var(--muted); text-align: right; max-width: 22ch; }
@media (max-width: 820px) { .svc__split { grid-template-columns: 1fr; } }

/* ==========================================================================
   MEET THE DOGS
   ========================================================================== */
.dogs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.dog {
  display: grid; grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem); align-items: center;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.25rem, 2.4vw, 1.85rem);
  box-shadow: var(--sh-sm);
}
.dog__art { border-radius: var(--r); padding: .5rem; }
.dog--kona .dog__art { background: var(--sky-2); }
.dog--woody .dog__art { background: #FFF0DC; }
.dog__name { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; margin-bottom: .35rem; }
.dog__name h3 { margin: 0; font-size: var(--t-2xl); }
.dog__role { font-size: var(--t-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.dog p { font-size: var(--t-sm); line-height: 1.7; color: var(--muted); margin-bottom: .9rem; }
.dog dl { margin: 0; display: grid; gap: .3rem; }
.dog dl div { display: flex; gap: .5rem; font-size: var(--t-xs); }
.dog dt { font-weight: 800; color: var(--navy); min-width: 74px; }
.dog dd { margin: 0; color: var(--muted); }
@media (max-width: 900px) { .dogs__grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .dog { grid-template-columns: 1fr; text-align: center; } .dog__art { max-width: 170px; margin-inline: auto; } .dog__name { justify-content: center; } }

/* ==========================================================================
   SPECIALIST VS EVERYTHING-COMPANY
   ========================================================================== */
.vs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 1.75rem); }
.vs__card { border-radius: var(--r-lg); padding: clamp(1.4rem, 2.6vw, 2rem); border: 1.5px solid var(--line); background: var(--white); }
.vs__card--them { background: transparent; border-style: dashed; }
.vs__card--us { background: var(--navy); border-color: var(--navy); color: rgba(255,248,237,.82); box-shadow: var(--sh-lg); }
.vs__card--us h3 { color: var(--cream); }
.vs__lbl { font-size: var(--t-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.vs__card--us .vs__lbl { color: var(--gold); }
.vs__card h3 { font-size: var(--t-xl); margin-bottom: 1.2rem; }
.vs__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.vs__card li { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; font-size: var(--t-sm); line-height: 1.6; color: var(--muted); }
.vs__card--us li { color: rgba(255,248,237,.84); }
.vs__card svg { width: 18px; height: 18px; margin-top: .18rem; }
.vs__card--them svg { color: var(--muted-2); }
.vs__card--us svg { color: var(--gold); }
@media (max-width: 780px) { .vs { grid-template-columns: 1fr; } }

/* ==========================================================================
   CHICAGO CODE BAND
   ========================================================================== */
.code__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.code__item { border-top: 2px solid var(--navy-3); padding-top: 1.25rem; }
.code__big { font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.03em; margin-bottom: .5rem; }
.code__item h3 { font-size: var(--t-lg); margin-bottom: .45rem; }
.code__item p { font-size: var(--t-sm); line-height: 1.7; color: rgba(255,248,237,.68); margin: 0; }
.code__note { margin-top: clamp(1.75rem, 3vw, 2.5rem); padding-top: 1.5rem; border-top: 1px solid var(--navy-3); font-size: var(--t-xs); color: rgba(255,248,237,.5); }
.code__note a { color: var(--gold); }
@media (max-width: 820px) { .code__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.step { position: relative; }
.step__n {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1rem;
  border-radius: 50%; background: var(--gold); color: var(--navy-2);
  font-family: var(--display); font-size: var(--t-md); font-weight: 800;
}
.step h3 { font-size: var(--t-lg); margin-bottom: .4rem; }
.step p { font-size: var(--t-sm); line-height: 1.68; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   REBATES
   ========================================================================== */
.reb { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
.reb__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
.reb__tbl { width: 100%; min-width: 320px; border-collapse: collapse; font-size: var(--t-sm); background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); overflow: hidden; }
.reb__tbl th { text-align: left; padding: .9rem 1.05rem; font-size: var(--t-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--cream-2); }
.reb__tbl td { padding: .85rem 1.05rem; border-top: 1.5px solid var(--line-2); vertical-align: top; }
.reb__u { font-weight: 700; color: var(--navy); }
.reb__a { font-family: var(--display); font-size: var(--t-lg); font-weight: 800; color: var(--coral); text-align: right; white-space: nowrap; }
.reb__aside { background: var(--char); color: rgba(255,248,237,.76); border-radius: var(--r); padding: clamp(1.4rem, 2.4vw, 1.9rem); }
.reb__aside h3 { color: var(--cream); font-size: var(--t-lg); margin-bottom: .65rem; }
.reb__aside p { font-size: var(--t-sm); line-height: 1.7; }
.reb__aside strong { color: var(--gold); }
.reb__src { font-size: var(--t-xs) !important; color: rgba(255,248,237,.45) !important; border-top: 1px solid rgba(255,255,255,.12); padding-top: .85rem; margin-top: 1rem !important; }
@media (max-width: 900px) { .reb { grid-template-columns: 1fr; } }

/* ==========================================================================
   NEIGHBOURHOODS
   ========================================================================== */
.hoods { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
.hood__grp { border-top: 1.5px solid var(--line); padding-top: 1.2rem; }
.hood__grp h3 { font-family: var(--body); font-size: var(--t-xs); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--coral); display: flex; align-items: center; gap: .6rem; margin-bottom: .95rem; }
.hood__grp h3 span { font-size: var(--t-xs); font-weight: 700; color: var(--muted); background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: .08rem .5rem; }
.hood__chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.hoods__foot { margin-top: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1.5px solid var(--line); }
.hoods__foot p { font-size: var(--t-sm); color: var(--muted); margin: 0; max-width: 58ch; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.revs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.rev { margin: 0; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); padding: clamp(1.35rem, 2.2vw, 1.85rem); box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.rev__st { display: flex; gap: .12rem; color: var(--gold); margin-bottom: .9rem; }
.rev__st svg { width: 16px; height: 16px; fill: currentColor; }
.rev blockquote { margin: 0 0 1.1rem; flex: 1; }
.rev blockquote p { font-size: var(--t-sm); line-height: 1.72; color: var(--ink-2); margin: 0; }
.rev figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .8rem; padding-top: .95rem; border-top: 1.5px solid var(--line-2); }
.rev__nm { font-family: var(--display); font-weight: 700; font-size: var(--t-sm); color: var(--navy); }
.rev__pl { display: inline-flex; align-items: center; gap: .28rem; font-size: var(--t-xs); color: var(--muted); }
.rev__pl svg { width: 13px; height: 13px; color: var(--coral); }
@media (max-width: 940px) { .revs { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: .65rem; }
.faq__i { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-sm); }
.faq__i summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.3rem; cursor: pointer; list-style: none; font-family: var(--display); font-weight: 700; font-size: var(--t-md); color: var(--navy); }
.faq__i summary::-webkit-details-marker { display: none; }
.faq__cv { width: 18px !important; height: 18px !important; flex: 0 0 18px; color: var(--coral); transition: transform .2s ease; }
.faq__i[open] .faq__cv { transform: rotate(180deg); }
.faq__b { padding: 0 1.3rem 1.25rem; }
.faq__b p { font-size: var(--t-sm); line-height: 1.75; color: var(--muted); margin: 0 0 .8rem; }
.faq__b p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta { background: var(--navy); color: rgba(255,248,237,.82); overflow: hidden; }
.cta__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta h2 { color: var(--cream); }
.cta p { line-height: 1.72; max-width: 44ch; }
.cta__acts { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.cta__art img { width: 100%; max-width: 480px; margin-inline: auto; }
@media (max-width: 860px) { .cta__in { grid-template-columns: 1fr; } .cta__art { order: -1; max-width: 360px; margin-inline: auto; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr { background: var(--navy-2); color: rgba(255,248,237,.7); padding-block: clamp(2.75rem, 5vw, 4rem) 1.5rem; font-size: var(--t-sm); }
.ftr__in { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 3.5vw, 3rem); align-items: start; }
.ftr__tag { font-family: var(--display); font-size: var(--t-lg); font-weight: 600; color: var(--gold); line-height: 1.45; margin: 1rem 0 1.25rem; }
.ftr__badges { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ftr__badges li { display: flex; align-items: center; gap: .5rem; font-size: var(--t-xs); font-weight: 600; color: rgba(255,248,237,.82); }
.ftr__badges svg { width: 15px; height: 15px; flex: 0 0 15px; color: var(--gold); }
.ftr__col h3 { font-family: var(--body); font-size: var(--t-xs); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: .95rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.ftr__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ftr__col a { color: rgba(255,248,237,.72); text-decoration: none; }
.ftr__col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.ftr__tel { font-family: var(--display); font-weight: 800; color: var(--cream) !important; font-size: var(--t-lg); }
.ftr__cta { margin-top: 1.2rem; }
.ftr__bot { margin-top: clamp(2rem, 4vw, 2.75rem); padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; font-size: var(--t-xs); color: rgba(255,248,237,.45); }
.ftr__bot p { margin: 0; }
.ftr__note { max-width: 64ch; }
@media (max-width: 1000px) { .ftr__in { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ftr__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .ftr__in { grid-template-columns: 1fr; } }

/* ==========================================================================
   STICKY MOBILE BAR
   ========================================================================== */
.sticky { display: none; }
@media (max-width: 800px) {
  .sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--white); border-top: 1.5px solid var(--line);
    box-shadow: 0 -6px 22px rgba(18,58,94,.16);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .sticky a {
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    padding: 1rem .5rem; text-decoration: none;
    font-family: var(--display); font-size: var(--t-sm); font-weight: 700;
  }
  .sticky a svg { width: 17px; height: 17px; }
  .sticky__call { background: var(--coral); color: #FFF6F2; }
  .sticky__book { background: var(--navy); color: var(--cream); }
  body { padding-bottom: 4.4rem; }
}

/* ==========================================================================
   CREDENTIAL STRIP
   A badge row on navy, the device the big incumbent uses to stack proof
   directly under the hero. Ours carries only claims that can be substantiated.
   ========================================================================== */
.creds { background: var(--navy); color: var(--cream); padding-block: clamp(1.5rem, 3vw, 2.25rem); }
.creds__grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.75rem, 2vw, 1.75rem);
}
.cred { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
/* Solid gold disc with a navy glyph. A thin gold stroke on a navy field reads as
   washed-out tan at this size, so the fill carries the contrast instead. */
/* Must out-specify `.cred span` below, which is (0,1,1) and would otherwise win
   and repaint the glyph cream on gold. */
.cred .cred__ic {
  width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 50px;
  border-radius: 50%; background: var(--gold); color: var(--navy-2);
  box-shadow: 0 4px 14px rgba(232,169,60,.22);
}
.cred__ic svg { width: 24px; height: 24px; stroke-width: 2.2; }
.cred b {
  display: block; font-family: var(--display); font-size: var(--t-sm); font-weight: 800;
  color: var(--cream); line-height: 1.2; letter-spacing: -.01em;
}
.cred span { display: block; font-size: var(--t-xs); line-height: 1.4; color: rgba(255,248,237,.72); }
@media (max-width: 1000px) { .creds__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 1.5rem; } }
@media (max-width: 520px) { .creds__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ==========================================================================
   BAND CTA
   ========================================================================== */
.band { position: relative; background: var(--navy-2); color: rgba(255,248,237,.82); overflow: hidden; }
/* A faint duct-and-grid motif so the band is not a flat rectangle of colour. */
.band::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image:
    linear-gradient(90deg, rgba(232,169,60,.5) 1.5px, transparent 1.5px),
    linear-gradient(0deg,  rgba(232,169,60,.28) 1.5px, transparent 1.5px);
  background-size: 46px 46px, 46px 46px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000 25%, transparent 78%);
}
.band__in { position: relative; z-index: 1; text-align: center; padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.band__in h2 { color: var(--cream); max-width: 26ch; margin-inline: auto; margin-bottom: .8rem; }
.band__in h2 em { font-style: normal; color: var(--gold); }
.band__in p { max-width: 56ch; margin-inline: auto; margin-bottom: 1.75rem; line-height: 1.7; }
.band__acts { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ==========================================================================
   MEMBERSHIP
   ========================================================================== */
.club { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.club__card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--sh);
}
.club__price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1.35rem; padding-bottom: 1.35rem; border-bottom: 1.5px solid var(--line-2); }
.club__price b { font-family: var(--display); font-size: clamp(2.4rem, 4.6vw, 3.4rem); font-weight: 800; color: var(--coral); line-height: 1; letter-spacing: -.035em; }
.club__price span { font-size: var(--t-sm); color: var(--muted); font-weight: 600; }
.club__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .8rem; }
.club__list li { display: grid; grid-template-columns: 21px 1fr; gap: .7rem; align-items: start; font-size: var(--t-sm); line-height: 1.6; color: var(--ink-2); }
.club__list svg { width: 18px; height: 18px; margin-top: .16rem; color: var(--gold-3); }
.club__list b { color: var(--navy); font-weight: 800; }
.club__art { position: relative; }
.club__art img { width: 100%; max-width: 460px; margin-inline: auto; }
@media (max-width: 900px) { .club { grid-template-columns: 1fr; } .club__art { order: -1; max-width: 340px; margin-inline: auto; } }

/* ==========================================================================
   CONTACT, SERVICE MAP AND CREW
   The map sits behind, the illustrated crew stands in front of it, the way the
   volume incumbent composites a technician photo over a van-covered street map.
   ========================================================================== */
.contact { background: var(--cream-2); }
/* Room for the crew to overhang the map without colliding with the next section. */
.contact { padding-bottom: calc(var(--sec-y) + 3rem); }
.contact__in { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; }

.nap { display: grid; gap: 1.25rem; }
.nap__biz { font-family: var(--display); font-size: var(--t-lg); font-weight: 800; color: var(--navy); margin: 0; }
.nap dl { margin: 0; display: grid; gap: 1rem; }
.nap dl > div { display: grid; grid-template-columns: 34px 1fr; gap: .8rem; align-items: start; }
.nap__ic { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 1.5px solid var(--line); color: var(--coral); }
.nap__ic svg { width: 17px; height: 17px; }
.nap dt { font-size: var(--t-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.nap dd { margin: 0; font-size: var(--t-sm); line-height: 1.55; color: var(--ink); }
.nap dd a { color: var(--navy); font-weight: 700; text-decoration: none; }
.nap dd a:hover { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.nap__tel { font-family: var(--display); font-size: var(--t-xl) !important; font-weight: 800; letter-spacing: -.02em; }
.nap__acts { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Three fee promises, the clearest idea worth borrowing from the smaller
   specialist sites: say what you will not charge for. */
.promise { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.promise li { display: grid; grid-template-columns: 19px 1fr; gap: .6rem; align-items: start; font-size: var(--t-sm); color: var(--ink-2); }
.promise svg { width: 17px; height: 17px; margin-top: .2rem; color: var(--gold-3); }
.promise b { color: var(--navy); font-weight: 800; }

.svcmap { position: relative; }
.svcmap__map {
  width: 100%; border-radius: var(--r-lg); border: 1.5px solid var(--line);
  box-shadow: var(--sh); display: block;
}
/* The crew overlaps the lower edge of the map and is allowed to break out of it. */
/* The crew deliberately breaks the lower edge of the map frame, otherwise it
   reads as an image pasted inside another image. */
.svcmap__crew {
  position: absolute; z-index: 2; right: -4%; bottom: -14%;
  width: 82%; max-width: 580px; filter: drop-shadow(0 16px 30px rgba(12,43,71,.28));
}
.svcmap__pin {
  position: absolute; z-index: 3; left: 4%; top: 6%;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh); padding: .65rem .9rem; display: flex; align-items: center; gap: .55rem;
}
.svcmap__pin svg { width: 24px; height: 24px; flex: 0 0 24px; padding: 4px; border-radius: 50%; background: var(--coral-2); color: var(--coral); }
.svcmap__pin b { display: block; font-family: var(--display); font-size: var(--t-sm); font-weight: 800; color: var(--navy); line-height: 1.15; }
.svcmap__pin small { font-size: .68rem; color: var(--muted); }

@media (max-width: 980px) {
  .contact__in { grid-template-columns: 1fr; }
  .svcmap { order: -1; margin-bottom: 3rem; }
}
@media (max-width: 560px) {
  .svcmap__crew { width: 80%; right: -3%; bottom: -12%; }
  .svcmap__pin { padding: .5rem .65rem; }
  .svcmap__pin small { display: none; }
}

/* ==========================================================================
   ZIP CODES
   ========================================================================== */
.zips { margin-top: clamp(1.75rem, 3vw, 2.5rem); padding-top: 1.5rem; border-top: 1.5px solid var(--line); }
.zips h3 { font-family: var(--body); font-size: var(--t-xs); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--coral); margin-bottom: .85rem; }
.zips p { font-size: var(--t-sm); line-height: 1.9; color: var(--muted); margin: 0; font-variant-numeric: tabular-nums; }
