/* ==========================================================================
   Hotsy of Orlando — main stylesheet
   Industrial, confident, easy to scan. Mobile-first.
   ========================================================================== */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  /* REPLACEABLE IMAGES — swap a file in assets/ or point these at a new one */
  --img-stripe-photo: url("assets/shop-hot-water-trailers.jpg");
  /* END REPLACEABLE IMAGES */

  --red: #d6202d;
  --red-dark: #a8131d;
  --red-soft: #fdeceb;
  --blue: #1c4f9c;
  --blue-dark: #143a73;
  --ink: #15181c;
  --ink-2: #2b3038;
  --muted: #555d68;
  --paper: #f7f5f2;
  --white: #ffffff;
  --tint: #eef1f4;
  --tint-2: #e4e8ed;
  --line: #d9dee5;
  --night: #111316;
  --night-2: #1b1e23;

  --font-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.4rem, 1.1rem + 1vw, 1.7rem);
  --step-3: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
  --step-4: clamp(2.35rem, 1.4rem + 3.8vw, 4.1rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: clamp(3rem, 2rem + 4vw, 5.5rem);

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(17, 19, 22, .06), 0 8px 24px rgba(17, 19, 22, .08);
  --shadow-lg: 0 2px 4px rgba(17, 19, 22, .06), 0 18px 40px rgba(17, 19, 22, .14);
  --header-h: 68px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--red-dark); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 3px; }
/* Blue focus ring is too faint on near-black areas: use white there */
.topbar :focus-visible, .trust :focus-visible, .section--dark :focus-visible, .cta-band :focus-visible,
.on-dark :focus-visible, .action-bar :focus-visible, .banner :focus-visible { outline-color: var(--white); }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: var(--step-4); text-transform: uppercase; }
h2 { font-size: var(--step-3); text-transform: uppercase; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

.visually-hidden {
  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-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: var(--white); padding: .7rem 1rem; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; color: var(--white); }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container--narrow { max-width: 860px; }

/* ---------- Buttons (one CTA vocabulary: "Call …" + "Request …") ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .7rem 1.35rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: .03em; text-transform: uppercase; text-decoration: none; line-height: 1.1;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid var(--btn-bg); border-radius: var(--radius-sm);
  cursor: pointer; transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-1px); color: var(--btn-fg); }
.btn--primary { --btn-bg: var(--red); box-shadow: 0 6px 18px rgba(214, 32, 45, .28); }
.btn--primary:hover { --btn-bg: var(--red-dark); }
.btn--secondary { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { --btn-bg: var(--ink); --btn-fg: var(--white); }
.on-dark .btn--secondary { --btn-fg: var(--white); border-color: rgba(255, 255, 255, .7); }
.on-dark .btn--secondary:hover { --btn-bg: var(--white); --btn-fg: var(--ink); border-color: var(--white); }
.btn--lg { min-height: 56px; padding: .85rem 1.6rem; font-size: 1.28rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.text-link {
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  letter-spacing: .03em; text-transform: uppercase; text-decoration: none; color: var(--red);
  display: inline-flex; align-items: center; gap: .35rem;
}
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover { color: var(--red-dark); }
.text-link:hover::after { transform: translateX(3px); }

/* Slanted tag, echoing the italic Hotsy wordmark */
.eyebrow {
  display: inline-block; position: relative; margin: 0 0 1rem; padding: .28rem .8rem .24rem;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--white); z-index: 0;
}
.eyebrow::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--red); transform: skewX(-14deg); border-radius: 2px;
}
.eyebrow--blue::before { background: var(--blue); }

.lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.28rem); color: var(--ink-2); max-width: 60ch; }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--night); color: #c9ced6; font-size: var(--step--1); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #ffb3b8; }
.topbar__info { display: none; margin: 0; }
.topbar__badge { display: inline-flex; align-items: center; gap: .45rem; margin: 0; }
.topbar__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(6px);
}
.site-header__bar { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; margin-right: auto; }
.brand img { width: 158px; height: auto; }

.header-call { display: none; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: var(--radius-sm); border: 2px solid var(--line); background: var(--white);
  color: var(--ink); cursor: pointer; text-decoration: none;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn--call { background: var(--red); border-color: var(--red); color: var(--white); }
.icon-btn--call:hover { background: var(--red-dark); color: var(--white); }
.nav-toggle { display: none; }
.js .nav-toggle { display: inline-flex; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* Mobile navigation: visible as a plain list without JS, a panel with JS */
.site-nav { width: 100%; }
.site-header__bar { flex-wrap: wrap; }
.nav-list { list-style: none; margin: 0; padding: 0 0 1rem; }
.nav-list a, .nav-list .nav-parent {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: .7rem 0; border: 0; background: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink); text-decoration: none; text-align: left;
  border-bottom: 1px solid var(--line);
}
.nav-list a:hover, .nav-list .nav-parent:hover { color: var(--red); }
.nav-list a[aria-current="page"] { color: var(--red); }
.nav-parent svg { width: 14px; height: 14px; transition: transform .18s ease; }
.subnav { list-style: none; margin: 0; padding: 0 0 .4rem .9rem; }
.subnav a { font-family: var(--font-body); font-weight: 600; font-size: 1rem; text-transform: none; letter-spacing: 0; padding: .55rem 0; color: var(--ink-2); }
.subnav .subnav__ext { color: var(--blue); }

.js .site-nav { display: none; }
.js.nav-open .site-nav { display: block; max-height: calc(100vh - var(--header-h) - 20px); overflow-y: auto; }
.js .nav-parent[aria-expanded="false"] + .subnav { display: none; }
.js .nav-parent[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ---------- Sections ---------- */
.section { padding-block: var(--space-5); }
.section--tint { background: var(--tint); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--night); color: #d7dbe1; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section-head { max-width: 760px; margin-bottom: var(--space-4); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section--dark .section-head p { color: #b8bec8; }
.section-head--row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; max-width: none; }
.section-head--row > div { max-width: 720px; }

/* ---------- Home hero ---------- */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero::after {
  /* decorative diagonal stripe (no photo is clipped) */
  content: ""; position: absolute; right: -12%; top: -30%; width: 55%; height: 170%;
  background: linear-gradient(180deg, rgba(214, 32, 45, .09), rgba(28, 79, 156, .07));
  transform: skewX(-14deg); pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 1.5rem; padding-block: 1.6rem 2.4rem; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--red); }
.hero__promise { font-size: clamp(1.06rem, 1rem + .45vw, 1.3rem); color: var(--ink-2); max-width: 36ch; margin-bottom: 1.25rem; }
.hero__actions { margin-bottom: 1rem; }
.hero__actions .btn { flex: 1 1 auto; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; margin: 0; padding: 0; list-style: none; font-size: var(--step--1); color: var(--muted); }
.hero__meta li { display: inline-flex; align-items: center; gap: .4rem; }
.hero__meta svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.hero__media { position: relative; margin: 0; order: -1; }
.hero__media figcaption { display: none; }
.hero__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero__media figcaption { margin-top: .6rem; font-size: var(--step--1); color: var(--muted); }
.hero__badge {
  position: absolute; left: -.5rem; bottom: 2.4rem; display: none;
  background: var(--white); border-radius: var(--radius-sm); padding: .5rem .75rem; box-shadow: var(--shadow);
}
.hero__badge img { width: 120px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--night); color: var(--white); }
.trust__list { list-style: none; margin: 0; padding: 1.1rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 1.2rem; }
.trust__list li { display: flex; align-items: center; gap: .65rem; line-height: 1.25; font-size: .95rem; color: #cfd4db; }
.trust__list strong { display: block; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); }
.trust__icon { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(214, 32, 45, .18); color: #ff6b74; }
.trust__icon svg { width: 20px; height: 20px; }

/* ---------- Product / service cards (compact 2-up on mobile) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; list-style: none; margin: 0; padding: 0; }
.card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--tint); border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; color: var(--ink); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); background: #f3f5f8; color: var(--ink); }
.card__media { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: .6rem .6rem 0; }
.card__media img { width: 100%; height: 100%; object-fit: contain; }
.card__media--photo { padding: 0; }
.card__media--photo img { border-radius: var(--radius) var(--radius) 0 0; }
.is-cutout { mix-blend-mode: multiply; }
.card__body { padding: .7rem .8rem .9rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; line-height: 1.05; margin: 0; text-transform: uppercase; letter-spacing: .01em; }
.card__text { font-size: .9rem; line-height: 1.4; color: var(--muted); margin: 0; }
.card__more { margin-top: auto; padding-top: .45rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--red); }
.card__more::after { content: " →"; }
.card:hover .card__title { color: var(--red-dark); }

/* ---------- Split sections ---------- */
.split { display: grid; gap: var(--space-4); align-items: center; }
.split__media { margin: 0; }
.split__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.split__media figcaption { font-size: var(--step--1); color: var(--muted); margin-top: .55rem; }
.media-stack { display: grid; gap: .75rem; }

.checklist { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .6rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center / 72% no-repeat;
}
.section--dark .checklist li { color: #d7dbe1; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.quote {
  margin: 0; height: 100%; display: flex; flex-direction: column; gap: 1rem;
  background: var(--night-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 1.5rem 1.4rem 1.3rem;
}
.quote__stars { color: #ffc24b; letter-spacing: .12em; font-size: 1rem; line-height: 1; }
.quote__text { margin: 0; font-size: 1.05rem; line-height: 1.6; color: #e6e9ee; }
.quote__author { margin: auto 0 0; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.quote__author::before { content: ""; display: inline-block; width: 18px; height: 3px; background: var(--red); vertical-align: middle; margin-right: .55rem; transform: skewX(-14deg); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 38%; height: 180%;
  background: linear-gradient(180deg, rgba(214, 32, 45, .08), rgba(28, 79, 156, .06));
  transform: skewX(-14deg); pointer-events: none;
}
.page-hero__grid { position: relative; z-index: 1; display: grid; gap: 1.75rem; align-items: center; padding-block: 1.25rem 2.5rem; }
.page-hero h1 { font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.6rem); }
.page-hero__media { margin: 0; }
.page-hero__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.page-hero__media--cutout { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; }
.page-hero__media--cutout img { box-shadow: none; max-height: 380px; width: auto; margin-inline: auto; object-fit: contain; }

.breadcrumb { font-size: var(--step--1); padding-top: 1.1rem; position: relative; z-index: 1; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: .35rem; color: #9aa2ad; }
.breadcrumb a { color: var(--muted); }

/* ---------- Promo banner ---------- */
.banner { background: var(--red); color: var(--white); }
.banner__items { list-style: none; margin: 0; padding: 0; }
.banner__item { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem 1rem; padding: .7rem 0; text-align: center; font-weight: 600; }
.banner__item a { color: var(--white); font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Product catalogs (models, detergents, accessories) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 1rem; list-style: none; margin: 0; padding: 0; }
.product-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.product {
  display: flex; flex-direction: column; height: 100%; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product__media { background: var(--tint); aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: .9rem; margin: 0; }
.product__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product__body { padding: 1rem 1.1rem 1.2rem; }
.product__name { font-size: 1.35rem; margin: 0 0 .35rem; }
.product__desc { margin: 0; font-size: .96rem; line-height: 1.55; color: var(--ink-2); }
.product-grid--compact .product__body { padding: .75rem .8rem .9rem; }
.product-grid--compact .product__name { font-size: 1.12rem; }
.product-grid--compact .product__desc { font-size: .88rem; }
.group-title { display: flex; align-items: center; gap: .8rem; margin: var(--space-4) 0 1.2rem; font-size: var(--step-2); text-transform: uppercase; }
.group-title::after { content: ""; flex: 1; height: 2px; background: var(--line); }
.group-title:first-child { margin-top: 0; }

.pill-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-weight: 600; font-size: .95rem; }

/* ---------- Rentals ---------- */
.rate-grid { display: grid; gap: 1rem; }
.rate-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.rate-card__media { background: var(--tint); margin: 0; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.rate-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.rate-card__body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.rate-card h2 { font-size: 1.5rem; text-transform: none; margin-bottom: .8rem; }
.rates { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.rates li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.rates li:last-child { border-bottom: 0; }
.rates__label { color: var(--ink-2); }
.rates__price { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--ink); }
.rate-card .btn { margin-top: auto; }
.note-grid { display: grid; gap: 1rem; }
.note { background: var(--white); border-left: 4px solid var(--red); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.note h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.note p { margin: 0; color: var(--ink-2); }

/* ---------- Gallery ---------- */
.gallery { columns: 1; column-gap: 1rem; list-style: none; margin: 0; padding: 0; }
.gallery__item { break-inside: avoid; margin: 0 0 1rem; }
.gallery__item figure { margin: 0; }
.gallery__item a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: auto; transition: transform .35s ease; }
.gallery__item a:hover img { transform: scale(1.02); }
.gallery__item figcaption { font-size: .92rem; color: var(--muted); padding: .5rem .15rem 0; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); max-height: 92vh; }
.lightbox::backdrop { background: rgba(10, 11, 13, .88); }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox p { color: #e6e9ee; text-align: center; margin: .6rem 0 0; }
.lightbox__close {
  position: absolute; top: .5rem; right: .5rem; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(17, 19, 22, .75); color: var(--white); font-size: 1.6rem; line-height: 1; cursor: pointer;
}

/* ---------- Catalog band ---------- */
.catalog-band { display: grid; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.catalog-band img { width: 180px; margin-inline: auto; }
.catalog-band h2 { font-size: var(--step-2); margin-bottom: .35rem; }
.catalog-band p { color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--night); color: #d7dbe1; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background: var(--img-stripe-photo) center / cover no-repeat;
}
.cta-band::after {
  content: ""; position: absolute; left: -10%; top: 0; bottom: 0; width: 26%;
  background: var(--red); transform: skewX(-14deg); opacity: .9;
}
.cta-band__inner { position: relative; z-index: 1; padding-block: clamp(2.6rem, 2rem + 3vw, 4.25rem); display: grid; gap: 1.25rem; }
.cta-band h2 { color: var(--white); margin: 0; font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem); }
.cta-band p { margin: 0; max-width: 56ch; color: #cfd4db; }
@media (max-width: 899px) {
  /* On narrow screens the slanted stripe would sit under the text: use a top rule instead */
  .cta-band::after { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 6px; transform: none; opacity: 1; }
}

/* ---------- Contact block & forms ---------- */
.contact-grid { display: grid; gap: var(--space-4); }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: .8rem; align-items: start; }
.contact-list .ci { width: 40px; height: 40px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; }
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 .1rem; color: var(--muted); }
.contact-list p { margin: 0; }
.contact-list a { font-weight: 600; }
.contact-list .big { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.contact-list .big:hover { color: var(--red); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .18rem 0; font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--muted); }
.dealer-badge { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; }
.dealer-badge img { width: 120px; }
.dealer-badge p { margin: 0; font-size: .92rem; color: var(--muted); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.form h2, .form h3 { margin-bottom: .3rem; }
.form__intro { color: var(--muted); margin-bottom: 1.2rem; }
.form__grid { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field .req { color: var(--red); }
.field .opt { font-weight: 400; color: var(--muted); font-size: .88rem; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: .7rem .85rem; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid #b9c1cc; border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 79, 156, .2); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
.hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__turnstile { min-height: 65px; }
.form__fine { font-size: .88rem; color: var(--muted); margin: .9rem 0 0; }
.form__status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius-sm); font-weight: 600; }
.form__status[hidden] { display: none; }
.form__status--ok { background: #e7f5ec; color: #14532d; border: 1px solid #a7d9b8; }
.form__status--error { background: var(--red-soft); color: #7f1119; border: 1px solid #f3b3b7; }
.form.is-sent .form__grid, .form.is-sent .form__submit, .form.is-sent .form__fine { display: none; }
.form button[disabled] { opacity: .7; cursor: progress; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; text-transform: none; }
.prose ul { margin: 0 0 1.2em; }
.prose li { margin-bottom: .35em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: #b8bec8; font-size: .96rem; }
.site-footer a { color: #e6e9ee; text-decoration: none; }
.site-footer a:hover { color: #ff9aa1; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; padding-block: 3rem 2rem; }
.footer-brand img.logo { width: 170px; background: var(--white); padding: .5rem .7rem; border-radius: var(--radius-sm); }
.footer-brand p { margin: 1rem 0 0; max-width: 34ch; }
.site-footer h2 { font-size: 1.15rem; letter-spacing: .06em; color: var(--white); margin: 0 0 .8rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-nap { font-style: normal; display: grid; gap: .45rem; }
.footer-nap .phone { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: var(--white); }
.footer-hours { list-style: none; padding: 0; margin: .8rem 0 0; display: grid; gap: .15rem; }
.social { display: flex; gap: .5rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); }
.social a:hover { background: var(--red); text-decoration: none; }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-fine { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 1.2rem 1.6rem; font-size: .85rem; color: #99a1ac; display: grid; gap: .35rem; }
.footer-fine p { margin: 0; }
.footer-fine a { color: #c3c9d2; text-decoration: underline; }
.footer-dealer { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1rem; }
.footer-dealer img { width: 96px; background: var(--white); border-radius: 4px; padding: 2px 4px; }

/* ---------- Mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(17, 19, 22, .96); box-shadow: 0 -6px 20px rgba(0, 0, 0, .18);
}
.action-bar .btn { min-height: 46px; font-size: 1.05rem; padding-inline: .6rem; }
.action-bar .btn--secondary { --btn-fg: var(--white); border-color: rgba(255, 255, 255, .6); }
body { padding-bottom: 66px; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.muted { color: var(--muted); }
.video-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.video-links a { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--line); background: var(--white); text-decoration: none; font-weight: 600; color: var(--ink); }
.video-links a:hover { border-color: var(--red); color: var(--red); }
.video-links svg { width: 18px; height: 18px; color: var(--red); }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 560px) {
  .trust__list { grid-template-columns: repeat(3, 1fr); }
  .hero__actions .btn { flex: 0 0 auto; }
  .gallery { columns: 2; }
  .catalog-band { grid-template-columns: 180px 1fr; }
  .form__grid--2 { grid-template-columns: 1fr 1fr; }
  .form__grid--2 .field--full { grid-column: 1 / -1; }
  .quotes { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .card__body { padding: .9rem 1rem 1.1rem; }
  .card__title { font-size: 1.4rem; }
  .card__text { font-size: .95rem; }
  .product-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .note-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar__info { display: block; }
}

@media (min-width: 900px) {
  :root { --header-h: 78px; }
  body { padding-bottom: 0; }
  .action-bar { display: none; }
  .brand img { width: 186px; }
  .hero__grid { grid-template-columns: 1.02fr 1fr; align-items: center; gap: 3rem; padding-block: 3rem 3.75rem; }
  .hero__badge { display: block; }
  .page-hero__grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; padding-block: 1.5rem 3.25rem; }
  .page-hero__grid--solo { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split--reverse .split__media { order: 2; }
  .trust__list { grid-template-columns: repeat(5, 1fr); padding: 1.3rem 0; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .cta-band__inner { grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding-left: 22%; }
  .cta-band::after { width: 20%; left: -6%; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }
  .quotes { grid-template-columns: repeat(4, 1fr); }
  .quotes--2 { grid-template-columns: 1fr 1fr; }
  .rate-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 3; }
  .header-call { display: inline-flex; }
  .icon-btn--call { display: none; }

  /* Desktop navigation */
  .js .nav-toggle { display: none; }
  .site-header__bar { flex-wrap: nowrap; }
  .site-nav, .js .site-nav { display: block; width: auto; }
  .nav-list { display: flex; align-items: center; gap: .15rem; padding: 0; }
  .nav-list > li { position: relative; }
  .nav-list > li > a, .nav-list .nav-parent {
    width: auto; border: 0; padding: .5rem .7rem; font-size: 1.12rem; border-radius: var(--radius-sm); gap: .35rem;
  }
  .nav-list > li > a:hover, .nav-list .nav-parent:hover { background: var(--tint); color: var(--ink); }
  .nav-list > li > a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -3px 0 var(--red); border-radius: 0; }
  .subnav, .js .nav-parent[aria-expanded="false"] + .subnav {
    display: block; position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .subnav::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
  .has-sub:hover > .subnav, .has-sub:focus-within > .subnav, .js .nav-parent[aria-expanded="true"] + .subnav {
    opacity: 1; visibility: visible; transform: none;
  }
  .subnav a { padding: .55rem .75rem; border-radius: var(--radius-sm); border: 0; }
  .subnav a:hover { background: var(--tint); color: var(--red-dark); }
  .subnav a[aria-current="page"] { color: var(--red); }
  .subnav .subnav__ext { border-top: 1px solid var(--line); margin-top: .3rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
}

@media (min-width: 1100px) {
  .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nav-list > li > a, .nav-list .nav-parent { padding-inline: .9rem; font-size: 1.18rem; }
}

/* ---------- Late additions: small components ---------- */
.h-card { font-size: var(--step-2); text-transform: uppercase; margin-bottom: 1rem; }
.hours [data-ss-field="close"]:not(:empty)::before { content: " – "; }
.quote { position: relative; }
.quote::before {
  content: "“"; position: absolute; top: .35rem; right: 1rem; font-family: Georgia, serif;
  font-size: 4.5rem; line-height: 1; color: var(--red); opacity: .55; pointer-events: none;
}
.split--even { align-items: stretch; }
.split--even > * { height: 100%; }
.page-hero__media--cutout.split__media img { max-height: 420px; width: auto; margin-inline: auto; }

@media (min-width: 900px) {
  .hero__media { order: 0; }
  .hero__media figcaption { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .topbar, .site-header, .action-bar, .cta-band, .form { display: none !important; }
  body { padding: 0; }
}
.hours [data-ss-field="note"]:not(:empty) { color: var(--muted); }
