/* ═══════════════════════════════════════════════════════════
   ALEDO GOLF CARTS — shared styles
   Orange / black / Oswald — extracted from the original one-pager,
   unchanged visually, plus multi-page components.
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #1A1B1C;
  --near-black: #171512;
  --orange:     #E36623;
  --orange-2:   #F4923D;
  --cream:      #FFF8F1;
  --paper:      #FFFFFF;
  --ink:        #171512;
  --gray:       #6B6660;
  --line:       rgba(23,21,18,0.1);
  --line-dark:  rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: none; }

a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── TOPBAR ── */
.topbar {
  background: var(--orange);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 5vw;
  font-size: 0.85rem;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { text-decoration: none; color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }

/* ── NAV ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 5vw;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange-2); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 0.9rem 1.9rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: 0;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 0.875rem 1.85rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange-2); background: rgba(255,255,255,0.06); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(23,21,18,0.35);
  padding: 0.875rem 1.85rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ── SECTION COMMON ── */
section { padding: 5.5rem 5vw; }
.section-alt { background: var(--cream); }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  max-width: 30ch;
  font-weight: 700;
  text-transform: uppercase;
}

.section-intro {
  color: var(--gray);
  font-size: 1rem;
  max-width: 58ch;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.section-head-center { text-align: center; }
.section-head-center .section-title, .section-head-center .section-intro { margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(180deg, #1a1512 0%, #241a12 60%, #3a2415 100%);
  color: #fff;
  padding: 4.5rem 5vw 4rem;
  text-align: center;
}
.page-hero .section-eyebrow { color: var(--orange-2); }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.page-hero h1 em { font-style: normal; color: var(--orange-2); }
.page-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 auto 1.8rem;
  line-height: 1.75;
}
.page-hero .hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ── BREADCRUMBS ── */
.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray);
  padding: 1rem 5vw 0;
  background: var(--paper);
}
.crumbs li { display: flex; align-items: center; gap: 0.5rem; }
.crumbs li + li::before { content: '›'; color: var(--orange); }
.crumbs a { color: var(--gray); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ── TOOLS (widgets) ── */
#tools { background: var(--paper); }

.tool-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--line);
  margin-bottom: 2.5rem;
}

.tool-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tool-tab:hover { color: var(--ink); }
.tool-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.tool-panel { display: none; }
.tool-panel.active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }

.tool-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.field input[type="number"],
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { min-height: 90px; resize: vertical; }

.field-range { display: flex; align-items: center; gap: 0.75rem; }
.field-range input[type="range"] { flex: 1; accent-color: var(--orange); }
.field-range .range-val { font-weight: 700; min-width: 3.5ch; text-align: right; font-family: 'Oswald', sans-serif; }

.checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.checkbox-item input { margin-top: 0.2rem; accent-color: var(--orange); }
.checkbox-item .ci-price { margin-left: auto; color: var(--gray); font-size: 0.82rem; white-space: nowrap; padding-left: 0.5rem; }

.tool-result {
  background: var(--black);
  color: #fff;
  border-radius: 10px;
  padding: 2.25rem;
  position: sticky;
  top: 6.5rem;
}

.tool-result .tr-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 0.75rem;
}

.tool-result .tr-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.tool-result .tr-breakdown { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.tool-result .tr-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(255,255,255,0.75); border-bottom: 1px solid var(--line-dark); padding-bottom: 0.6rem; }
.tool-result .tr-row strong { color: #fff; }

.tool-result .tr-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.5rem; }

/* ── INVENTORY CARDS ── */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.2s, box-shadow .2s;
}
.cart-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.cart-card.sold { opacity: 0.72; }
.cart-card .cart-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }

.cart-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--cream) 0%, #F3E7D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-photo img.cart-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-photo img.cart-placeholder { width: 45%; height: auto; opacity: 0.45; object-fit: contain; }
.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(23,21,18,0.55);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.photo-nav:hover { background: var(--orange); }
.photo-nav.prev { left: 0.6rem; }
.photo-nav.next { right: 0.6rem; }
.photo-count {
  position: absolute;
  bottom: 0.6rem; right: 0.6rem;
  background: rgba(23,21,18,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.cart-badges { position: absolute; top: 0.7rem; left: 0.7rem; display: flex; gap: 0.4rem; }
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
}
.badge.badge-used { background: var(--black); }
.badge.badge-sold { background: #9C2B18; }
.badge.badge-pending { background: #B98212; }

.cart-card .cart-seats {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(227,102,35,0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.cart-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.cart-card .cart-price { font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; font-family: 'Oswald', sans-serif; }
.cart-card .cart-price span { font-size: 0.8rem; font-weight: 400; color: var(--gray); }
.cart-card p { color: var(--gray); font-size: 0.875rem; line-height: 1.6; }
.cart-card .cart-specs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin: 0.2rem 0 0.9rem;
}
.cart-card .spec-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}
.cart-card .cart-ask { margin-top: auto; padding-top: 1.1rem; }
.cart-card .cart-ask .btn-primary { width: 100%; text-align: center; padding: 0.75rem 1rem; font-size: 0.8rem; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}
.filter-group { display: flex; flex-direction: column; gap: 0.45rem; }
.filter-group .fg-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.chip-row { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.42rem 0.95rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.on { background: var(--orange); border-color: var(--orange); color: #fff; }
.filter-count { margin-left: auto; font-size: 0.82rem; color: var(--gray); align-self: center; }

.inv-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
  border: 1px dashed var(--line);
  border-radius: 10px;
}

/* ── SEATING ── */
.seating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.seat-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}
.seat-card:hover { border-color: var(--orange); transform: translateY(-4px); }

.seat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.75rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.seat-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; }
.seat-card p { font-size: 0.85rem; color: var(--gray); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── ACCESSORY CARDS (photo-topped service cards) ── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.acc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.acc-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.acc-photo { aspect-ratio: 4 / 3; display: block; overflow: hidden; }
.acc-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.acc-body { padding: 1.6rem 1.7rem 1.8rem; }
.acc-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; text-transform: uppercase; }
.acc-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.2s;
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(227,102,35,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; text-transform: uppercase; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.service-card .sc-link { display: inline-block; margin-top: 0.9rem; color: var(--orange); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── BATTERY FEATURE PHOTO (parts page) ── */
.battery-feature {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.battery-photo {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #fff;
}
.battery-photo img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .battery-feature { grid-template-columns: 1fr; gap: 1.75rem; }
  .battery-photo { max-width: 300px; margin: 0 auto; }
}

/* ── BATTERY CARDS (parts page) ── */
.battery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.battery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.2s;
}
.battery-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.battery-card .bc-volt {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.battery-card .bc-fit {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin: 0.2rem 0 1rem;
}
.battery-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.battery-card li { font-size: 0.85rem; color: var(--ink); display: flex; gap: 0.5rem; align-items: flex-start; }
.battery-card li::before { content: '✓'; color: var(--orange); font-weight: 700; }
.battery-card .bc-note { margin-top: auto; font-size: 0.78rem; color: var(--gray); }

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.brand-strip span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

/* ── FAQ ── */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.3rem 0.25rem; }
.faq summary {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--orange); transition: transform 0.25s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--gray); font-size: 0.93rem; line-height: 1.8; padding-top: 0.8rem; max-width: 65ch; }
.faq details a { color: var(--orange); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid > div { min-width: 0; }

.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; gap: 0.875rem; align-items: flex-start; color: var(--ink); font-size: 0.9375rem; }
.value-check { width: 20px; height: 20px; background: rgba(227,102,35,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--orange); font-size: 0.7rem; }

/* ── TESTIMONIALS ── */
.testimonial-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.testimonial-scroll::-webkit-scrollbar { height: 6px; }
.testimonial-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.quote-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem;
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.quote-mark { font-family: 'Oswald', sans-serif; font-size: 2.5rem; color: var(--orange); line-height: 1; opacity: 0.5; margin-bottom: 0.5rem; }
.quote-text { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; color: var(--ink); flex: 1; }
.quote-attr { font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 0.6rem; }
.quote-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.quote-attr strong { color: var(--ink); }

/* ── CTA / CONTACT ── */
.contact-dark {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 6rem 5vw;
}
.contact-dark .section-eyebrow { display: block; margin-bottom: 0.75rem; }
.contact-dark .section-title { max-width: 100%; margin: 0 auto 1rem; color: #fff; }

.contact-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.contact-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 0.875rem 1.125rem;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select { flex: 1 1 100%; min-width: 220px; appearance: none; }
.contact-form select option { color: var(--ink); background: #fff; }
.contact-form textarea { flex: 1 1 100%; min-height: 90px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); }

.contact-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.contact-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.contact-details div { display: flex; align-items: center; gap: 0.5rem; }
.contact-details strong { color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 3rem 5vw 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-logo { margin-bottom: 0.75rem; }
.footer-logo img { height: 50px; width: auto; display: block; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; }
.footer-col a:hover { color: var(--orange-2); }
.footer-hours { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.4rem; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange-2); }
.footer-credit { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 1.05rem; vertical-align: middle; }
.footer-credit img { height: 22px; width: auto; vertical-align: middle; }
.footer-credit a { font-weight: 600; }

/* ── TCPA CONSENT ── */
.consent-row {
  flex: 1 1 100%;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-align: left;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  cursor: pointer;
}
.consent-row input { margin-top: 0.25rem; accent-color: var(--orange); flex-shrink: 0; width: 15px; height: 15px; }
.consent-row a { color: var(--orange-2); }

/* ── LEGAL PAGES ── */
.legal { max-width: 780px; margin: 0 auto; }
.legal .legal-updated { font-size: 0.8rem; color: var(--gray); margin-bottom: 2rem; }
.legal h2 { font-size: 1.15rem; text-transform: uppercase; margin: 2.4rem 0 0.8rem; }
.legal p, .legal li { color: #3F3B36; font-size: 0.95rem; line-height: 1.85; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal a { color: var(--orange); }

/* ── DECISION-TREE CHAT BOT ── */
#bot-launcher {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.95rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
#bot-launcher:hover { background: var(--orange-2); transform: translateY(-2px); }
#bot-launcher .bot-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

#bot-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 500;
  width: min(380px, calc(100vw - 2rem));
  max-height: 70vh;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}
#bot-panel.open { display: flex; }

.bot-header {
  background: var(--black);
  color: #fff;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bot-header .bh-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; }
.bot-header .bh-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.15rem; }
.bot-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 0.2rem; }
.bot-close:hover { color: #fff; }

.bot-body { padding: 1.3rem; overflow-y: auto; flex: 1; }

.bot-question { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 1rem; color: var(--ink); }
.bot-options { display: flex; flex-direction: column; gap: 0.6rem; }
.bot-option {
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.bot-option:hover { border-color: var(--orange); background: rgba(227,102,35,0.08); }

.bot-result-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--orange); }
.bot-result-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; color: var(--ink); }
.bot-match { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 0.9rem 1rem; margin-bottom: 0.6rem; }
.bot-match .bm-name { font-weight: 700; font-size: 0.92rem; }
.bot-match .bm-price { color: var(--orange); font-weight: 700; font-family: 'Oswald', sans-serif; }

.bot-actions { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.bot-btn-primary {
  background: var(--orange); color: #fff; border: none; border-radius: 6px;
  padding: 0.75rem 1rem; font-weight: 700; font-size: 0.85rem; cursor: pointer;
  text-decoration: none; text-align: center; text-transform: uppercase; letter-spacing: 0.03em;
}
.bot-btn-primary:hover { background: var(--orange-2); }
.bot-btn-ghost {
  background: none; border: 1px solid var(--line); border-radius: 6px;
  padding: 0.7rem 1rem; font-weight: 600; font-size: 0.85rem; cursor: pointer; color: var(--gray);
  text-align: center;
}
.bot-btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.bot-crumbs { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.9rem; }
.bot-crumbs button { background:none;border:none;color:var(--orange);font-weight:700;cursor:pointer;font-size:0.75rem;padding:0; }

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .tool-panel.active { grid-template-columns: 1fr; }
  .tool-result { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
    padding: 0.4rem 5vw 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line-dark); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 0.9rem; }
  .nav-links a { display: block; padding: 0.95rem 0.2rem; font-size: 0.95rem; }
  .nav-links a.nav-cta { text-align: center; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #bot-panel { right: 1rem; left: 1rem; width: auto; }
  #bot-launcher { right: 1rem; }
  .filter-bar { gap: 1rem; }
  .filter-count { margin-left: 0; }
}
