/* ==========================================================================
   Best Comfort Heating & Cooling - site stylesheet
   Hand-written. No framework, no library, no external fonts.
   Palette taken from the Best Comfort flyer: rich blues, hot pink,
   electric salmon. Display type is a heavy condensed italic.
   ========================================================================== */

:root {
  --navy-950: #050A2A;
  --navy-900: #070D33;
  --navy-800: #0B1650;
  --navy-700: #13217A;
  --blue: #2340D8;
  --blue-400: #4E6BFF;
  --violet: #5B2BB5;
  --pink: #FF2E7E;
  --pink-ink: #D10F5A;
  --salmon: #FF5A5F;
  --salmon-ink: #D42A3F;
  --leaf: #3BA7F5;
  --ink: #0B1650;
  --muted: #4A5480;
  --line: #E3E6F5;
  --soft: #F4F5FF;
  --soft-2: #ECEFFF;
  --white: #FFFFFF;

  --g-hero: linear-gradient(115deg, #0B1650 0%, #13217A 28%, #4527A6 52%, #D11F74 78%, #FF5A5F 100%);
  --g-band: linear-gradient(120deg, #070D33 0%, #13217A 45%, #6A22A8 75%, #C4176A 100%);
  --g-hot: linear-gradient(100deg, #D6105C 0%, #D42A3F 100%);
  --g-hot-bright: linear-gradient(100deg, #FF2E7E 0%, #FF5A5F 100%);
  --g-cool: linear-gradient(135deg, #2340D8 0%, #3BA7F5 100%);

  --f-display: Impact, Haettenschweiler, "Franklin Gothic Heavy", "HelveticaNeue-CondensedBlack", "Helvetica Neue Condensed Black", "Futura-CondensedExtraBold", "Avenir Next Condensed", "Roboto Condensed", "Arial Narrow", sans-serif-condensed, sans-serif;
  --f-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(11, 22, 80, .06), 0 4px 12px rgba(11, 22, 80, .06);
  --shadow: 0 2px 4px rgba(11, 22, 80, .05), 0 12px 32px rgba(11, 22, 80, .10);
  --shadow-lg: 0 4px 10px rgba(11, 22, 80, .08), 0 28px 60px rgba(11, 22, 80, .18);
  --glow-pink: 0 10px 30px rgba(255, 46, 126, .38);
  --wrap: 1240px;
  --hdr-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 16px); }
body { margin: 0; font-family: var(--f-body); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--white); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 10px; font-weight: 700; box-shadow: var(--shadow); }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.ic { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; stroke: none; }

/* ---------- type ---------- */
.display, .h1, .h2, .h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-synthesis: style;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
}
.h2 { font-size: clamp(34px, 5vw, 58px); }
.h3 { font-size: clamp(24px, 3vw, 32px); }
.hot-text { color: var(--pink-ink); }
.on-dark .hot-text, .hot-text.on-dark { color: var(--salmon); }
.grad-text { background: var(--g-hot-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-ink); }
.eyebrow::before { content: ""; width: 26px; height: 4px; border-radius: 4px; background: var(--g-hot); transform: skewX(-24deg); }
.on-dark .eyebrow { color: #FF9BBE; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); max-width: 62ch; }
.on-dark .lead { color: #D5DBFF; }

.sec { padding-block: clamp(64px, 8vw, 110px); position: relative; }
.sec-soft { background: var(--soft); }
.sec-head { display: grid; gap: 14px; margin-bottom: clamp(32px, 4vw, 52px); max-width: 780px; }
.sec-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.sec-head .h2 .accent { color: var(--pink-ink); }
.on-dark .sec-head .h2 .accent { color: var(--salmon); }
.on-dark { color: var(--white); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 16px; letter-spacing: .01em; line-height: 1.1; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; white-space: nowrap; }
.btn .ic { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn-hot { background: var(--g-hot); color: var(--white); box-shadow: var(--glow-pink); }
.btn-hot:hover { box-shadow: 0 14px 38px rgba(255, 46, 126, .5); }
.btn-navy { background: var(--navy-800); color: var(--white); box-shadow: 0 10px 24px rgba(11, 22, 80, .25); }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .7); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-line { color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); background: var(--white); }
.btn-line:hover { box-shadow: inset 0 0 0 2px var(--pink); color: var(--pink-ink); }
.btn-white { background: var(--white); color: var(--navy-800); box-shadow: 0 10px 24px rgba(5, 10, 42, .25); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn-lg { min-height: 58px; padding: 14px 30px; font-size: 18px; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--pink-ink); }
.link-arrow .ic { transition: transform .2s; }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- utility bar ---------- */
.ubar { background: var(--navy-950); color: #C9D0FF; font-size: 13.5px; }
.ubar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.ubar a:hover { color: var(--white); }
.ubar-l, .ubar-r { display: flex; align-items: center; gap: 22px; }
.ubar-item { display: inline-flex; align-items: center; gap: 8px; }
.ubar-item .ic { width: 16px; height: 16px; color: var(--salmon); }
.ubar-live { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); }
.ubar-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2BE07D; box-shadow: 0 0 0 0 rgba(43, 224, 125, .6); animation: live 2s infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 8px rgba(43, 224, 125, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 224, 125, 0); } }
.ubar-mid, .ubar-mail { display: none; }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 90; background: rgba(11, 22, 80, .97); color: var(--white); transition: box-shadow .25s; }
.hdr::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink), var(--salmon)); }
.hdr.stuck { box-shadow: 0 10px 30px rgba(5, 10, 42, .35); }
.hdr .wrap { display: flex; align-items: center; gap: 18px; min-height: var(--hdr-h); }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 255, 255, .12), 0 6px 16px rgba(0, 0, 0, .3); }
.brand-t { display: grid; line-height: 1; }
.brand-t b { font-family: var(--f-display); font-style: italic; font-weight: 700; font-synthesis: style; text-transform: uppercase; font-size: 23px; letter-spacing: .02em; }
.brand-t small { font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--salmon); margin-top: 4px; }

.nav { display: none; }
.hdr-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hdr-call { display: none; }
.burger { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: var(--white); }
.burger .ic { width: 26px; height: 26px; }

@media (min-width: 1100px) {
  .nav { display: flex; align-items: center; gap: 2px; margin-left: 18px; }
  .nav > a, .nav-dd > button { position: relative; display: inline-flex; align-items: center; gap: 4px; padding: 10px 11px; border-radius: 10px; font-weight: 700; font-size: 15px; color: #E7EAFF; transition: color .2s, background-color .2s; }
  .nav > a:hover, .nav-dd > button:hover, .nav-dd.open > button { color: var(--white); background: rgba(255, 255, 255, .08); }
  .nav > a[aria-current="page"], .nav-dd.current > button { color: var(--white); }
  .nav > a[aria-current="page"]::after, .nav-dd.current > button::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 3px; border-radius: 3px; background: var(--g-hot-bright); }
  .nav-dd { position: relative; }
  .nav-dd > button .ic { width: 16px; height: 16px; transition: transform .2s; }
  .nav-dd.open > button .ic { transform: rotate(180deg); }
  .dd { position: absolute; top: calc(100% + 10px); left: -12px; width: 330px; padding: 10px; background: var(--white); color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
  .nav-dd.open .dd { opacity: 1; visibility: visible; transform: none; }
  .dd a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 14px; }
  .dd a:hover { background: var(--soft); }
  .dd .em { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--soft-2); font-size: 20px; flex: none; }
  .dd b { display: block; font-size: 15px; }
  .dd span span { display: block; font-size: 13px; color: var(--muted); line-height: 1.35; }
  .burger { display: none; }
  .hdr-call { display: inline-flex; }
}
@media (min-width: 1100px) and (max-width: 1239px) {
  .brand-t { display: none; }
}

/* drawer */
.drawer { position: fixed; inset: 0 0 0 auto; z-index: 120; width: min(92vw, 400px); background: var(--navy-800); color: var(--white); transform: translateX(105%); transition: transform .3s ease; display: flex; flex-direction: column; overflow-y: auto; visibility: hidden; }
.drawer.open { transform: none; visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.drawer-nav { padding: 12px 12px 0; display: grid; gap: 2px; }
.drawer-nav > a, .drawer-nav .acc-btn { display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 12px; border-radius: 14px; font-weight: 800; font-size: 17px; text-align: left; }
.drawer-nav > a:hover, .drawer-nav .acc-btn:hover { background: rgba(255, 255, 255, .07); }
.drawer-nav > a[aria-current="page"] { background: rgba(255, 46, 126, .16); color: #FFC2D6; }
.drawer-nav .acc-item { border: 0; background: none; }
.drawer-nav .acc-in a { display: block; padding: 10px 14px 10px 50px; color: #D5DBFF; font-weight: 600; }
.drawer-foot { margin-top: auto; padding: 20px; display: grid; gap: 10px; }
.drawer-foot small { color: #AEB6E6; text-align: center; }
.scrim { position: fixed; inset: 0; z-index: 110; background: rgba(5, 10, 42, .55); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.scrim.open { opacity: 1; visibility: visible; }
body.lock { overflow: hidden; }

@media (min-width: 720px) {
  .ubar-mail { display: inline-flex; }
}
@media (min-width: 980px) {
  .ubar-mid { display: inline; }
}

/* ---------- marquee ---------- */
.marq { background: var(--g-hot); color: var(--white); overflow: hidden; position: relative; }
.marq-track { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marq:hover .marq-track { animation-play-state: paused; }
.marq-set { display: flex; align-items: center; gap: 28px; padding: 12px 14px; font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; text-transform: uppercase; font-size: 19px; letter-spacing: .04em; white-space: nowrap; }
.marq-set span { display: inline-flex; align-items: center; gap: 28px; }
.marq-set span::after { content: "\2726"; font-style: normal; color: rgba(255, 255, 255, .85); font-size: 15px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- hero (home) ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--g-hero); color: var(--white); padding-block: clamp(36px, 5vw, 64px) clamp(110px, 11vw, 150px); }
.hero-fx { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-fx .dots { position: absolute; inset: 0; background: radial-gradient(rgba(255, 255, 255, .22) 1.3px, transparent 1.8px) 0 0 / 16px 16px; -webkit-mask-image: linear-gradient(110deg, transparent 45%, #000 95%); mask-image: linear-gradient(110deg, transparent 45%, #000 95%); }
.hero-fx .streaks { position: absolute; left: -6%; bottom: 2%; width: 70%; opacity: .16; }
.hero-fx .streaks-r { left: auto; right: -12%; top: 6%; bottom: auto; width: 50%; opacity: .12; transform: scaleX(-1); }
.hero-fx .blob { position: absolute; border-radius: 50%; filter: blur(40px); }
.hero-fx .blob-1 { width: 520px; height: 520px; right: -120px; top: -140px; background: radial-gradient(circle, rgba(255, 90, 95, .55), transparent 65%); }
.hero-fx .blob-2 { width: 460px; height: 460px; left: -160px; bottom: -200px; background: radial-gradient(circle, rgba(35, 64, 216, .6), transparent 65%); }

.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px; border-radius: 999px; background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.hero-kicker b { background: var(--g-hot-bright); padding: 3px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.hero-title { display: grid; font-family: var(--f-display); font-style: italic; font-weight: 700; font-synthesis: style; text-transform: uppercase; line-height: .86; letter-spacing: .005em; font-size: clamp(64px, 11.5vw, 146px); filter: drop-shadow(0 6px 0 rgba(5, 10, 42, .35)); }
.hero-title span { display: block; }
.speck { color: var(--white); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .speck {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 .04 0 0 0 0 .08 0 0 0 0 .3 0 0 0 -6 1.95'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E"), #FFFFFF;
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .speck.hot {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .05 0 0 0 0 .2 0 0 0 -6 1.9'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E"), linear-gradient(100deg, #FF6A5F 0%, #FF3F72 60%, #FF2E7E 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
.ht-hvac { position: relative; width: max-content; }
.rays { position: absolute; top: 50%; width: .55em; height: .6em; transform: translateY(-50%); color: var(--pink); }
.rays-l { right: 100%; margin-right: .08em; }
.rays-r { left: 100%; margin-left: .06em; transform: translateY(-50%) scaleX(-1); }

.brush { position: relative; display: inline-block; margin-top: 14px; padding: 12px 34px 14px 26px; font-family: var(--f-display); font-style: italic; font-weight: 700; font-synthesis: style; text-transform: uppercase; font-size: clamp(22px, 3.2vw, 38px); line-height: 1; letter-spacing: .02em; transform: rotate(-2deg); isolation: isolate; }
.brush::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 64' preserveAspectRatio='none'%3E%3Cpath fill='%23070D33' d='M10 9 L150 5 L300 7 L391 3 L399 11 L389 16 L400 24 L392 31 L399 40 L388 47 L397 55 L385 60 L250 58 L120 61 L14 58 L2 51 L13 45 L0 37 L9 30 L1 22 L12 16 L3 11 Z'/%3E%3Cpath fill='%23070D33' opacity='.55' d='M30 1 L120 2 L118 4 L28 4Z M280 62 L370 61 L372 63 L282 64Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat; opacity: .93; }
.brush .hot { color: #FF4B6E; }
.hero-sub { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-weight: 800; font-size: clamp(15px, 1.7vw, 19px); }
.hero-sub i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }
.hero-sub em { font-style: italic; color: #FFB0C8; }
.hero-lead { margin-top: 18px; color: #DCE1FF; max-width: 50ch; font-size: 17px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 26px; }

.callbox { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 4px 14px; padding: 14px 22px 30px 14px; border-radius: 22px; background: linear-gradient(180deg, #0E1A5C, #070D33); box-shadow: 0 0 0 3px rgba(255, 255, 255, .95), 0 0 0 6px rgba(255, 46, 126, .55), 0 0 42px rgba(255, 46, 126, .55); transition: transform .2s, box-shadow .2s; }
.callbox:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 0 0 3px #FFFFFF, 0 0 0 7px rgba(255, 46, 126, .75), 0 0 56px rgba(255, 46, 126, .7); }
.cb-ico { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--g-hot-bright); box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .25); }
.cb-ico .ic { width: 28px; height: 28px; stroke-width: 2.4; }
.cb-num { font-family: var(--f-body); font-weight: 900; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.01em; line-height: 1; }
.cb-rib { position: absolute; left: 26px; right: 18px; bottom: -14px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 6px 14px; background: var(--g-hot); transform: skewX(-12deg); font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 15px; border-radius: 6px; white-space: nowrap; }
.cb-rib .ic { width: 38px; height: 16px; stroke-width: 1.8; }

.hero-art { position: relative; min-height: 340px; display: grid; place-items: center; }
.hero-art .unit { position: relative; z-index: 2; width: min(78%, 440px); filter: drop-shadow(0 30px 40px rgba(5, 10, 42, .45)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-10px); } }
.hero-art .floor { position: absolute; bottom: 4%; left: 18%; right: 18%; height: 60px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 255, 255, .35), transparent); filter: blur(6px); }
.fx-icon { position: absolute; z-index: 3; width: 26%; max-width: 150px; }
.fx-snow { left: 0; top: 30%; color: var(--white); filter: drop-shadow(0 0 16px rgba(120, 180, 255, .8)); }
.fx-flame { right: 0; top: 24%; filter: drop-shadow(0 0 22px rgba(255, 70, 110, .9)); }
.fx-snow svg, .fx-flame svg { width: 100%; height: auto; }
.chip-float { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 16px; background: rgba(255, 255, 255, .14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3), 0 12px 30px rgba(5, 10, 42, .25); font-size: 13px; line-height: 1.25; }
.chip-float b { display: block; font-size: 15px; }
.chip-float .em { font-size: 22px; }
.cf-1 { left: 4%; bottom: 6%; }
.cf-2 { right: 2%; top: 2%; }

.hero-foot { position: relative; z-index: 2; margin-top: 44px; display: grid; gap: 14px; align-items: center; }
.hf-addr { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: clamp(16px, 1.8vw, 21px); }
.hf-addr .ic { width: 30px; height: 30px; color: var(--pink); stroke-width: 2.2; }
.hf-addr em { font-style: normal; color: #FF9BBE; }
.hf-sky { width: 100%; max-width: 360px; color: rgba(255, 255, 255, .85); }
.hf-serve { display: flex; align-items: center; gap: 14px; font-size: 13px; letter-spacing: .3em; font-weight: 700; text-transform: uppercase; color: #E6E9FF; }
.hf-serve::before, .hf-serve::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, transparent, var(--pink)); max-width: 120px; }
.hf-serve::after { background: linear-gradient(90deg, var(--pink), transparent); }

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 20px; }
  .hero-art { min-height: 520px; }
  .hero-foot { grid-template-columns: auto 1fr auto; gap: 26px; }
  .hf-sky { max-width: none; height: 70px; }
}

/* ---------- quick service tiles ---------- */
.quick { position: relative; z-index: 5; margin-top: clamp(-96px, -8vw, -70px); }
.quick-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.qt { position: relative; display: grid; gap: 8px; padding: 20px 18px; border-radius: var(--r); background: var(--white); box-shadow: var(--shadow-lg); transition: transform .25s, box-shadow .25s; overflow: hidden; }
.qt::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--g-hot-bright); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.qt:hover { transform: translateY(-6px); }
.qt:hover::after { transform: scaleX(1); }
.qt .em { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 28px; background: var(--soft-2); }
.qt.cool .em { background: linear-gradient(135deg, #E3ECFF, #D2F0FF); }
.qt.heat .em { background: linear-gradient(135deg, #FFE3EC, #FFE6DF); }
.qt.air .em { background: linear-gradient(135deg, #E4FBF3, #E3F2FF); }
.qt.plan .em { background: linear-gradient(135deg, #EFE6FF, #E3E9FF); }
.qt.sos { background: var(--g-band); color: var(--white); }
.qt.sos .em { background: rgba(255, 255, 255, .14); }
.qt h3 { font-size: 18px; font-weight: 800; }
.qt p { font-size: 14px; color: var(--muted); line-height: 1.45; }
.qt.sos p { color: #DDE2FF; }
.qt .link-arrow { font-size: 14px; margin-top: 4px; }
.qt.sos .link-arrow { color: #FFB0C8; }
.qt:last-child { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .quick-grid { grid-template-columns: repeat(5, 1fr); }
  .qt:last-child { grid-column: auto; }
}

/* ---------- stats / promise band ---------- */
.promise { display: grid; gap: 28px; align-items: center; }
.promise-badge { position: relative; width: 190px; height: 190px; flex: none; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--g-hot); color: var(--white); box-shadow: var(--glow-pink); font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; text-transform: uppercase; line-height: .95; font-size: 30px; }
.promise-badge::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, .6); }
.promise-badge small { display: block; font-family: var(--f-body); font-style: normal; font-size: 11px; letter-spacing: .2em; font-weight: 800; margin-top: 6px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { padding: 20px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); }
.stat b { display: block; font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; font-size: clamp(40px, 5vw, 58px); line-height: 1; background: linear-gradient(100deg, var(--blue), var(--pink-ink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { display: block; margin-top: 6px; font-weight: 700; color: var(--muted); font-size: 14px; }
@media (min-width: 900px) {
  .promise { grid-template-columns: auto 1fr 1.3fr; gap: 40px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .promise .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- emoji bullet lists ---------- */
.elist { list-style: none; display: grid; gap: 12px; }
.elist li { display: flex; gap: 12px; align-items: flex-start; }
.elist .e { flex: none; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: 17px; line-height: 1; background: var(--soft-2); }
.elist b { display: block; }
.elist small { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; }
.on-dark .elist .e { background: rgba(255, 255, 255, .12); }
.on-dark .elist small { color: #C9D0FF; }
.elist.two { grid-template-columns: 1fr; }
@media (min-width: 640px) { .elist.two { grid-template-columns: 1fr 1fr; gap: 14px 22px; } }
.checks { list-style: none; display: grid; gap: 9px; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--g-hot) ; -webkit-mask: none; }
.checks li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 5px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: var(--ink); transition: border-color .2s, background-color .2s, color .2s; }
button.chip:hover { border-color: var(--pink); }
.chip.on, .chip[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.chip-s { padding: 4px 10px; font-size: 12.5px; border-width: 1px; }
.tag { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; background: var(--soft-2); color: var(--navy-700); }
.tag-hot { background: #FFE3EC; color: #B00C4C; }
.tag-cool { background: #E1EEFF; color: #1739B8; }
.tag-ok { background: #DDF8EA; color: #0C7442; }

/* ---------- product cards ---------- */
.pgrid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.pcard { position: relative; display: flex; flex-direction: column; border-radius: 22px; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard-art { position: relative; aspect-ratio: 1 / 0.86; display: grid; place-items: center; background: radial-gradient(70% 70% at 50% 45%, #FFFFFF 0%, #EEF1FF 70%, #E3E7FB 100%); overflow: hidden; }
.pcard-art::before { content: ""; position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; right: -18%; top: -22%; background: radial-gradient(circle, rgba(255, 46, 126, .16), transparent 70%); }
.pcard-art img { position: relative; width: 78%; height: auto; transition: transform .35s; }
.pcard:hover .pcard-art img { transform: scale(1.06) rotate(-1deg); }
.pcard-flag { position: absolute; left: 12px; top: 12px; z-index: 2; }
.pcard-body { display: grid; gap: 8px; padding: 16px 18px 18px; flex: 1; align-content: start; }
.pcard-brand { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pcard h3 { font-size: 17px; font-weight: 800; line-height: 1.3; }
.pcard h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pcard .chips { gap: 5px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line); }
.price { font-weight: 900; font-size: 19px; }
.price-call { font-weight: 800; font-size: 14px; color: var(--pink-ink); }
.pcard-go { position: relative; z-index: 2; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--soft-2); color: var(--navy-800); transition: background-color .2s, color .2s; }
.pcard:hover .pcard-go { background: var(--g-hot); color: var(--white); }
.pcard-go .ic { width: 18px; height: 18px; }

.list-view .pgrid { grid-template-columns: 1fr; }
.list-view .pcard { flex-direction: row; }
.list-view .pcard-art { width: 34%; max-width: 240px; aspect-ratio: auto; }

/* ---------- season split ---------- */
.season { display: grid; gap: 18px; }
.season-card { padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg); background: var(--g-band); color: var(--white); display: grid; gap: 18px; align-content: center; position: relative; overflow: hidden; isolation: isolate; }
.season-card::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 90, 95, .45), transparent 70%); z-index: -1; }
.season-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 260px; background: var(--soft-2); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; padding: 8px 12px; border-radius: 12px; background: rgba(7, 13, 51, .72); color: var(--white); font-size: 13px; font-weight: 700; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
@media (min-width: 900px) {
  .season { grid-template-columns: .9fr 1.1fr; }
}

/* ---------- service cards ---------- */
.sgrid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); }
@media (min-width: 900px) { .sgrid { grid-template-columns: repeat(3, 1fr); } }
.scard { position: relative; display: grid; gap: 12px; align-content: start; padding: 26px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.scard .ico { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: var(--white); background: var(--g-hot); box-shadow: var(--glow-pink); }
.scard .ico.cool { background: var(--g-cool); box-shadow: 0 10px 26px rgba(35, 64, 216, .35); }
.scard .ico.violet { background: linear-gradient(135deg, #5B2BB5, #9B3FD8); box-shadow: 0 10px 26px rgba(91, 43, 181, .35); }
.scard .ico .ic { width: 28px; height: 28px; }
.scard h3 { font-size: 20px; font-weight: 800; }
.scard p { color: var(--muted); font-size: 15px; }
.scard .elist { gap: 8px; font-size: 14.5px; }
.scard .elist .e { width: 28px; height: 28px; font-size: 14px; border-radius: 9px; }

/* ---------- accordion ---------- */
.acc { display: grid; gap: 12px; }
.acc-item { border-radius: 18px; background: var(--white); border: 1px solid var(--line); transition: box-shadow .25s, border-color .25s; }
.acc-item.open { border-color: transparent; box-shadow: 0 0 0 2px var(--pink), var(--shadow); }
.acc-h { margin: 0; font-size: inherit; }
.acc-btn { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 18px; text-align: left; font-weight: 800; font-size: 17px; line-height: 1.3; border-radius: 18px; }
.acc-btn:hover .acc-t { color: var(--pink-ink); }
.acc-ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; background: var(--soft-2); }
.acc-t { flex: 1; transition: color .2s; }
.acc-meta { flex: none; display: none; padding: 4px 11px; border-radius: 999px; background: var(--soft-2); font-size: 12.5px; font-weight: 800; color: var(--navy-700); }
.acc-chev { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); color: var(--navy-800); transition: transform .3s, background-color .3s, color .3s; }
.acc-chev .ic { width: 18px; height: 18px; }
.acc-item.open .acc-chev { transform: rotate(180deg); background: var(--g-hot); color: var(--white); }
.acc-panel { display: grid; grid-template-rows: 1fr; }
.js .acc-panel { grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.js .acc-item.open > .acc-panel { grid-template-rows: 1fr; }
.acc-in { overflow: hidden; min-height: 0; }
.js .acc-item:not(.open) > .acc-panel > .acc-in { visibility: hidden; transition: visibility 0s .35s; }
.acc-body { padding: 0 18px 20px 72px; color: var(--muted); display: grid; gap: 14px; }
.acc-body > p { max-width: 75ch; }
.acc-body b, .acc-body strong { color: var(--ink); }
@media (min-width: 640px) { .acc-meta { display: inline-block; } }
@media (max-width: 639px) { .acc-body { padding-left: 18px; } }
.acc.dark .acc-item { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: var(--white); }
.acc.dark .acc-ico, .acc.dark .acc-meta { background: rgba(255, 255, 255, .12); color: var(--white); }
.acc.dark .acc-chev { background: rgba(255, 255, 255, .12); color: var(--white); }
.acc.dark .acc-body { color: #D5DBFF; }
.acc.dark .acc-btn:hover .acc-t { color: #FFB0C8; }
.acc-tools { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 12px; }
.acc-tools button { font-size: 14px; font-weight: 800; color: var(--pink-ink); padding: 6px 10px; border-radius: 8px; }
.acc-tools button:hover { background: var(--soft); }

/* coverage accordion (compact, like the reference) */
.acc.compact { max-width: 900px; margin-inline: auto; gap: 10px; }
.acc.compact .acc-btn { padding: 12px 16px; font-size: 16px; }
.acc.compact .acc-ico { width: 34px; height: 34px; font-size: 17px; border-radius: 10px; }
.acc.compact .acc-body { padding: 0 16px 18px 64px; }
@media (max-width: 639px) { .acc.compact .acc-body { padding-left: 16px; } }

/* ---------- offers / coupons ---------- */
.band { position: relative; isolation: isolate; overflow: hidden; background: var(--g-band); color: var(--white); }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(255, 255, 255, .14) 1.2px, transparent 1.7px) 0 0 / 18px 18px; -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000); mask-image: linear-gradient(90deg, transparent 20%, #000); }
.coupons { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.coupon { position: relative; display: grid; gap: 10px; align-content: start; padding: 24px 20px 20px; border-radius: 22px; background: rgba(255, 255, 255, .07); border: 2px dashed rgba(255, 255, 255, .5); text-align: center; transition: transform .25s, background-color .25s; }
.coupon:hover { transform: translateY(-4px) rotate(-.6deg); background: rgba(255, 255, 255, .12); }
.coupon .scis { position: absolute; top: -14px; left: 22px; font-size: 20px; line-height: 1; }
.coupon .val { font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; font-size: 56px; line-height: .9; text-transform: uppercase; background: linear-gradient(100deg, #FFFFFF, #FFC2D6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.coupon .what { font-weight: 800; }
.coupon .fine { font-size: 12.5px; color: #C9D0FF; }
.code { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; padding: 6px 6px 6px 16px; border-radius: 999px; background: var(--white); color: var(--navy-800); font-weight: 900; letter-spacing: .08em; }
.code button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: var(--g-hot); color: var(--white); font-size: 12.5px; letter-spacing: .04em; font-weight: 800; }
.code button .ic { width: 15px; height: 15px; }

/* ---------- reviews ---------- */
.rgrid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.review { position: relative; display: grid; gap: 14px; padding: 26px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); }
.review::before { content: "\201C"; position: absolute; right: 22px; top: 4px; font-family: Georgia, serif; font-size: 90px; line-height: 1; color: #FFD3E1; }
.stars { display: flex; gap: 3px; color: var(--pink); }
.stars .ic { width: 20px; height: 20px; }
.review p { font-size: 15.5px; }
.review footer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; color: var(--white); background: var(--g-cool); flex: none; }
.avatar.p { background: var(--g-hot); }
.avatar.v { background: linear-gradient(135deg, #5B2BB5, #9B3FD8); }
.review footer small { display: block; color: var(--muted); font-size: 13px; }
.rating-pill { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--line); font-weight: 800; }
.rating-pill b { font-size: 22px; }

/* ---------- CTA band ---------- */
.cta { display: grid; gap: 28px; align-items: center; }
.cta-form { padding: 26px; border-radius: var(--r-lg); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); display: grid; gap: 14px; }
.cta-form h3 { font-size: 22px; font-weight: 900; }
@media (min-width: 980px) { .cta { grid-template-columns: 1.1fr .9fr; gap: 50px; } }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; }
.field label, .field .lbl { font-size: 14px; font-weight: 800; }
.field .req { color: var(--pink-ink); }
.input, .field input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 16px; border-radius: 14px; border: 1.5px solid #D3D8EE; background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(35, 64, 216, .15); }
.field.bad input, .field.bad select, .field.bad textarea { border-color: var(--salmon-ink); box-shadow: 0 0 0 4px rgba(212, 42, 63, .12); }
.err { display: none; font-size: 13px; font-weight: 700; color: var(--salmon-ink); }
.field.bad .err { display: block; }
.frow { display: grid; gap: 14px; }
@media (min-width: 640px) { .frow.two { grid-template-columns: 1fr 1fr; } }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radios label { position: relative; }
.radios input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radios span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 14px; border: 1.5px solid #D3D8EE; font-weight: 700; font-size: 14px; background: var(--white); transition: border-color .2s, background-color .2s, color .2s; }
.radios input:checked + span { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }
.radios input:focus-visible + span { outline: 3px solid var(--pink); outline-offset: 2px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--pink-ink); flex: none; }
.form-ok { display: none; gap: 10px; padding: 18px; border-radius: 16px; background: #E6FAF0; color: #0C5B35; font-weight: 700; }
.form-ok.show { display: grid; }
.form-note { font-size: 13px; color: var(--muted); }

/* ---------- page hero (inner pages) ---------- */
.phero { position: relative; isolation: isolate; overflow: hidden; background: var(--g-hero); color: var(--white); padding-block: clamp(40px, 6vw, 76px); }
.phero .hero-fx .streaks { width: 60%; }
.phero-grid { display: grid; gap: 26px; align-items: center; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #C9D0FF; margin-bottom: 16px; list-style: none; }
.crumbs a:hover { color: var(--white); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #FF9BBE; }
.crumbs [aria-current] { color: var(--white); }
.phero h1 { font-size: clamp(44px, 7vw, 92px); filter: drop-shadow(0 5px 0 rgba(5, 10, 42, .3)); }
.phero .lead { margin-top: 16px; }
.phero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.phero-art { position: relative; display: none; justify-items: center; }
.phero-art img { width: min(100%, 360px); filter: drop-shadow(0 26px 34px rgba(5, 10, 42, .45)); }
.phero-emoji { display: flex; gap: 14px; font-size: 64px; filter: drop-shadow(0 12px 18px rgba(5, 10, 42, .35)); }
@media (min-width: 900px) {
  .phero-grid { grid-template-columns: 1.3fr .7fr; }
  .phero-art { display: grid; }
}

/* ---------- jump links ---------- */
.jump { position: sticky; top: var(--hdr-h); z-index: 30; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--line); }
.jump .wrap { display: flex; gap: 8px; overflow-x: auto; padding-block: 10px; scrollbar-width: none; }
.jump .wrap::-webkit-scrollbar { display: none; }
.jump a { flex: none; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 18px; counter-reset: st; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.step { position: relative; padding: 26px 22px 22px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); counter-increment: st; }
.step::before { content: "0" counter(st); display: block; font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; font-size: 48px; line-height: 1; background: var(--g-hot); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }
.step .em { position: absolute; right: 20px; top: 22px; font-size: 30px; }

/* ---------- plans ---------- */
.plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); align-items: stretch; }
.plan { position: relative; display: grid; gap: 16px; align-content: start; padding: 30px 26px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.plan.feat { background: var(--g-band); color: var(--white); border: 0; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan .ribbon { position: absolute; top: -13px; left: 26px; padding: 5px 14px; border-radius: 999px; background: var(--g-hot-bright); color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan h3 { font-size: 22px; font-weight: 900; }
.plan .amt { font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; font-size: 58px; line-height: .9; }
.plan .amt small { font-family: var(--f-body); font-style: normal; font-size: 15px; font-weight: 700; opacity: .8; }
.plan p { color: var(--muted); font-size: 15px; }
.plan.feat p, .plan.feat .elist small { color: #D5DBFF; }
.plan .elist { gap: 9px; font-size: 15px; }
.plan .elist .e { width: 28px; height: 28px; font-size: 14px; border-radius: 9px; }
.plan.feat .elist .e { background: rgba(255, 255, 255, .12); }

/* ---------- info panels / misc ---------- */
.split { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.wide-l { grid-template-columns: 1.15fr .85fr; } }
.panel { padding: clamp(24px, 3vw, 36px); border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.panel-dark { background: var(--g-band); color: var(--white); border: 0; }
.grid-3 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.grid-4 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.mini { display: grid; gap: 10px; padding: 22px; border-radius: 20px; background: var(--white); border: 1px solid var(--line); }
.mini .em { font-size: 32px; line-height: 1; }
.mini h3 { font-size: 17px; font-weight: 800; }
.mini p { font-size: 14.5px; color: var(--muted); }
.note { display: flex; gap: 12px; padding: 16px 18px; border-radius: 16px; background: #FFF4E6; color: #6B3B00; font-size: 14.5px; }
.note .em { font-size: 20px; }
.kicker-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.divider-wave { display: block; width: 100%; height: 60px; }

/* ---------- product detail ---------- */
.pd { display: grid; gap: 34px; padding-block: 34px 60px; }
@media (min-width: 980px) { .pd { grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: start; } .gallery { position: sticky; top: calc(var(--hdr-h) + 20px); } }
.gallery { display: grid; gap: 14px; }
.g-main { position: relative; aspect-ratio: 1 / 1; border-radius: 28px; overflow: hidden; background: radial-gradient(75% 70% at 50% 42%, #FFFFFF 0%, #EEF1FF 62%, #DDE3FB 100%); border: 1px solid var(--line); cursor: zoom-in; }
.g-main::before { content: ""; position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; right: -14%; top: -18%; background: radial-gradient(circle, rgba(255, 46, 126, .2), transparent 70%); }
.g-main::after { content: ""; position: absolute; width: 50%; aspect-ratio: 1; border-radius: 50%; left: -14%; bottom: -20%; background: radial-gradient(circle, rgba(35, 64, 216, .16), transparent 70%); }
.g-stage { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }
.g-stage img { width: 82%; height: 82%; object-fit: contain; transition: opacity .25s, transform .25s; transform-origin: var(--zx, 50%) var(--zy, 50%); }
.g-stage img.photo-view { width: 100%; height: 100%; object-fit: cover; }
.g-main.zoom .g-stage img { transform: scale(1.9); }
.g-main.fade .g-stage img { opacity: 0; }
.g-badges { position: absolute; left: 16px; top: 16px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.g-count { position: absolute; right: 16px; bottom: 16px; z-index: 2; padding: 5px 12px; border-radius: 999px; background: rgba(11, 22, 80, .82); color: var(--white); font-size: 13px; font-weight: 800; }
.g-nav { position: absolute; top: 50%; z-index: 2; width: 46px; height: 46px; margin-top: -23px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--navy-800); box-shadow: var(--shadow); transition: background-color .2s, color .2s; }
.g-nav:hover { background: var(--navy-800); color: var(--white); }
.g-prev { left: 14px; }
.g-next { right: 14px; }
.g-prev .ic { transform: rotate(180deg); }
.g-hint { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .9); font-size: 12.5px; font-weight: 700; color: var(--muted); }
.g-hint .ic { width: 15px; height: 15px; }
.g-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.g-thumb { position: relative; aspect-ratio: 1; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at 50% 45%, #FFFFFF, #EEF1FF 75%); border: 2px solid var(--line); display: grid; place-items: center; transition: border-color .2s, transform .2s; }
.g-thumb img { width: 80%; height: 80%; object-fit: contain; }
.g-thumb img.photo-view { width: 100%; height: 100%; object-fit: cover; }
.g-thumb:hover { transform: translateY(-3px); }
.g-thumb[aria-selected="true"] { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 46, 126, .2); }
.g-thumb span { position: absolute; left: 6px; right: 6px; bottom: 6px; padding: 2px 4px; border-radius: 8px; background: rgba(255, 255, 255, .92); font-size: 11px; font-weight: 800; text-align: center; color: var(--navy-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pi { display: grid; gap: 18px; }
.pi-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pi h1 { font-size: clamp(34px, 4.4vw, 52px); }
.pi-ids { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 14px; color: var(--muted); }
.pi-ids b { color: var(--ink); }
.pi-rate { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--muted); }
.pi-rate .stars .ic { width: 18px; height: 18px; }
.pi-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding: 18px 20px; border-radius: 20px; background: var(--soft); }
.pi-price .now { font-size: 38px; font-weight: 900; letter-spacing: -.01em; line-height: 1; }
.pi-price .was { color: var(--muted); text-decoration: line-through; font-weight: 700; }
.pi-price .mo { width: 100%; font-size: 14px; color: var(--muted); }
.pi-price .mo b { color: var(--pink-ink); }
.spec-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.spec-chip { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 16px; border: 1px solid var(--line); background: var(--white); }
.spec-chip .em { font-size: 22px; }
.spec-chip small { display: block; font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.spec-chip b { display: block; font-size: 15px; line-height: 1.25; }
@media (min-width: 640px) { .spec-chips { grid-template-columns: repeat(4, 1fr); } .spec-chip { flex-direction: column; align-items: flex-start; } }
.opt-group { display: grid; gap: 10px; }
.opt-group .lbl { font-weight: 800; font-size: 14px; }
.qty { display: inline-flex; align-items: center; border-radius: 999px; border: 1.5px solid #D3D8EE; background: var(--white); }
.qty button { width: 48px; height: 48px; display: grid; place-items: center; font-size: 22px; font-weight: 800; border-radius: 50%; }
.qty button:hover { color: var(--pink-ink); }
.qty input { width: 52px; text-align: center; border: 0; font-weight: 900; font-size: 17px; background: none; -moz-appearance: textfield; appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.buy-row .btn-hot { flex: 1; min-width: 200px; }
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.perk { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 14px; background: var(--soft); font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.perk .em { font-size: 20px; }
.fields { width: 100%; font-size: 15px; }
.fields th, .fields td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.fields th { width: 42%; font-weight: 700; color: var(--muted); }
.fields th .em { margin-right: 6px; }
.fields td { font-weight: 700; color: var(--ink); }
.fields tr:nth-child(odd) { background: var(--soft); }
.fields tr:last-child th, .fields tr:last-child td { border-bottom: 0; }
.tbl-wrap { border-radius: 18px; border: 1px solid var(--line); overflow: hidden; overflow-x: auto; }
.docs { display: grid; gap: 10px; }
.doc { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line); background: var(--white); }
.doc .em { font-size: 24px; }
.doc div { flex: 1; }
.doc small { display: block; color: var(--muted); font-size: 13px; }
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; align-items: center; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: var(--white); box-shadow: 0 -10px 30px rgba(11, 22, 80, .15); transform: translateY(110%); transition: transform .3s; }
.sticky-buy.show { transform: none; }
.sticky-buy .p { flex: 1; min-width: 0; }
.sticky-buy .p b { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .p span { font-weight: 900; }
@media (min-width: 980px) { .sticky-buy { display: none; } }

/* ---------- catalogue ---------- */
.cat { display: grid; gap: 24px; padding-block: 34px 70px; }
@media (min-width: 1000px) { .cat { grid-template-columns: 280px 1fr; gap: 32px; align-items: start; } .filters { position: sticky; top: calc(var(--hdr-h) + 20px); } }
.filters { display: grid; gap: 12px; }
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.filters-head h2 { font-size: 20px; font-weight: 900; }
.filters .acc { gap: 10px; }
.filters .acc-btn { padding: 12px 14px; font-size: 15px; }
.filters .acc-ico { width: 32px; height: 32px; font-size: 16px; border-radius: 10px; }
.filters .acc-chev { width: 28px; height: 28px; }
.filters .acc-body { padding: 0 14px 14px; }
.fopt { display: flex; align-items: center; gap: 10px; padding: 6px 4px; font-size: 14.5px; font-weight: 600; color: var(--ink); cursor: pointer; border-radius: 8px; }
.fopt:hover { background: var(--soft); }
.fopt input { width: 18px; height: 18px; accent-color: var(--pink-ink); flex: none; }
.fopt span { flex: 1; }
.fopt em { font-style: normal; font-size: 12px; font-weight: 800; color: var(--muted); background: var(--soft-2); padding: 1px 8px; border-radius: 999px; }
.filters-toggle { display: inline-flex; }
@media (max-width: 999px) {
  .filters-panel { display: none; }
  .filters.open .filters-panel { display: grid; gap: 10px; }
}
@media (min-width: 1000px) { .filters-toggle { display: none; } .filters-panel { display: grid; gap: 10px; } }
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: space-between; margin-bottom: 18px; }
.toolbar .count { font-weight: 800; }
.toolbar .count span { color: var(--pink-ink); }
.tool-r { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tool-r select { min-height: 44px; padding: 8px 14px; border-radius: 12px; border: 1.5px solid #D3D8EE; background: var(--white); font-weight: 700; }
.view-btns { display: inline-flex; border-radius: 12px; border: 1.5px solid #D3D8EE; overflow: hidden; }
.view-btns button { width: 44px; height: 42px; display: grid; place-items: center; color: var(--muted); }
.view-btns button[aria-pressed="true"] { background: var(--navy-800); color: var(--white); }
.search { position: relative; }
.search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search input { width: 100%; min-height: 54px; padding: 12px 18px 12px 48px; border-radius: 999px; border: 0; background: var(--white); color: var(--ink); box-shadow: 0 10px 30px rgba(5, 10, 42, .25); font-weight: 600; }
.search input:focus { outline: 3px solid var(--pink); outline-offset: 2px; }
.empty { display: none; padding: 40px 20px; border-radius: 22px; border: 2px dashed var(--line); text-align: center; color: var(--muted); }
.empty.show { display: block; }
.active-f { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.active-f button { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: #FFE3EC; color: var(--pink-ink); font-weight: 800; font-size: 13px; }
.active-f button .ic { width: 14px; height: 14px; }

/* ---------- area / map ---------- */
.county-grid { display: grid; gap: 22px; }
@media (min-width: 980px) { .county-grid { grid-template-columns: .85fr 1.15fr; align-items: start; } .mapbox { position: sticky; top: calc(var(--hdr-h) + 20px); } }
.mapbox { padding: 18px; border-radius: var(--r-lg); background: var(--g-band); color: var(--white); }
.mapbox svg { width: 100%; height: auto; }
.mapbox .legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; font-size: 13px; color: #D5DBFF; }
.mapbox .legend span { display: inline-flex; align-items: center; gap: 6px; }
.mapbox .legend i { width: 12px; height: 12px; border-radius: 4px; }
.towns { display: flex; flex-wrap: wrap; gap: 6px; }
.towns a { padding: 6px 12px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--ink); transition: background-color .2s, color .2s; }
.towns a:hover { background: var(--navy-800); color: var(--white); }
.towns a.hide { display: none; }
.county-svg path { transition: fill-opacity .2s; cursor: pointer; }
.county-svg path:hover, .county-svg path.on { fill-opacity: 1; }

/* ---------- financing calculator ---------- */
.calc { display: grid; gap: 22px; }
@media (min-width: 900px) { .calc { grid-template-columns: 1.1fr .9fr; } }
.range { width: 100%; accent-color: var(--pink-ink); height: 30px; }
.calc-out { display: grid; gap: 12px; align-content: center; text-align: center; padding: 30px; border-radius: var(--r-lg); background: var(--g-band); color: var(--white); }
.calc-out .big { font-family: var(--f-display); font-style: italic; font-synthesis: style; font-weight: 700; font-size: clamp(64px, 9vw, 96px); line-height: .9; }
.calc-out small { color: #D5DBFF; }
.calc-row { display: flex; justify-content: space-between; gap: 10px; font-weight: 800; }
.calc-row output { color: var(--pink-ink); }

/* ---------- timeline / team ---------- */
.team { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.member { padding: 24px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); text-align: center; display: grid; gap: 8px; justify-items: center; }
.member .avatar { width: 88px; height: 88px; font-size: 30px; font-family: var(--f-display); font-style: italic; font-synthesis: style; box-shadow: 0 0 0 5px var(--white), 0 0 0 7px #FFD3E1; }
.member h3 { font-size: 17px; font-weight: 800; }
.member small { color: var(--pink-ink); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.member p { font-size: 14px; color: var(--muted); }
.creds { display: flex; flex-wrap: wrap; gap: 10px; }
.cred { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px; background: var(--white); border: 1px solid var(--line); font-weight: 800; font-size: 14px; }
.cred .em { font-size: 22px; }

/* ---------- promise tiles + footer ---------- */
.tiles { background: var(--navy-900); color: var(--white); }
.tiles .wrap { display: grid; gap: 1px; grid-template-columns: 1fr 1fr; padding-block: 0; }
.tile { display: flex; gap: 12px; align-items: center; padding: 22px 8px; }
.tile .ic-w { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--g-hot); flex: none; }
.tile .ic-w .ic { width: 22px; height: 22px; }
.tile b { display: block; font-size: 15px; }
.tile small { display: block; color: #AEB6E6; font-size: 13px; line-height: 1.35; }
@media (min-width: 900px) { .tiles .wrap { grid-template-columns: repeat(4, 1fr); } }

.ftr { background: var(--navy-950); color: #C9D0FF; font-size: 15px; padding-top: 56px; }
.ftr-grid { display: grid; gap: 8px; }
.ftr h2 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--white); font-weight: 900; }
.ftr a:hover { color: var(--white); }
.ftr-brand { display: grid; gap: 14px; padding-bottom: 20px; }
.ftr-brand .brand img { width: 64px; height: 64px; }
.ftr-brand p { max-width: 36ch; }
.ftr-contact { display: grid; gap: 10px; }
.ftr-contact a, .ftr-contact span { display: flex; gap: 10px; align-items: flex-start; }
.ftr-contact .ic { color: var(--salmon); margin-top: 3px; }
.ftr-contact .big { font-size: 24px; font-weight: 900; color: var(--white); }
.ftr-col ul { list-style: none; display: grid; gap: 9px; }
.ftr-col .acc-btn { padding: 16px 0; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--white); font-weight: 900; border-radius: 0; }
.ftr-col .acc-item { background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); border-radius: 0; }
.ftr-col .acc-item.open { box-shadow: none; }
.ftr-col .acc-chev { background: rgba(255, 255, 255, .08); color: var(--white); width: 28px; height: 28px; }
.ftr-col .acc-body { padding: 0 0 18px; color: #C9D0FF; }
.ftr .link-arrow { color: var(--salmon); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: var(--white); transition: background-color .2s; }
.social a:hover { background: var(--pink-ink); }
.social .ic { width: 20px; height: 20px; }
.ftr-bottom { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 20px 28px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 13.5px; }
.ftr-bottom .badges { display: flex; flex-wrap: wrap; gap: 8px; }
.ftr-bottom .badges span { padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-weight: 700; font-size: 12.5px; }
@media (min-width: 900px) {
  .ftr-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.1fr; gap: 34px; }
  .ftr-col .acc-btn { pointer-events: none; padding: 0 0 16px; }
  .ftr-col .acc-chev { display: none; }
  .ftr-col .acc-item { border: 0; }
  .js .ftr-col .acc-panel { grid-template-rows: 1fr; }
  .js .ftr-col .acc-item:not(.open) > .acc-panel > .acc-in { visibility: visible; }
}

/* ---------- floating controls ---------- */
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-800); color: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, transform .25s, visibility .25s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top .ic { transform: rotate(-90deg); }
.has-sticky-buy .to-top { bottom: 92px; }
.call-fab { position: fixed; left: 16px; bottom: 16px; z-index: 70; display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px 12px 12px; border-radius: 999px; background: var(--g-hot); color: var(--white); font-weight: 900; box-shadow: var(--glow-pink); }
.call-fab .ic { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
@media (min-width: 900px) { .call-fab { display: none; } }
.has-sticky-buy .call-fab { display: none; }

.tpl-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: var(--white); font-size: 12.5px; font-weight: 800; }
.tpl-toggle[aria-pressed="true"] { background: var(--pink-ink); }
.tpl-toggle .dot { width: 8px; height: 8px; border-radius: 50%; background: #FF9BBE; }
.tpl [data-ph] { outline: 2px dashed var(--pink); outline-offset: 2px; background-color: rgba(255, 46, 126, .08); border-radius: 4px; }
.tpl-bar { position: fixed; left: 50%; top: 12px; z-index: 150; visibility: hidden; transform: translate(-50%, -200%); padding: 10px 16px; border-radius: 999px; background: var(--pink-ink); color: var(--white); font-size: 14px; font-weight: 800; box-shadow: var(--glow-pink); transition: transform .3s; white-space: nowrap; }
.tpl .tpl-bar { visibility: visible; transform: translate(-50%, 0); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 160; transform: translate(-50%, 150%); padding: 12px 20px; border-radius: 999px; background: var(--navy-800); color: var(--white); font-weight: 800; box-shadow: var(--shadow-lg); transition: transform .3s; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } .hero-art .unit { animation: none; } .marq-track { animation: none; } }

/* ---------- 404 ---------- */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.nf .display { font-size: clamp(110px, 20vw, 220px); }

/* ---------- small-screen refinements ---------- */
@media (max-width: 639px) {
  .ht-hvac { margin-left: .42em; }
  .hero-art { min-height: 0; margin-top: 8px; }
  .hero-art .unit { width: 62%; }
  .fx-icon { width: 22%; }
  .chip-float { display: none; }
  .hero-foot { margin-top: 26px; }
  .callbox { width: 100%; }
  .hero-actions .btn-white { width: 100%; }
  .promise-badge { width: 150px; height: 150px; font-size: 24px; }
}
@media (max-width: 559px) {
  .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pcard { border-radius: 18px; }
  .pcard-body { padding: 12px 12px 14px; gap: 6px; }
  .pcard h3 { font-size: 14.5px; }
  .pcard .chips { display: none; }
  .pcard-brand { font-size: 11px; }
  .pcard-flag { left: 8px; top: 8px; font-size: 10.5px; }
  .price { font-size: 16px; }
  .price-call { font-size: 12.5px; }
  .pcard-go { width: 32px; height: 32px; }
  .list-view .pgrid { grid-template-columns: 1fr; }
}
.phero .lead { color: #DCE1FF; }
.phero .phero-emoji { font-size: 92px; gap: 18px; }
.scard p { overflow-wrap: anywhere; }
.hero-actions { row-gap: 28px; }
@media (min-width: 980px) {
  .hero-art .unit { width: min(64%, 400px); }
  .fx-snow { left: -2%; top: 36%; }
  .fx-flame { right: -3%; top: 30%; }
  .cf-1 { left: 10%; bottom: 8%; }
  .cf-2 { right: 0; top: 10%; }
}
.qt { min-width: 0; }
@media (max-width: 400px) {
  .ubar { font-size: 12px; }
  .ubar .wrap { gap: 8px; }
  .ubar-l, .ubar-r { gap: 10px; }
  .brand-t b { font-size: 20px; }
  .brand img { width: 46px; height: 46px; }
}
@media (max-width: 360px) {
  .qt { padding: 16px 12px; }
  .qt h3 { font-size: 15.5px; }
  .qt p { font-size: 13px; }
}
.tile { min-width: 0; }
@media (max-width: 559px) { .tiles .wrap { grid-template-columns: 1fr; } .tile { padding: 14px 0; } }
.toolbar > * { min-width: 0; }
.h2 { overflow-wrap: break-word; }
@media (max-width: 360px) { .h2 { font-size: 31px; } }
.split > *, .season > *, .cta > *, .county-grid > *, .brief > *, .pd > *, .cat > * { min-width: 0; }
.split .stats { grid-template-columns: repeat(2, 1fr); } .stat { min-width: 0; }
/* skip rendering work for sections that are off screen until they are near */
.sec, .tiles, .ftr { content-visibility: auto; contain-intrinsic-size: auto 900px; }
