/* ===================================================================
   D C Golf Carts — Ocala, FL — theme: "Fairway green, sand-gold CTA"
   Palette: deep fairway green #15532E + warm sand-gold accent.
   Self-contained: system fonts, inline-SVG icons, CSS/SVG visuals.
   =================================================================== */
:root {
  --green:       #15532E;   /* brand primary */
  --green-800:   #1C6B3C;   /* raised green */
  --green-deep:  #0B2C19;   /* footer base */
  --moss:        #4B6B57;   /* muted green-gray */
  --moss-ic:     #35543F;   /* icon ink */
  --ink:         #17281D;   /* body headings */
  --muted:       #5B6B60;   /* secondary text */
  --paper:       #ffffff;
  --paper-alt:   #F2F6F1;   /* section tint */
  --line:        #E0E7E0;   /* hairlines */
  --tint-green:  #E7F0E9;   /* green icon chip bg */
  --tint-sand:   #F6EEDC;   /* sand icon chip bg */
  --accent:      #A5751F;   /* WARM sand-gold CTA accent — CTAs only */
  --accent-600:  #87611A;   /* CTA hover */
  --gold-soft:   #C99A3E;   /* decorative gold (illustrations only) */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper); color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
}

/* Inline-SVG icon sizing */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.125em; flex-shrink: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 74px; background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: 0.02em; background: var(--green);
}
.logo-text { font-size: 15.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; display: block; }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 13.5px; color: var(--moss); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 10px 20px;
  border-radius: 7px; font-weight: 600 !important; font-size: 13.5px !important;
  display: flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--accent-600) !important; }
.nav-cta .icon { width: 16px; height: 16px; }

/* HERO */
.hero { position: relative; overflow: hidden; background: var(--green); }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem;
  align-items: center; max-width: 1180px; margin: 0 auto;
  padding: 4.25rem 3rem 4.5rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 500px at 82% 18%, rgba(28,107,60,0.55), transparent 70%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, var(--green-800) 100%);
}
.hero-bg::after {
  /* subtle fairway stripes */
  content: ""; position: absolute; inset: 0; opacity: 0.10;
  background: repeating-linear-gradient(115deg, #ffffff 0 2px, transparent 2px 46px);
}
.hero-copy { position: relative; z-index: 2; }
.tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px;
  font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 13px; border-radius: 999px;
}
.tag .icon { width: 14px; height: 14px; color: var(--gold-soft); }
.h1 {
  font-family: Georgia, serif; font-size: 52px; line-height: 1.07; font-weight: 700;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 1.25rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.25);
}
.h1 .gold { color: var(--gold-soft); }
.hero-p { font-size: 16.5px; color: rgba(255,255,255,0.9); line-height: 1.7; max-width: 460px; margin-bottom: 2rem; font-weight: 400; }
.btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  background: var(--accent); color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 8px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-600); }
.btn-lg { font-size: 16px; padding: 16px 30px; box-shadow: 0 8px 24px rgba(165,117,31,0.32); }
.btn-lg:hover { transform: translateY(-1px); }
.btn-primary .icon, .btn-ghost .icon { width: 18px; height: 18px; }
.btn-ghost {
  font-size: 14px; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  padding: 13px 24px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.15s, border-color 0.15s;
}
.btn-lg.btn-ghost { padding: 15px 26px; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-green {
  background: var(--green); color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 8px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background 0.15s;
}
.btn-green:hover { background: var(--green-800); }
.btn-green .icon { width: 18px; height: 18px; }

.hero-badges { display: flex; gap: 1.4rem; margin-top: 2.1rem; flex-wrap: wrap; }
.hero-badges span { font-size: 12.5px; color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 7px; }
.hero-badges .icon { width: 16px; height: 16px; color: var(--gold-soft); }

/* HERO ART PANEL (SVG scene) */
.hero-art { position: relative; z-index: 2; }
.cart-scene {
  width: 100%; height: auto; display: block;
  border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  background: linear-gradient(180deg, #BFE0F2 0%, #DCEFC6 62%, #CDE6A8 100%);
}
.scene-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  background: rgba(11,44,25,0.82); color: #fff; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.03em; padding: 7px 12px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 7px; backdrop-filter: blur(3px);
}
.scene-tag .icon { width: 14px; height: 14px; color: var(--gold-soft); }

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-item { padding: 1.35rem 1.5rem; display: flex; align-items: center; gap: 0.9rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon .icon { width: 20px; height: 20px; }
.ic-green { background: var(--tint-green); color: var(--green); }
.ic-sand  { background: var(--tint-sand); color: var(--accent); }
.trust-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-sub { font-size: 12px; color: var(--muted); font-weight: 400; }

/* SECTION HEADERS */
.sec-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.sec-h { font-family: Georgia, serif; font-size: 33px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.sec-intro { font-size: 15.5px; color: var(--moss); line-height: 1.75; font-weight: 400; max-width: 640px; }

/* SERVICES */
.services { padding: 3.5rem 3rem; background: var(--paper); }
.services-wrap { max-width: 1180px; margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 1.75rem; }
.svc { background: #fff; padding: 1.6rem 1.6rem; transition: background 0.15s; text-decoration: none; display: block; }
a.svc:hover { background: #FAFBFA; }
.svc-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; }
.svc-icon .icon { width: 22px; height: 22px; }
.svc-name { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 6px; }
.svc-name .icon { width: 15px; height: 15px; color: var(--accent); }
.svc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 400; }

/* INQUIRE (the pitch moment) */
.inquire { background: var(--green); padding: 3.75rem 3rem; }
.inquire-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; max-width: 1080px; margin: 0 auto; }
.inquire-copy .sec-tag { color: var(--gold-soft); }
.inquire-h { font-family: Georgia, serif; font-size: 36px; font-weight: 700; line-height: 1.1; color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem; }
.inquire-p { font-size: 15.5px; color: rgba(255,255,255,0.85); line-height: 1.7; font-weight: 400; max-width: 440px; margin-bottom: 1.5rem; }
.inquire-phone { display: inline-flex; align-items: center; gap: 11px; font-family: Georgia, serif; font-size: 27px; font-weight: 700; color: #fff; text-decoration: none; }
.inquire-phone .icon { width: 24px; height: 24px; color: var(--gold-soft); }
.inquire-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.inquire-badges span { font-size: 12.5px; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 7px; }
.inquire-badges .icon { width: 15px; height: 15px; color: var(--gold-soft); }

.inquire-card { background: #fff; border-radius: 15px; padding: 1.85rem; box-shadow: 0 20px 50px rgba(0,0,0,0.28); }
.rq-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; }
.rq-field { display: block; margin-bottom: 0.9rem; }
.rq-field span { display: block; font-size: 12px; font-weight: 600; color: var(--moss); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
.rq-field input, .rq-field textarea, .rq-field select {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.rq-field input:focus, .rq-field textarea:focus, .rq-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,83,46,0.1); }
.btn-submit {
  width: 100%; justify-content: center; margin-top: 0.35rem;
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 20px; border: none; border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s;
}
.btn-submit:hover { background: var(--accent-600); }
.btn-submit .icon { width: 18px; height: 18px; }

/* PHOTO PLACEHOLDERS */
.photo-ph {
  position: relative; border-radius: 12px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21,83,46,0.06), rgba(21,83,46,0.02)),
    repeating-linear-gradient(45deg, #EEF3EC 0 14px, #E7EEE6 14px 28px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 200px;
}
.photo-ph .ph-body { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 1.25rem; }
.photo-ph .ph-cart { width: 84px; height: auto; opacity: 0.85; }
.photo-ph .ph-label { font-size: 12px; font-weight: 600; color: var(--moss); letter-spacing: 0.03em; }
.photo-ph .ph-note { font-size: 11px; color: var(--muted); }
.photo-ph.tall { min-height: 300px; }

/* CART CARDS (sales/parts) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.card .photo-ph { border: none; border-bottom: 1px solid var(--line); border-radius: 0; min-height: 180px; }
.card-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-badge { align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px; margin-bottom: 0.7rem; }
.badge-new { background: var(--tint-green); color: var(--green); }
.badge-used { background: var(--tint-sand); color: var(--accent); }
.badge-custom { background: #EAE6F3; color: #5B3FA0; }
.card-name { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 400; margin-bottom: 1rem; flex: 1; }
.card-specs { list-style: none; margin-bottom: 1.1rem; }
.card-specs li { font-size: 13px; color: var(--moss); display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.card-specs .icon { width: 15px; height: 15px; color: var(--green); }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-price { font-family: Georgia, serif; font-size: 20px; font-weight: 700; color: var(--green); }
.card-price small { font-size: 12px; color: var(--muted); font-weight: 400; font-family: inherit; }

/* FEATURE / BENEFIT GRID */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.feat { display: flex; gap: 0.85rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 1.2rem 1.3rem; }
.feat .icon { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.feat-t { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.feat-d { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 400; }

/* SPLIT (about) */
.about { padding: 4.25rem 3rem; background: var(--paper); border-top: 1px solid var(--line); }
.about-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; max-width: 1180px; margin: 0 auto; }
.about-p { font-size: 15px; color: var(--moss); line-height: 1.8; font-weight: 400; margin-bottom: 1rem; max-width: 560px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.stat { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem 1.4rem; }
.stat-n { font-family: Georgia, serif; font-size: 30px; font-weight: 700; color: var(--green); line-height: 1; }
.stat-l { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 400; }

/* PAGE SECTIONS (subpages) */
.page-section { padding: 4rem 3rem; }
.page-section .pw { max-width: 1180px; margin: 0 auto; }
.page-section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); }

/* PAGE HERO (subpages) */
.page-hero { position: relative; overflow: hidden; padding: 4.25rem 3rem; background: var(--green); }
.page-hero .hero-bg { }
.ph-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; }
.page-h1 { font-family: Georgia, serif; font-size: 42px; font-weight: 700; line-height: 1.1; color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem; text-shadow: 0 1px 12px rgba(0,0,0,0.28); }
.page-hero-p { font-size: 15.5px; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 400; max-width: 580px; }

/* OFFERS STRIP */
.offer-strip { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 3rem; background: var(--tint-sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.offer-strip .icon { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.offer-strip-txt { font-size: 14.5px; color: var(--moss-ic); font-weight: 400; line-height: 1.5; }
.offer-strip-txt strong { font-weight: 700; color: var(--ink); }

/* CTA STRIP */
.cta-strip { background: var(--green); padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; width: 100%; }
.cta-title { font-family: Georgia, serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 400; }

/* FOOTER */
.footer { background: var(--green); padding: 3.25rem 3rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-decoration: none; }
.ft-logo-mark { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-size: 14px; font-weight: 700; color: #fff; background: var(--green-800); }
.ft-name { font-size: 14.5px; font-weight: 600; color: #fff; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; font-weight: 400; max-width: 300px; }
.ft-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.85rem; }
.ft-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; font-weight: 400; }
.ft-row .icon { width: 15px; height: 15px; color: rgba(255,255,255,0.45); flex-shrink: 0; margin-top: 2px; }
.ft-row a { color: inherit; text-decoration: none; }
.ft-row a:hover { color: #fff; }
.ft-row strong { color: #fff; font-weight: 600; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 0.55rem; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; }
.ft-links a:hover { color: #fff; }
.ft-bottom { background: var(--green-deep); padding: 1rem 3rem; }
.ft-bottom-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.45); }

/* DEMO NOTES — internal/pitch markers, removed before production */
.demo-note {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06);
  border-radius: 10px; padding: 0.9rem 1.25rem;
  font-size: 13px; color: #5B21B6; line-height: 1.6; font-weight: 400;
}
.demo-note-badge {
  flex-shrink: 0; background: #7C3AED; color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; margin-top: 2px;
}
.demo-note-strip { padding: 1.25rem 3rem; background: var(--paper); }
.demo-note-strip .dn-wrap { max-width: 1180px; margin: 0 auto; }
.demo-note-strip.gray { background: var(--paper-alt); }

/* RESPONSIVE */
@media (max-width: 940px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { gap: 0; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3rem 1.5rem 3.25rem; }
  .h1 { font-size: 40px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .inquire { padding: 3rem 1.5rem; }
  .inquire-inner { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .about { padding: 3rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services { padding: 3rem 1.5rem; }
  .page-section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3.25rem 1.5rem; }
  .page-h1 { font-size: 34px; }
  .offer-strip { padding: 1.25rem 1.5rem; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ft-bottom { padding: 1rem 1.5rem; }
  .demo-note-strip { padding: 1.25rem 1.5rem; }
}
/* ===================================================================
   POLISH PASS — motion, depth & new dealer components
   =================================================================== */

/* --- Scroll reveal (progressive; no-JS + reduced-motion safe) --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; } .reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; } .reveal.d4 { transition-delay: 0.24s; }

/* --- Hero entrance + gentle art float --- */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-copy > * { animation: riseIn 0.8s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(2){ animation-delay:.06s } .hero-copy > *:nth-child(3){ animation-delay:.12s }
.hero-copy > *:nth-child(4){ animation-delay:.18s } .hero-copy > *:nth-child(5){ animation-delay:.24s }
.hero-art { animation: riseIn 0.9s cubic-bezier(.2,.7,.2,1) 0.15s both; }
.cart-scene { animation: floatY 7s ease-in-out 1.2s infinite; will-change: transform; }
.cart-scene .cart-shine { transform-box: fill-box; transform-origin: center; }

/* --- Refined hover micro-interactions --- */
.btn-lg { position: relative; overflow: hidden; }
.btn-primary, .btn-green, .btn-submit, .nav-cta { transition: background 0.18s, transform 0.18s, box-shadow 0.18s; }
.btn-primary:hover, .btn-green:hover, .btn-submit:hover { transform: translateY(-1px); }
.btn-primary:active, .btn-green:active, .btn-submit:active, .btn-lg:active { transform: translateY(0); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(165,117,31,0.3); }

.svc { transition: background 0.18s, transform 0.18s, box-shadow 0.18s; }
a.svc:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(11,44,25,0.09); position: relative; z-index: 2; }
.svc-icon { transition: transform 0.25s cubic-bezier(.2,.7,.2,1); }
a.svc:hover .svc-icon { transform: scale(1.06) rotate(-3deg); }
.svc-name .icon { transition: transform 0.2s; }
a.svc:hover .svc-name .icon { transform: translateX(4px); }

.card { transition: transform 0.2s cubic-bezier(.2,.7,.2,1), box-shadow 0.2s, border-color 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,44,25,0.12); border-color: #D2DED2; }
.card .photo-ph .ph-cart { transition: transform 0.3s ease; }
.card:hover .photo-ph .ph-cart { transform: scale(1.05); }
.btn-green .icon { transition: transform 0.2s; }
.card:hover .btn-green .icon, .feat:hover .icon { transform: translateX(3px); }

.feat { transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
.feat:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,44,25,0.07); border-color: #D2DED2; }
.trust-item { transition: background 0.18s; }
.trust-item:hover { background: var(--paper-alt); }
.stat { transition: transform 0.18s, box-shadow 0.18s; }
.stat:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11,44,25,0.06); }
.rq-field input, .rq-field textarea, .rq-field select { transition: border-color 0.15s, box-shadow 0.15s, background 0.15s; }

/* --- Financing ribbon (hero) --- */
.fin-ribbon {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 1.6rem;
  background: linear-gradient(100deg, rgba(201,154,62,0.22), rgba(201,154,62,0.08));
  border: 1px solid rgba(201,154,62,0.5); border-radius: 10px;
  padding: 9px 15px; color: #fff; font-size: 13px; font-weight: 500;
}
.fin-ribbon .icon { width: 17px; height: 17px; color: var(--gold-soft); }
.fin-ribbon strong { font-weight: 700; }
.fin-ribbon sup { color: var(--gold-soft); font-weight: 700; }

/* --- Financing & trade-in split panels --- */
.finance { padding: 3.75rem 3rem; background: var(--paper-alt); border-top: 1px solid var(--line); }
.finance-wrap { max-width: 1180px; margin: 0 auto; }
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.75rem; }
.fin-card {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 1.9rem 1.9rem 1.75rem;
  box-shadow: 0 8px 24px rgba(11,44,25,0.05); transition: transform 0.2s, box-shadow 0.2s;
}
.fin-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,44,25,0.1); }
.fin-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
.fin-card.green::before { background: var(--green); }
.fin-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 1rem;
}
.fin-badge.sand { background: var(--tint-sand); color: var(--accent); }
.fin-badge.grn { background: var(--tint-green); color: var(--green); }
.fin-badge .icon { width: 14px; height: 14px; }
.fin-h { font-family: Georgia, serif; font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.fin-rate { font-family: Georgia, serif; font-size: 40px; font-weight: 700; color: var(--green); line-height: 1; margin: 0.35rem 0 0.75rem; }
.fin-rate small { font-size: 14px; color: var(--muted); font-weight: 400; font-family: inherit; }
.fin-p { font-size: 14px; color: var(--moss); line-height: 1.7; margin-bottom: 1.1rem; }
.fin-list { list-style: none; margin-bottom: 1.2rem; }
.fin-list li { font-size: 13.5px; color: var(--moss-ic); display: flex; align-items: flex-start; gap: 9px; padding: 4px 0; }
.fin-list .icon { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.fin-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.fin-cta .icon { width: 16px; height: 16px; transition: transform 0.2s; }
.fin-cta:hover .icon { transform: translateX(4px); }

/* --- LSV street-legal spec sheet --- */
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; align-items: center; margin-top: 1.75rem; }
.spec-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; box-shadow: 0 10px 30px rgba(11,44,25,0.06); }
.spec-panel .rq-title { display: flex; align-items: center; gap: 9px; margin-bottom: 1.1rem; }
.spec-panel .rq-title .icon { width: 20px; height: 20px; color: var(--green); }
.spec-rows { list-style: none; }
.spec-rows li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--moss-ic); padding: 10px 0; border-bottom: 1px dashed var(--line); }
.spec-rows li:last-child { border-bottom: none; }
.spec-rows .icon { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }
.spec-rows b { color: var(--ink); font-weight: 600; }
.spec-copy .about-p { margin-bottom: 1rem; }

/* --- Reviews / testimonials --- */
.reviews { padding: 3.75rem 3rem; background: var(--paper); border-top: 1px solid var(--line); }
.reviews-wrap { max-width: 1180px; margin: 0 auto; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.rev { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.rev:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,44,25,0.08); }
.rev-stars { display: flex; gap: 3px; margin-bottom: 0.85rem; color: var(--gold-soft); }
.rev-stars .icon { width: 17px; height: 17px; fill: var(--gold-soft); stroke: var(--gold-soft); }
.rev-quote { font-size: 14.5px; color: var(--moss-ic); line-height: 1.7; margin-bottom: 1.1rem; flex: 1; }
.rev-who { display: flex; align-items: center; gap: 11px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.rev-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.rev-loc { font-size: 12px; color: var(--muted); }

/* --- Section-level demo note strip helper --- */
.dn-inline { margin-top: 2rem; }

@media (max-width: 940px) {
  .fin-grid { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; gap: 1.75rem; }
  .rev-grid { grid-template-columns: 1fr; }
  .finance { padding: 3rem 1.5rem; }
  .reviews { padding: 3rem 1.5rem; }
}

/* ===================================================================
   D C CATALOG LAYOUT — compact hero + inventory-first "dealer lot" grid
   (This is the variant that makes D C read as a browse-first catalog,
    distinct from a single-cart spotlight layout.)
   =================================================================== */

/* --- Compact catalog hero --- */
.hero.compact .hero-inner { padding: 2.75rem 3rem 3rem; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.hero.compact .h1 { font-size: 43px; margin-bottom: 1rem; }
.hero.compact .hero-p { font-size: 15.5px; margin-bottom: 1.4rem; max-width: 480px; }
.hero.compact .hero-badges { margin-top: 1.5rem; }

/* --- Hero quick-browse rail (reinforces the catalog / browse-by-type feel) --- */
.hero-browse {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px; padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28); backdrop-filter: blur(4px);
}
.hero-browse-title { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.hero-browse-title .icon { width: 16px; height: 16px; }
.qchips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qchip {
  display: flex; align-items: center; gap: 9px; text-decoration: none;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px; padding: 11px 12px; color: #fff; font-size: 13px; font-weight: 600;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}
.qchip:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.qchip .icon { width: 17px; height: 17px; color: var(--gold-soft); }
.qchip.full { grid-column: 1 / -1; justify-content: center; background: var(--accent); border-color: var(--accent); }
.qchip.full:hover { background: var(--accent-600); }
.qchip.full .icon { color: #fff; }

/* --- INVENTORY (the catalog centerpiece) --- */
.inventory { padding: 3.25rem 3rem 3.75rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.inventory-wrap { max-width: 1180px; margin: 0 auto; }
.inv-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.inv-head .sec-h { margin-bottom: 0.4rem; }
.inv-count { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.inv-count .icon { width: 16px; height: 16px; color: var(--green); }
.inv-count b { color: var(--ink); font-weight: 700; }

/* --- Filter chips --- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 1.75rem; }
.chip {
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--moss-ic);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.chip .icon { width: 15px; height: 15px; }
.chip:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(21,83,46,0.22); }
.chip .chip-n { font-size: 11px; font-weight: 700; opacity: 0.65; }
.chip.active .chip-n { opacity: 0.85; }
.inventory .card-grid { margin-top: 0; }
.card.hide { display: none; }
.inv-empty { display: none; font-size: 14px; color: var(--muted); padding: 1.5rem 0; }

@media (max-width: 940px) {
  .hero.compact .hero-inner { grid-template-columns: 1fr; }
  .inventory { padding: 3rem 1.5rem; }
  .inv-head { align-items: flex-start; }
}
@media (max-width: 560px) {
  .qchips { grid-template-columns: 1fr; }
  .filter-bar { gap: 7px; }
  .chip { padding: 7px 13px; font-size: 12.5px; }
}

/* --- Respect reduced-motion everywhere --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cart-scene { animation: none !important; }
}

@media (max-width: 560px) {
  .nav { padding: 0 1rem; }
  .logo-sub { display: none; }
  .nav-cta { padding: 8px 14px; }
  .h1 { font-size: 33px; }
  .btns .btn-primary, .btns .btn-ghost { width: 100%; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .inquire-h { font-size: 30px; }
  .cta-strip .btn-primary, .cta-strip .btn-green { width: 100%; justify-content: center; }
}
