﻿/* ============================================================
   All Seasons Rentals - THE stylesheet. One file, whole site.
   THEME: change colors/spacing here only - pages carry no styling.
   Sale banner art path: images/brand/banner-sale.jpg
   ============================================================ */

/* LIGHT THEME — the DEFAULT (:root). Brand navy/red unchanged. */
:root{
  --bg:#f2f3f6;          /* page background */
  --panel:#ffffff;       /* card / panel surface */
  --panel-2:#f7f8fa;     /* raised surface */
  --line:#d9dde5;        /* borders */
  --text:#1c2330;
  --muted:#5b6675;
  --navy:#1e3d8f;        /* logo pill navy */
  --link:#1e50b0;        /* readable navy on light */
  --red:#e11b22;         /* Hotsy red - SALE/accent ONLY */
  --radius:12px;
  /* chrome */
  --hdr-a:#f7f8fa; --hdr-b:#dfe2e9; --hdr-border:#c3c8d3;   /* brushed-silver header */
  --nav-ink:#2a3a5f; --nav-hover:#e7eaf1;
  --search-bg:#ffffff; --search-border:#c3c8d3; --search-ph:#7a8291;
  --tile-alt:#ffffff; --price-ink:#101722; --ph-bg:#eceef2;
  --side-ink:#3c4557; --side-hover:#eef0f5;
  --soft-ink:#3f4757; --warn-bg:#fbe9e9; --warn-ink:#7a1f24; --sale-ink:#c9161d;
}

/* DARK THEME — the original design, preserved exactly. Toggled via the header
   sun/moon button; choice persists in localStorage (see site.js). */
html[data-theme="dark"]{
  --bg:#0b0b0d;
  --panel:#1c1c1f;
  --panel-2:#232327;
  --line:#2a2a31;
  --text:#f2f2f4;
  --muted:#a0a0aa;
  --navy:#1e3d8f;
  --link:#5b8ce0;
  --red:#e11b22;
  --hdr-a:#232327; --hdr-b:#161619; --hdr-border:#3a3a42;
  --nav-ink:#dfe3ec; --nav-hover:#2e2e35;
  --search-bg:#2a2a31; --search-border:#52525e; --search-ph:#c2c7d2;
  --tile-alt:#101013; --price-ink:#ffffff; --ph-bg:#0e0e11;
  --side-ink:#cfd3dc; --side-hover:#26262c;
  --soft-ink:#c9ccd4; --warn-bg:#1a1416; --warn-ink:#e8caca; --sale-ink:#ff5a60;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);
     font:15px/1.5 system-ui,"Segoe UI",Roboto,Arial,sans-serif}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}

/* ---------- header (byte-identical block on every page) ---------- */
/* The top bar (phone · hours · propane) sticks with the header so the number stays
   at the top of the page while scrolling. --tb is the top bar's height: the header
   sticks directly beneath it, and the catalog offsets below account for both. */
:root{--tb:39px}
.topbar{background:#000;border-bottom:1px solid var(--line);font-size:13px;
        position:sticky;top:0;z-index:51}
.topbar .in{max-width:1280px;margin:0 auto;padding:6px 18px;
            display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.topbar .phone{font-weight:800;color:#fff;font-size:14px}
.topbar .hours{color:#9aa0ab;font-size:12px} /* topbar stays black in both themes */
.topbar .propane{margin-left:auto;padding:3px 12px;border-radius:20px;font-weight:700}
/* .propane is used in the topbar AND inline on the Sales page — text is ALWAYS white on the navy pill */
.propane{color:#fff !important;background:var(--navy)}
.header{position:sticky;top:var(--tb);z-index:50;
        background:linear-gradient(var(--hdr-a),var(--hdr-b));
        border-bottom:2px solid var(--hdr-border)}
.header .in{max-width:1280px;margin:0 auto;padding:0 18px;min-height:74px;
            display:flex;align-items:stretch;gap:14px}
.header .logo{display:flex;align-items:center;flex:0 0 auto;margin-right:10px}
/* Logo: source art is a tight crop on white — the padding + radius here give it
   the same white-plate look as the other white-background elements. */
.header .logo img{height:48px;width:auto;background:#fff;padding:6px 12px;
                  border-radius:10px;box-sizing:content-box}
/* ---------- NAV: one square row. Every item — plain link or dropdown — is the
   same full-height block, so nothing floats or misaligns. Dealer-site style. ---------- */
.nav{display:flex;align-self:stretch;gap:0}
.nav>a,.nav .dd>a{display:flex;align-items:center;height:100%;
  color:var(--nav-ink);font-weight:800;font-size:15px;letter-spacing:.3px;
  text-transform:uppercase;padding:0 18px;white-space:nowrap;border-radius:0;
  border-bottom:3px solid transparent;transition:background .15s,color .15s,border-color .15s}
.nav>a:hover,.nav .dd:hover>a,.nav .dd:focus-within>a{background:var(--nav-hover);text-decoration:none}
.nav>a.active,.nav .dd>a.active{background:var(--navy);color:#fff;border-bottom-color:var(--navy)}
/* ---------- animated dropdowns (pure CSS: fade + slide, hover or keyboard focus) ---------- */
.nav .dd{position:relative;display:flex;align-self:stretch}
.nav .dd>a:after{content:"";margin-left:8px;width:0;height:0;
  border-left:4px solid transparent;border-right:4px solid transparent;
  border-top:5px solid currentColor;opacity:.75;transition:transform .18s}
.nav .dd:hover>a:after{transform:rotate(180deg)}
.nav .ddp{position:absolute;top:100%;left:0;min-width:260px;background:var(--panel);
          border:1px solid var(--line);border-top:0;padding:6px 0;z-index:70;
          box-shadow:0 16px 38px rgba(10,15,25,.24);
          opacity:0;visibility:hidden;transform:translateY(8px);
          transition:opacity .18s ease,transform .18s ease,visibility .18s}
.nav .dd:hover .ddp,.nav .dd:focus-within .ddp{opacity:1;visibility:visible;transform:translateY(0)}
.nav .ddp a{display:block;padding:10px 18px;font-weight:600;font-size:14px;
            color:var(--side-ink);border-radius:0;text-transform:none;letter-spacing:0;
            border-left:3px solid transparent}
.nav .ddp a:hover{background:var(--nav-hover);border-left-color:var(--navy);text-decoration:none}
.nav .ddp a:after{content:none}
.header .search{margin-left:auto;align-self:center;display:flex;background:var(--search-bg);
                border:1px solid var(--search-border);border-radius:9px;overflow:hidden}
.header .search input{background:transparent;border:0;color:var(--text);
                      padding:10px 12px;width:240px;outline:none;font-size:14px}
.header .search input::placeholder{color:var(--search-ph);opacity:1}
.header .search button{border:0;background:var(--navy);color:#fff;
                       padding:0 14px;font-weight:700;cursor:pointer}
/* theme toggle button — sits right of the search box on every page */
.themebtn{background:var(--search-bg);border:1px solid var(--search-border);
          border-radius:9px;padding:0 12px;font-size:17px;cursor:pointer;
          color:var(--text);line-height:1;height:38px;align-self:center}
.themebtn:hover{border-color:var(--navy)}

/* ---------- sale banner strip (sales.js shows/hides; art behind live text) ---------- */
.salebar{display:none;background:url("../images/brand/banner-sale.jpg") center/cover;
         text-align:center;padding:9px 18px;font-weight:800;color:#fff;
         letter-spacing:.5px;font-size:15px;text-shadow:0 1px 3px rgba(0,0,0,.55)}

/* ---------- hero slideshow ---------- */
.hero{position:relative;overflow:hidden;background:#000}
.hero .slide{display:none;position:relative}
.hero .slide.on{display:block}
/* slides are 2.37:1; the box is capped but taller than before so far less of the
   frame is cropped top and bottom */
.hero .slide img{width:100%;height:min(62vh,600px);object-fit:cover;display:block}
.hero .caption{position:absolute;left:6%;top:50%;transform:translateY(-50%);max-width:44%}
.hero .caption h1,.hero .caption h2{margin:0 0 8px;font-size:clamp(22px,3.4vw,44px);
       line-height:1.08;text-transform:uppercase;letter-spacing:.5px;color:#fff;
       text-shadow:0 2px 14px rgba(0,0,0,.8)} /* always white — the hero art is dark in both themes */
.hero .caption p{margin:0 0 16px;color:#d6d9e0;font-size:clamp(13px,1.4vw,17px);
       text-shadow:0 1px 8px rgba(0,0,0,.9)}
.btn{display:inline-block;background:var(--navy);color:#fff;font-weight:800;
     padding:11px 22px;border-radius:9px;border:0;cursor:pointer;font-size:15px}
.btn:hover{filter:brightness(1.15);text-decoration:none}
.btn.ghost{background:rgba(255,255,255,.12);backdrop-filter:blur(3px)}
/* ghost buttons on PAGE surfaces need theme ink; ghosts over the dark hero art stay white */
.wrap .btn.ghost{background:var(--panel-2);color:var(--text);border:1px solid var(--line)}
.hero .dots{position:absolute;bottom:14px;left:0;right:0;display:flex;
            gap:8px;justify-content:center}
.hero .dots b{width:9px;height:9px;border-radius:50%;background:#ffffff59;cursor:pointer}
.hero .dots b.on{background:#fff}
.hero .arrow{position:absolute;top:50%;transform:translateY(-50%);
             background:rgba(0,0,0,.45);border:0;color:#fff;font-size:22px;
             width:42px;height:42px;border-radius:50%;cursor:pointer}
.hero .arrow:hover{background:rgba(0,0,0,.75)}
.hero .arrow.l{left:12px}.hero .arrow.r{right:12px}

/* ---------- shared layout bits ---------- */
.wrap{max-width:1280px;margin:0 auto;padding:26px 18px}
.section-h{display:flex;align-items:baseline;gap:14px;margin:6px 0 16px}
.section-h h2{margin:0;font-size:22px;text-transform:uppercase;letter-spacing:1px}
.section-h a{font-size:13px}
.trust{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:14px}
.trust .t{background:var(--tile-alt);border:1px solid var(--line);border-radius:var(--radius);
          padding:18px;display:flex;gap:14px;align-items:center;font-weight:800;
          letter-spacing:.6px;font-size:14px}
.trust .t img{width:44px;height:44px}

/* ---------- category tiles (Home + Rental landing) ---------- */
.catgrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:14px}
.catcard{position:relative;border-radius:var(--radius);overflow:hidden;
         border:1px solid var(--line);background:var(--panel);display:block}
.catcard img{height:150px;width:100%;object-fit:cover;background:#fff}
.catcard span{position:absolute;left:0;right:0;bottom:0;padding:22px 12px 9px;
              font-weight:800;font-size:14px;color:#fff;letter-spacing:.4px;
              background:linear-gradient(transparent,rgba(0,0,0,.88))}
.catcard:hover{border-color:var(--link);text-decoration:none}

/* ---------- item thumbnail cards: photo + name + from-price. NOTHING ELSE. ---------- */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(225px,1fr));gap:14px}
.card{position:relative;background:var(--panel);border:1px solid var(--line);
      border-radius:var(--radius);overflow:hidden;display:flex;
      flex-direction:column;transition:.14s;color:var(--text)}
.card:hover{transform:translateY(-2px);border-color:var(--link);text-decoration:none}
.card .ph{height:150px;background:var(--ph-bg)}
.card .ph img{width:100%;height:100%;object-fit:cover}
.card .ph.contain img{object-fit:contain;background:#fff}
.card .b{padding:11px 13px;display:flex;flex-direction:column;gap:5px;flex:1}
.card .n{font-weight:700;font-size:13.5px;line-height:1.3}
.card .p{margin-top:auto;font-size:13px;color:var(--muted)}
.card .p b{color:var(--price-ink);font-size:16px}
.card .p s{color:var(--muted);margin-left:6px;font-size:12px}
.card .sale-badge{position:absolute;top:8px;left:8px;width:52px;display:none}
.card.on-sale .sale-badge{display:block}
.card.on-sale .p b{color:var(--sale-ink)}

/* ---------- sales page: model strips (dealer-style card rows) ----------
   A strip = arrows + a scroll-snap row of model cards. Cards reuse the site
   card language: panel surface, hairline border, white image plate (product
   shots always shown WHOLE — object-fit:contain, never cropped). ---------- */
.mstrip{position:relative}
.mstrip .row{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;padding:2px 2px 12px;scrollbar-width:thin}
.mcard{flex:0 0 290px;scroll-snap-align:start;background:var(--panel);
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:.14s}
.mcard:hover{transform:translateY(-2px);border-color:var(--link)}
.mcard .mph{position:relative;height:200px;background:#fff;border-bottom:1px solid var(--line)}
.mcard .mph img{width:100%;height:100%;object-fit:contain;padding:10px}
.mcard .mb{padding:12px 14px 14px;display:flex;flex-direction:column;gap:8px;flex:1}
.mcard .mn{font-weight:800;font-size:14.5px;line-height:1.25}
.mcard .mspecs{display:flex;flex-direction:column}
.mcard .mspecs div{display:flex;justify-content:space-between;gap:10px;
  padding:5px 0;border-bottom:1px solid var(--line);font-size:12.5px}
.mcard .mspecs span{color:var(--muted)}
.mcard .mspecs b{font-weight:600;text-align:right}
.mcard .btn{margin-top:auto;text-align:center;font-size:13.5px;padding:9px 12px}
/* cards used as links (home-page sales slider): plain ink, no underline */
a.mcard{color:var(--text)}
a.mcard:hover{text-decoration:none}

/* ---------- parts directory: text-plate cards (no part photos exist) ----------
   The plate is the "image": part name large on a navy-to-charcoal ground with
   the brand beneath — reads as a designed tile, not a missing photo. ---------- */
.pcard .pplate{height:110px;display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:6px;text-align:center;padding:12px 14px;
  background:linear-gradient(150deg,var(--navy) 0%,#152a63 55%,#3B3B3D 100%)}
.pcard .pplate b{color:#fff;font-size:14.5px;line-height:1.25;font-weight:800;
  letter-spacing:.2px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.pcard .pplate i{font-style:normal;color:#c3cdea;font-size:11px;
  text-transform:uppercase;letter-spacing:1.4px}
.pcard .b{gap:0}
.pcard .prow{display:flex;justify-content:space-between;gap:10px;padding:5px 0;
  border-bottom:1px solid var(--line);font-size:12.5px}
.pcard .prow:last-child{border-bottom:0}
.pcard .prow span{color:var(--muted)}
.pcard .prow b{font-weight:600;text-align:right;font-family:Consolas,ui-monospace,monospace}
/* photo caveat line under a card image */
.mnote{font-size:11px;color:var(--muted);text-align:center;padding:4px 8px 0}
/* strip arrows — same visual family as the hero arrows, on the panel surface */
.mstrip .sarrow{position:absolute;top:96px;z-index:5;width:38px;height:38px;
  border-radius:50%;border:1px solid var(--line);background:var(--panel);
  color:var(--text);font-size:20px;cursor:pointer;box-shadow:0 4px 14px rgba(10,15,25,.18)}
.mstrip .sarrow:hover{border-color:var(--link)}
.mstrip .sarrow.l{left:-12px}.mstrip .sarrow.r{right:-12px}
/* ⓘ info marker on a product image — hover/focus shows the note from data-note */
.rinfo{position:absolute;right:8px;top:8px;width:20px;height:20px;border-radius:50%;
  background:var(--panel-2);border:1px solid var(--line);color:var(--muted);
  font:600 12px/18px system-ui;text-align:center;cursor:help}
.rinfo:hover:after,.rinfo:focus:after{content:attr(data-note);position:absolute;
  right:0;top:24px;white-space:nowrap;background:var(--panel);color:var(--text);
  border:1px solid var(--line);border-radius:8px;padding:6px 10px;font:400 12px/1.3 system-ui;
  box-shadow:0 8px 22px rgba(10,15,25,.22);z-index:6}
@media(max-width:900px){.mcard{flex-basis:250px}.mstrip .sarrow{display:none}}

/* ---------- sale-model pages (sale-*.html): hero band, gallery, use-case tiles,
   spec table, feature list, dealer band, try-it-first, related strip ---------- */
.shero{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,4fr);gap:26px;align-items:start}
.shero .sgal{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;position:relative}
.shero .sgal .main{width:100%;height:440px;object-fit:contain;padding:14px;display:block}
.shero .thumbs{display:flex;gap:8px;padding:10px;border-top:1px solid var(--line);background:var(--panel-2)}
.shero .thumbs img{width:84px;height:64px;object-fit:contain;background:#fff;border:1px solid var(--line);
  border-radius:8px;padding:4px;cursor:pointer;transition:.14s}
.shero .thumbs img:hover,.shero .thumbs img.on{border-color:var(--link)}
.shero .brandline{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:var(--link);font-weight:800}
.shero h1{margin:4px 0 6px;font-size:32px;line-height:1.1}
.shero .tag{font-size:19px;color:var(--soft-ink);margin:0 0 14px;font-weight:600}
.shero .lead{color:var(--soft-ink);font-size:15.5px;line-height:1.6;margin:0 0 16px}
.shero .sku{color:var(--muted);font-size:12.5px;margin-bottom:14px}
.built{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;margin:28px 0}
.built div{background:var(--tile-alt);border:1px solid var(--line);border-radius:var(--radius);padding:16px 18px}
.built b{display:block;font-size:14px;margin-bottom:4px}
.built span{color:var(--muted);font-size:13.5px}
.sgrid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:start;margin:8px 0 28px}
.sfeat{display:flex;flex-direction:column;gap:10px}
.sfeat>div{display:flex;gap:12px;align-items:flex-start;padding:12px 14px;background:var(--panel);
  border:1px solid var(--line);border-radius:10px}
.sfeat>div>div{display:block;padding:0;border:0;background:none}
.sfeat i{flex:0 0 28px;height:28px;border-radius:50%;background:var(--navy);color:#fff;font-style:normal;
  font-weight:800;font-size:13px;display:flex;align-items:center;justify-content:center}
.sfeat b{display:block;font-size:14px}
.sfeat span{color:var(--muted);font-size:13px}
.dealer{background:linear-gradient(135deg,var(--navy),#152a63);color:#fff;border-radius:var(--radius);
  padding:26px 28px;display:grid;grid-template-columns:1fr auto;gap:22px;align-items:center;margin:28px 0}
.dealer h2{margin:0 0 8px;font-size:22px;text-transform:uppercase;letter-spacing:1px;color:#fff}
.dealer p{margin:0;color:#dfe6f7;font-size:14.5px;line-height:1.55;max-width:70ch}
.dealer .btn{background:#fff;color:var(--navy)}
.dealer .btn.ghost{background:rgba(255,255,255,.14);color:#fff;border:1px solid rgba(255,255,255,.35)}
.tryfirst{display:flex;gap:14px;align-items:center;flex-wrap:wrap;background:var(--tile-alt);border:1px solid var(--line);
  border-left:4px solid var(--red);border-radius:var(--radius);padding:16px 20px;margin:0 0 28px}
.tryfirst b{font-size:15px}
.tryfirst span{color:var(--muted);font-size:13.5px;flex:1;min-width:220px}
.vid{position:relative;border-radius:var(--radius);overflow:hidden;background:#000;aspect-ratio:16/9;margin:0 0 28px;cursor:pointer}
.vid img{width:100%;height:100%;object-fit:cover;opacity:.85}
.vid .play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:74px;height:74px;border-radius:50%;
  background:var(--red);color:#fff;font-size:30px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 28px rgba(0,0,0,.45)}
.vid iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@media(max-width:900px){.shero,.sgrid,.dealer{grid-template-columns:1fr}.shero .sgal .main{height:300px}}

/* ---------- catalog page: sidebar + toolbar ---------- */
.cat-layout{display:grid;grid-template-columns:235px 1fr;gap:22px}
.side{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
      padding:8px 0;height:max-content;position:sticky;top:calc(var(--tb) + 86px)}
.side h3{font-size:11px;letter-spacing:1.6px;color:var(--muted);
         text-transform:uppercase;margin:8px 16px}
.side a{display:flex;justify-content:space-between;padding:7px 16px;
        color:var(--side-ink);font-size:13.5px}
.side a:hover{background:var(--side-hover);text-decoration:none}
.side a.active{background:var(--navy);color:#fff;font-weight:700}
.side a i{font-style:normal;color:var(--muted);font-size:12px}
.side a.active i{color:#cdd8f2}
.toolbar{display:flex;align-items:center;gap:14px;margin-bottom:14px;flex-wrap:wrap;
  scroll-margin-top:calc(var(--tb) + 92px)} /* native #catalog anchor lands clear of the sticky top bar + header */
.toolbar .count{color:var(--muted);font-size:13px}
.toolbar .grow{flex:1}
.toolbar select,.toolbar label{background:var(--panel);border:1px solid var(--line);
    color:var(--text);border-radius:8px;padding:8px 11px;font-size:13px;cursor:pointer}

/* ---------- item detail page ---------- */
.crumbs{font-size:13px;color:var(--muted);margin-bottom:16px}
.item{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,4fr);gap:26px}
.item .photo{background:#fff;border-radius:var(--radius);border:1px solid var(--line);
             overflow:hidden;position:relative}
.item .photo img{width:100%;height:420px;object-fit:contain}
.item .photo .sale-badge{position:absolute;top:12px;left:12px;width:74px}
.item h1{margin:0 0 4px;font-size:26px;line-height:1.15}
.item .meta{color:var(--muted);font-size:13px;margin-bottom:16px}
.rates{width:100%;border-collapse:collapse;margin:6px 0 18px}
.rates th,.rates td{border:1px solid var(--line);padding:9px 12px;text-align:left;font-size:14px}
.rates th{background:var(--panel);color:var(--muted);font-weight:600;width:40%}
.rates td{font-weight:800;font-size:15px}
.rates tr.hot td{color:var(--sale-ink)}
.ratenote{color:var(--muted);font-size:12px;margin:-10px 0 18px}
.cta{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
     padding:18px;display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.cta .big{font-size:19px;font-weight:800}
.related{margin-top:34px}

/* ---------- Google reviews (home): static badge + real 5-star quotes.
   MAINTENANCE: the rating/count in the badge are typed by hand — update them in
   index.html when the listing changes. ---------- */
.gbadge{display:inline-flex;align-items:center;gap:10px;background:var(--panel);
  border:1px solid var(--line);border-radius:var(--radius);padding:8px 14px;
  text-decoration:none;color:var(--text);font-weight:700;font-size:14px;white-space:nowrap}
.gbadge:hover{border-color:var(--navy);text-decoration:none}
.gbadge .g{font-weight:800;font-size:18px;letter-spacing:.5px}
.gbadge .num{font-size:22px;font-weight:800}
.stars{color:#f5b301;letter-spacing:1px;font-size:15px}
.gbadge small{color:var(--muted);font-weight:600}
/* the review cards ride the same .mstrip scroller as the sales cards (arrows + native scroll) */
.reviews .row{align-items:stretch}
.reviews blockquote{flex:0 0 320px;scroll-snap-align:start;margin:0;background:var(--panel);
  border:1px solid var(--line);border-radius:var(--radius);padding:18px 20px;
  display:flex;flex-direction:column;gap:10px}
@media(max-width:900px){.reviews blockquote{flex-basis:270px}
  .gbadge{white-space:normal;flex-wrap:wrap;max-width:100%}} /* phones: badge wraps instead of overflowing */
.reviews p{margin:0;color:var(--soft-ink);font-size:14.5px;line-height:1.55;flex:1}
.reviews p:before{content:"\201C";color:var(--navy);font-weight:800;margin-right:2px}
.reviews p:after{content:"\201D";color:var(--navy);font-weight:800;margin-left:2px}
.reviews .who{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted)}
.reviews .who b{color:var(--text)}
/* footer Facebook icon link */
footer a.fb{display:inline-flex;align-items:center;gap:8px;margin-top:6px}
footer a.fb svg{width:22px;height:22px;fill:currentColor}
/* ---------- contact form (contact.html → /api/contact Pages Function) ---------- */
.cform-wrap{max-width:860px;margin-bottom:34px}
.cform{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 26px;display:flex;flex-direction:column;gap:14px}
.cform-lede{margin:0;color:var(--soft-ink);font-size:15px;line-height:1.5}
.cform .row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.cform label{display:flex;flex-direction:column;gap:6px;font-weight:700;font-size:13.5px;color:var(--text)}
.cform input,.cform select,.cform textarea{font:inherit;font-weight:400;font-size:15px;color:var(--text);
  background:var(--search-bg);border:1px solid var(--search-border);border-radius:9px;padding:10px 12px;
  width:100%;box-sizing:border-box;outline:none}
.cform input:focus,.cform select:focus,.cform textarea:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(30,61,143,.15)}
.cform textarea{resize:vertical;min-height:120px}
.cform .hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.cform-foot{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.cform-note{color:var(--muted);font-size:13.5px}
.cform-status{display:none;font-size:14px;font-weight:600;padding:10px 14px;border-radius:9px}
.cform-status.err{display:block;background:rgba(225,27,34,.1);color:var(--sale-ink);border:1px solid rgba(225,27,34,.3)}
.cform-status.busy{display:block;background:var(--tile-alt);color:var(--muted)}
.cform-sent{display:none;background:var(--panel);border:1px solid var(--line);border-left:5px solid var(--navy);
  border-radius:var(--radius);padding:20px 24px;font-size:16px;line-height:1.55}
.cform-sent:target,.cform-wrap.done .cform-sent{display:block}
.cform-wrap:has(.cform-sent:target) .cform,.cform-wrap.done .cform{display:none}
@media(max-width:700px){.cform .row2{grid-template-columns:1fr}}
/* ---------- content pages (Sales/Services/Education) ---------- */
.pagehero{position:relative}
/* strips are 1920x480 (4:1); 300px tall shows most of the frame instead of a sliver */
.pagehero img{width:100%;height:300px;object-fit:cover;display:block}
/* title plate image over the banner; the real h1 stays in the page, visually
   hidden, for search engines */
.pagehero .title-img{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:auto;height:clamp(54px,9vw,110px);aspect-ratio:auto;object-fit:contain;
  filter:drop-shadow(0 4px 14px rgba(0,0,0,.5))}
.vh{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;border:0;
  clip:rect(0 0 0 0);overflow:hidden;white-space:nowrap}
/* ---------- unified page intro (one system on Rental/Sales/Services/Parts):
   eyebrow + copy left, related photo right — every page opens the same way ---------- */
.plede{display:grid;grid-template-columns:1.55fr 1fr;gap:26px;align-items:center;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 26px;margin-bottom:22px}
.plede h2{margin:0 0 10px;font-size:27px;line-height:1.1;text-transform:uppercase;
  letter-spacing:1.2px;font-weight:800;padding-bottom:10px;position:relative}
.plede h2:after{content:"";position:absolute;left:0;bottom:0;width:58px;height:4px;
  background:var(--navy);border-radius:2px}
.plede p{margin:0;color:var(--soft-ink);font-size:15.5px;line-height:1.55;max-width:62ch}
.plede a[href^="tel:"]{white-space:nowrap;font-weight:700}
.plede img{width:100%;height:190px;object-fit:cover;border-radius:10px;
  border:1px solid var(--line);background:#fff}
@media(max-width:900px){.plede{grid-template-columns:1fr}.plede img{height:160px}}
/* banner title: always CENTERED over the strip art */
.pagehero h1{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);
             margin:0;text-align:center;color:#fff;
             font-size:clamp(24px,3.5vw,40px);text-transform:uppercase;
             letter-spacing:1px;text-shadow:0 2px 14px rgba(0,0,0,.85)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:center;margin:26px 0}
/* Art is never cropped — the whole image shows at its own aspect. */
.split img{border-radius:var(--radius);border:1px solid var(--line);background:#fff;
           width:100%;height:auto;object-fit:contain}
.split h2{margin:0 0 8px;font-size:21px}
.split p{color:var(--soft-ink);margin:0 0 6px}
.brandrow{display:flex;gap:26px;align-items:center;justify-content:center;
          padding:20px;background:var(--tile-alt);border-radius:var(--radius);
          border:1px solid var(--line)}
.brandrow{flex-wrap:wrap}
.brandrow img{height:52px;width:auto;background:#fff;border-radius:8px;padding:6px}
footer .brandrow img{height:36px;padding:4px} /* footer size: keeps dealer marks clear of the Explore column */

/* ---------- footer (byte-identical on every page) ---------- */
footer{margin-top:44px;background:#000;border-top:2px solid #3a3a42}
footer .in{max-width:1280px;margin:0 auto;padding:30px 18px;display:grid;
           grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;
           font-size:13.5px;color:#a0a0aa} /* footer stays black in both themes */
footer .in a{color:#5b8ce0}
footer h4{color:#fff;margin:0 0 8px;font-size:13px;letter-spacing:1.2px;text-transform:uppercase}
footer .legal{border-top:1px solid #2a2a31;text-align:center;
              padding:12px 18px;font-size:12px;color:#6a6a74;
              display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:10px}
footer .legal>span{grid-column:2}
footer .legal .credit{grid-column:3;justify-self:end;color:#6a6a74;white-space:nowrap}
footer .legal .credit:hover{color:#5b8ce0}
@media(max-width:700px){footer .legal{grid-template-columns:1fr}footer .legal>span,footer .legal .credit{grid-column:1;justify-self:center}}

/* ---------- Read it to Me (read-it-to-me.html): plain narrated page + speech controls ---------- */
.readbar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;background:var(--panel);
  border:1px solid var(--line);border-radius:var(--radius);padding:14px 18px;margin-bottom:22px}
.readbar .note{color:var(--muted);font-size:13.5px;flex:1;min-width:200px}
.readme{max-width:760px;font-size:17.5px;line-height:1.75;color:var(--text)}
.readme h2{font-size:22px;margin:30px 0 8px}
.readme h2:first-child{margin-top:0}
.readme p{margin:0 0 16px;color:var(--soft-ink)}

/* ---------- responsive ---------- */
/* ---------- extras beyond the approved mockup ---------- */
body.salebar-on .salebar{display:block}          /* sales.js flips this class */
body.prices-off .card .p .money{display:none}
body.prices-off .card .p:after{content:"Call for rates";color:var(--muted)}
body.prices-off .rates,body.prices-off .ratenote{display:none}
body.prices-off .call-for-rates{display:block}
.call-for-rates{display:none;background:var(--panel);border:1px solid var(--line);
  border-radius:var(--radius);padding:14px 18px;font-weight:700;margin:6px 0 18px}
.edu-steps{counter-reset:step;max-width:640px;padding:0;margin:14px 0;list-style:none}
.edu-steps li{counter-increment:step;display:flex;gap:14px;align-items:flex-start;
  padding:10px 0;border-bottom:1px solid var(--line);color:var(--soft-ink)}
.edu-steps li:before{content:counter(step);flex:0 0 30px;height:30px;border-radius:50%;
  background:var(--navy);color:#fff;font-weight:800;display:flex;
  align-items:center;justify-content:center}
.warn{border-left:4px solid var(--red);background:var(--warn-bg);padding:12px 16px;
  border-radius:0 10px 10px 0;color:var(--warn-ink);margin:14px 0;max-width:640px}
.stations{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:10px;margin:12px 0}
.stations div{background:var(--panel);border:1px solid var(--line);border-radius:10px;
  padding:11px 14px;font-size:14px}
.detergents{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:10px;margin:12px 0}
.detergents div{background:var(--panel);border:1px solid var(--line);border-radius:10px;
  padding:11px 14px;font-size:13.5px;color:var(--soft-ink)}
/* ---------- "We also rent these helpful items" (rental.html, below the catalog) ---------- */
.alsorent{padding-top:8px}
.alsolede{color:var(--muted);font-size:14.5px;margin:-6px 0 18px;max-width:760px}
.alsogrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:16px}
/* Photo is a full-width band at the top of the card — the whole frame shows,
   never sliced into a sliver (SOP image rule: art is never cropped). */
.alsocard{display:flex;flex-direction:column;background:var(--panel);
          border:1px solid var(--line);border-radius:var(--radius);
          overflow:hidden;transition:.14s}
.alsocard:hover{border-color:var(--link);transform:translateY(-2px)}
.alsoimg{background:#fff;border-bottom:1px solid var(--line)}
.alsoimg img{width:100%;height:auto;display:block}
.alsobody{padding:16px 18px 18px;flex:1;min-width:0}
.alsobody h3{margin:0 0 4px;font-size:15px;letter-spacing:.4px;text-transform:uppercase}
.alsobody p{margin:0 0 9px;color:var(--muted);font-size:12.5px}
.alsobody ul{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:5px}
.alsobody li{font-size:13.5px;color:var(--text);padding-left:16px;position:relative;line-height:1.35}
.alsobody li:before{content:"";position:absolute;left:0;top:7px;width:6px;height:6px;
                    border-radius:50%;background:var(--navy)}

.notfound{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:center;padding:40px 0}
.notfound img{border-radius:var(--radius)}
.notfound h1{font-size:44px;margin:0 0 10px}

/* keep nav labels whole (Education was clipping) before the mobile wrap kicks in */
@media(max-width:1280px){
  .header .in{gap:8px}
  .header .search input{width:140px}
  .nav>a,.nav .dd>a{padding:0 11px;font-size:13.5px}
}
@media(max-width:900px){
  .cat-layout{grid-template-columns:1fr}
  .side{position:static}
  .nav .ddp{display:none} /* dropdown panels are hover UI; on touch layouts the top link navigates */
  .item{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .hero .caption{max-width:80%}
  .header .search{order:9;flex-basis:100%;margin:0 0 10px}
  .header .in{flex-wrap:wrap;gap:6px;align-items:center;padding:8px 18px}
  /* narrow screens: the top bar may wrap to two lines, so it scrolls normally and
     the header sticks at the very top as before */
  .topbar{position:static}
  .header{top:0}
  .header .logo img{height:48px}
  .nav{flex-wrap:wrap}
  .nav>a,.nav .dd>a{height:auto;padding:9px 10px;font-size:13px;border-bottom:0}
  .notfound{grid-template-columns:1fr}
}
