/* ===================================================================
   Village Elite Golf Cars — theme: "Fairway Luxe"
   Palette: deep pine green + warm brass/gold accent + cream.
   Self-contained: system font stack, inline SVG icons. No CDNs.
   =================================================================== */
:root {
  --pine:      #10321F;   /* brand primary — deep pine */
  --pine-800:  #17422A;   /* raised green */
  --pine-deep: #0A2114;   /* footer base */
  --moss:      #3C5D45;   /* muted green */
  --ink:       #16241C;   /* body headings */
  --muted:     #5E6B62;   /* secondary text */
  --paper:     #FFFFFF;
  --paper-alt: #F5F3EC;   /* cream section tint */
  --line:      #E4E1D6;   /* hairlines */
  --tint-pine: #E9EFE9;   /* green icon chip bg */
  --tint-sand: #F1ECDD;   /* sand icon chip bg */
  --gold:      #B08637;   /* brass accent */
  --gold-600:  #8F6B27;   /* accent hover / deep brass */
  --gold-200:  #E7D9B4;   /* light gold line */
  --serif: Georgia, 'Times New Roman', 'Playfair Display', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 2px 10px rgba(16,50,31,0.06);
  --shadow-md: 0 16px 40px rgba(16,50,31,0.12);
  --shadow-lg: 0 30px 70px rgba(10,33,20,0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold-200); color: var(--pine-deep); }
a { -webkit-tap-highlight-color: rgba(176,134,55,0.2); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

/* 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: var(--serif); font-size: 17px; font-weight: 700; color: var(--gold-200);
  letter-spacing: 0.02em; background: var(--pine);
  border: 1px solid var(--gold-600);
}
.logo-text { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; display: block; }
.logo-sub { font-size: 10.5px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-top: 2px; }
.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; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--pine); }
.nav-links a.active { color: var(--pine); font-weight: 600; }
.nav-cta {
  background: var(--gold); color: #fff !important; padding: 10px 20px;
  border-radius: 7px; font-weight: 600 !important; font-size: 13.5px !important;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(176,134,55,0.28);
}
.nav-cta:hover { background: var(--gold-600) !important; }

/* Icon sizing helpers (inline SVG) */
.ico { width: 1em; height: 1em; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico-fill { fill: currentColor; stroke: none; }

/* HERO */
.hero { position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(176,134,55,0.20) 0%, rgba(176,134,55,0) 46%),
    linear-gradient(150deg, var(--pine-deep) 0%, var(--pine) 46%, var(--pine-800) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 26px);
  opacity: 0.7;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 4.5rem 3rem; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px;
  font-weight: 600; color: var(--gold-200); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.tag .ico { font-size: 15px; color: var(--gold); }
.hero-h1 {
  font-family: var(--serif); font-size: 56px; line-height: 1.05;
  color: #fff; letter-spacing: -0.01em; margin-bottom: 1.35rem; font-weight: 700;
}
.hero-h1 .gold { color: var(--gold-200); font-style: italic; }
.hero-p { font-size: 16.5px; color: rgba(255,255,255,0.82); line-height: 1.75; 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(--gold); color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 14px 26px; border-radius: 8px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 22px rgba(176,134,55,0.30);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn-primary .ico { font-size: 17px; }
.btn-ghost {
  font-size: 14.5px; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 13px 24px; border-radius: 8px; border: 1.5px solid rgba(231,217,180,0.55);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(231,217,180,0.12); border-color: var(--gold-200); }
.btn-ghost .ico { font-size: 17px; color: var(--gold-200); }
.btn-dark {
  background: var(--pine); color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 14px 26px; border-radius: 8px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; transition: background 0.15s;
}
.btn-dark:hover { background: var(--pine-800); }
.btn-dark .ico { font-size: 17px; color: var(--gold-200); }

/* Hero card — showcase cart */
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(231,217,180,0.28);
  border-radius: 18px; padding: 1.5rem; backdrop-filter: blur(3px);
}
.showcase {
  border-radius: 12px; overflow: hidden; background: linear-gradient(160deg, #12351F, #0C2416);
  border: 1px solid rgba(231,217,180,0.2);
}
.showcase-art { aspect-ratio: 16 / 11; display: flex; align-items: center; justify-content: center; position: relative; }
.showcase-label {
  position: absolute; left: 14px; bottom: 12px; font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(231,217,180,0.72); font-weight: 600;
  background: rgba(10,33,20,0.6); padding: 4px 10px; border-radius: 5px;
  border: 1px solid rgba(231,217,180,0.2);
}
.hero-card-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0.5rem 0.35rem; }
.hero-card-name { font-family: var(--serif); font-size: 19px; color: #fff; }
.hero-card-tag { font-size: 11.5px; color: var(--gold-200); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.hero-card-price { font-size: 12.5px; color: rgba(255,255,255,0.7); text-align: right; }
.hero-card-price strong { display: block; font-family: var(--serif); font-size: 18px; color: var(--gold-200); font-weight: 700; }

/* SVG cart illustration colors via currentColor on group */
.cart-illus { width: 74%; color: var(--gold-200); }
.cart-illus .body { fill: currentColor; }
.cart-illus .roof { fill: currentColor; opacity: 0.85; }
.cart-illus .wheel { fill: #0A2114; stroke: currentColor; stroke-width: 6; }
.cart-illus .seat { fill: #0A2114; opacity: 0.65; }
.cart-illus .post { stroke: currentColor; stroke-width: 6; }

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

/* SECTION SHELL */
.section { padding: 4.25rem 3rem; }
.section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-wrap { max-width: 1180px; margin: 0 auto; }
.sec-tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 0.6rem; }
.sec-tag .ico { font-size: 14px; }
.sec-h { font-family: var(--serif); font-size: 34px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.9rem; font-weight: 700; }
.sec-lead { font-size: 15.5px; color: var(--moss); line-height: 1.8; font-weight: 400; max-width: 640px; }
.sec-head { text-align: center; margin: 0 auto 2.5rem; max-width: 680px; }
.sec-head .sec-lead { margin: 0 auto; }
.sec-head .sec-tag { display: inline-flex; align-items: center; gap: 6px; }

/* CART GRID */
.cart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cart-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; display: flex; flex-direction: column; }
.cart-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(16,50,31,0.12); border-color: var(--gold-200); }
.cart-photo { aspect-ratio: 16 / 11; background: linear-gradient(160deg, #14381F, #0D2717); display: flex; align-items: center; justify-content: center; position: relative; }
.cart-photo .cart-illus { width: 68%; }
.cart-photo .ph-label {
  position: absolute; left: 12px; bottom: 11px; font-size: 10px; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(231,217,180,0.7); font-weight: 600;
  background: rgba(10,33,20,0.55); padding: 4px 9px; border-radius: 5px; border: 1px solid rgba(231,217,180,0.18);
}
.cart-badge {
  position: absolute; top: 12px; left: 12px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine-deep);
  background: var(--gold-200); padding: 4px 10px; border-radius: 20px;
}
.cart-badge.pine { background: var(--pine); color: var(--gold-200); }
.cart-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.cart-name { font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 700; margin-bottom: 3px; }
.cart-sub { font-size: 12px; color: var(--gold-600); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem; }
.cart-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-weight: 400; margin-bottom: 1rem; }
.cart-specs { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.cart-specs li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--moss); font-weight: 400; }
.cart-specs .ico { font-size: 15px; color: var(--gold); }
.cart-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.cart-price { font-size: 12px; color: var(--muted); }
.cart-price strong { display: block; font-family: var(--serif); font-size: 19px; color: var(--pine); font-weight: 700; }
.cart-link { font-size: 13px; font-weight: 600; color: var(--gold-600); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.cart-link:hover { color: var(--gold); }
.cart-link .ico { font-size: 15px; }

/* FEATURE / WHY GRID */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.6rem 1.75rem; }
.section.alt .feature { background: #fff; }
.feature-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--tint-pine); color: var(--pine); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.feature-ic.sand { background: var(--tint-sand); color: var(--gold-600); }
.feature-h { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.feature-p { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* SPLIT — image + copy */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-media {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #14381F, #0C2416); position: relative;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--line);
}
.split-media .cart-illus { width: 62%; }
.split-media .ph-label {
  position: absolute; left: 14px; bottom: 13px; font-size: 10.5px; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(231,217,180,0.7); font-weight: 600;
  background: rgba(10,33,20,0.55); padding: 5px 10px; border-radius: 5px; border: 1px solid rgba(231,217,180,0.18);
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--moss); line-height: 1.55; font-weight: 400; }
.checklist .ico { font-size: 19px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* PARTS / CATEGORY GRID */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; text-align: left; transition: border-color 0.15s, transform 0.15s; }
.cat:hover { border-color: var(--gold-200); transform: translateY(-2px); }
.cat-ic { width: 44px; height: 44px; border-radius: 10px; background: var(--tint-sand); color: var(--gold-600); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 0.9rem; }
.cat-h { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.cat-p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding: 1.5rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.step-n { font-family: var(--serif); font-size: 30px; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.75rem; }
.step-h { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.step-p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* STAT / BADGE ROW */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat-n { font-family: var(--serif); font-size: 40px; color: var(--gold-200); font-weight: 700; line-height: 1; }
.section.alt .stat-n, .stat.dark .stat-n { color: var(--gold-600); }
.stat-l { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 0.5rem; letter-spacing: 0.04em; }
.section.alt .stat-l { color: var(--muted); }

/* INQUIRY / CTA MOMENT */
.inquiry { background: var(--pine); }
.inquiry-inner { max-width: 1080px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.inquiry-copy .sec-tag { color: var(--gold-200); }
.inquiry-h { font-family: var(--serif); font-size: 36px; line-height: 1.12; color: #fff; letter-spacing: -0.01em; margin-bottom: 1rem; font-weight: 700; }
.inquiry-p { font-size: 15.5px; color: rgba(255,255,255,0.82); line-height: 1.75; font-weight: 400; max-width: 440px; margin-bottom: 1.5rem; }
.inquiry-phone { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 27px; color: #fff; text-decoration: none; font-weight: 700; }
.inquiry-phone .ico { font-size: 23px; color: var(--gold-200); }
.inquiry-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.inquiry-badges span { font-size: 12.5px; color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 7px; }
.inquiry-badges .ico { font-size: 16px; color: var(--gold-200); }

.form-card { background: #fff; border-radius: 16px; padding: 1.85rem; box-shadow: 0 24px 60px rgba(0,0,0,0.32); }
.form-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; font-family: var(--serif); }
.field { display: block; margin-bottom: 0.9rem; }
.field span { display: block; font-size: 11.5px; font-weight: 600; color: var(--moss); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  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;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(16,50,31,0.09); }
.btn-submit {
  width: 100%; justify-content: center; margin-top: 0.4rem;
  background: var(--gold); 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: 9px; transition: background 0.15s;
}
.btn-submit:hover { background: var(--gold-600); }
.btn-submit .ico { font-size: 17px; }
.form-note { margin-top: 0.95rem; font-size: 11.5px; color: var(--muted); line-height: 1.55; display: flex; align-items: flex-start; gap: 8px; }

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

/* PAGE HERO (subpages) */
.page-hero { position: relative; overflow: hidden; }
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 4rem 3rem; }
.ph-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: var(--gold-200); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem; }
.ph-tag .ico { font-size: 15px; color: var(--gold); }
.page-h1 { font-family: var(--serif); font-size: 46px; line-height: 1.08; color: #fff; letter-spacing: -0.01em; margin-bottom: 1rem; font-weight: 700; max-width: 760px; }
.page-hero-p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; font-weight: 400; max-width: 620px; }

/* FOOTER */
.footer { background: var(--pine); padding: 3.25rem 3rem 2.5rem; }
.footer-wrap { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-decoration: none; }
.ft-logo-mark { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--gold-200); background: var(--pine-800); border: 1px solid var(--gold-600); }
.ft-name { font-size: 14.5px; font-weight: 600; color: #fff; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 400; max-width: 300px; }
.ft-heading { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 0.9rem; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 0.55rem; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,0.72); text-decoration: none; font-weight: 400; transition: color 0.15s; }
.ft-links a:hover { color: var(--gold-200); }
.ft-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 0.65rem; font-weight: 400; line-height: 1.5; }
.ft-row .ico { font-size: 16px; color: var(--gold-200); flex-shrink: 0; margin-top: 1px; }
.ft-row strong { color: #fff; font-weight: 600; }
.ft-row a { color: inherit; text-decoration: none; }
.ft-row a:hover { color: var(--gold-200); }
.ft-bottom { background: var(--pine-deep); padding: 1.1rem 3rem; }
.ft-bottom-wrap { 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.42); }

/* 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: 1px;
}
.demo-note-strip { padding: 1.25rem 3rem; background: var(--paper); }
.demo-note-strip .demo-note { max-width: 1180px; margin: 0 auto; }
.demo-note-strip.gray { background: var(--paper-alt); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .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.5rem; padding: 3.5rem 1.5rem; }
  .hero-h1 { font-size: 42px; }
  .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); }
  .section { padding: 3.25rem 1.5rem; }
  .cart-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .page-hero-inner { padding: 3rem 1.5rem; }
  .page-h1 { font-size: 36px; }
  .footer-wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-bottom { padding: 1.1rem 1.5rem; }
  .demo-note-strip { padding: 1.25rem 1.5rem; }
}
@media (max-width: 560px) {
  .nav { padding: 0 1rem; }
  .logo-sub { display: none; }
  .nav-cta { padding: 9px 15px; }
  .hero-h1 { font-size: 34px; }
  .btns .btn-primary, .btns .btn-ghost, .btns .btn-dark { width: 100%; justify-content: center; }
  .cart-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .sec-h { font-size: 28px; }
  .inquiry-h { font-size: 30px; }
  .footer-wrap { grid-template-columns: 1fr; }
  .ft-bottom-wrap { flex-direction: column; text-align: center; }
}

/* ===================================================================
   POLISH LAYER — depth, motion, micro-interactions, new modules.
   Second-pass craft. All motion respects prefers-reduced-motion.
   =================================================================== */

/* --- Refined gold accent: subtle metallic sheen on the hero word --- */
.hero-h1 .gold {
  background: linear-gradient(92deg, #E7D9B4 0%, #F4E9C6 30%, #C9A24E 52%, #F4E9C6 74%, #E7D9B4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sheen 7s linear infinite;
}
@keyframes sheen { to { background-position: -220% 0; } }

/* --- Hero: living gradient + floating showcase cart --- */
.hero-bg { animation: heroDrift 22s ease-in-out infinite alternate; }
@keyframes heroDrift {
  0%   { background-position: 0% 0%, 0 0; }
  100% { background-position: 12% 8%, 0 0; }
}
.hero .cart-illus { animation: floaty 6s var(--ease) infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Soft ground shadow under the showcase art */
.showcase-art::after {
  content: ""; position: absolute; left: 50%; bottom: 16%;
  width: 55%; height: 16px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45), transparent 70%);
  filter: blur(3px); z-index: 0; animation: shadowPulse 6s var(--ease) infinite;
}
.showcase-art .cart-illus { position: relative; z-index: 1; }
@keyframes shadowPulse { 0%,100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); } 50% { opacity: 0.3; transform: translateX(-50%) scaleX(0.86); } }

/* --- Buttons: sweeping light + firmer press feedback --- */
.btn-primary, .btn-submit { position: relative; overflow: hidden; }
.btn-primary::after, .btn-submit::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-18deg); transition: left 0.55s var(--ease);
}
.btn-primary:hover::after, .btn-submit:hover::after { left: 130%; }
.btn-primary:active, .btn-submit:active, .btn-dark:active, .nav-cta:active { transform: translateY(1px); }
.btn-dark { transition: background 0.15s, transform 0.15s, box-shadow 0.2s; }
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(16,50,31,0.28); }

/* --- Nav: gold underline grow on hover --- */
.nav-links a:not(.nav-cta) { position: relative; padding-bottom: 3px; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav { transition: box-shadow 0.25s, backdrop-filter 0.25s; }
.nav.scrolled { box-shadow: 0 6px 24px rgba(16,50,31,0.08); }
.logo-mark { transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.logo:hover .logo-mark { transform: rotate(-4deg) scale(1.05); box-shadow: 0 6px 16px rgba(176,134,55,0.35); }

/* --- Cart cards: image zoom + badge lift + arrow slide --- */
.cart-photo { overflow: hidden; }
.cart-photo .cart-illus { transition: transform 0.5s var(--ease); }
.cart-card:hover .cart-photo .cart-illus { transform: scale(1.07) translateY(-2px); }
.cart-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 80% at 50% 120%, rgba(176,134,55,0.22), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.cart-card:hover .cart-photo::before { opacity: 1; }
.cart-badge { z-index: 2; box-shadow: 0 3px 10px rgba(10,33,20,0.25); }
.cart-link .ico, .btn-primary .ico, .btn-dark .ico, .cta-strip .btn-primary .ico { transition: transform 0.25s var(--ease); }
.cart-link:hover .ico, .cart-card:hover .cart-link .ico { transform: translateX(4px); }

/* --- Feature / category / step cards: accent-edge on hover --- */
.feature, .step { transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s; position: relative; }
.feature:hover, .step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.feature-ic, .cat-ic { transition: transform 0.25s var(--ease); }
.feature:hover .feature-ic, .cat:hover .cat-ic { transform: translateY(-2px) scale(1.06); }
.step::before {
  content: ""; position: absolute; top: 0; left: 1.4rem; right: 1.4rem; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-200)); border-radius: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.step:hover::before { transform: scaleX(1); }

/* --- Trust bar: interactive tiles --- */
.trust-item { transition: background 0.2s; }
.trust-item:hover { background: var(--paper-alt); }
.trust-item:hover .trust-icon { transform: scale(1.08); }
.trust-icon { transition: transform 0.25s var(--ease); }

/* --- Section heading flourish --- */
.sec-head .sec-h::after {
  content: ""; display: block; width: 46px; height: 3px; margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-200)); border-radius: 3px;
}

/* --- Star rating chip (social proof) --- */
.rating-line { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.6rem; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-200); }
.stars .ico { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.rating-txt { font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 500; }
.rating-txt strong { color: #fff; font-weight: 700; }

/* --- Area / Villages lifestyle band --- */
.area-band { background: linear-gradient(160deg, var(--pine-800), var(--pine-deep)); position: relative; overflow: hidden; }
.area-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 15% 0%, rgba(176,134,55,0.16), transparent 55%);
}
.area-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 3.5rem 3rem; text-align: center; }
.area-inner .sec-tag { color: var(--gold-200); display: inline-flex; }
.area-inner h2 { font-family: var(--serif); font-size: 30px; color: #fff; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.area-inner p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 620px; margin: 0 auto 1.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--gold-200); letter-spacing: 0.03em;
  padding: 8px 15px; border-radius: 30px; border: 1px solid rgba(231,217,180,0.32);
  background: rgba(231,217,180,0.05); display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.chip:hover { background: rgba(231,217,180,0.13); border-color: var(--gold-200); transform: translateY(-2px); }
.chip .ico { font-size: 14px; color: var(--gold); }

/* --- Reviews / testimonials --- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.6rem 1.4rem; position: relative; transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: var(--gold); margin-bottom: 0.85rem; }
.quote-card .stars .ico { width: 15px; height: 15px; }
.quote-txt { font-size: 14px; color: var(--ink); line-height: 1.7; font-weight: 400; margin-bottom: 1.1rem; }
.quote-txt::before { content: "\201C"; font-family: var(--serif); font-size: 44px; color: var(--gold-200); line-height: 0; position: absolute; top: 34px; left: 14px; opacity: 0.6; z-index: 0; }
.quote-who { display: flex; align-items: center; gap: 11px; }
.quote-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--gold-200); background: var(--pine); }
.quote-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.quote-loc { font-size: 11.5px; color: var(--muted); }

/* --- Financing estimator (interactive, self-contained) --- */
.fin-calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem 2.25rem; box-shadow: var(--shadow-sm); }
.fin-calc .fin-controls { display: flex; flex-direction: column; gap: 1.3rem; }
.fin-row { display: flex; flex-direction: column; gap: 0.5rem; }
.fin-row .fin-label { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; font-weight: 600; color: var(--moss); }
.fin-row .fin-val { font-family: var(--serif); font-size: 17px; color: var(--pine); font-weight: 700; }
.fin-calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 5px; background: var(--line); outline: none; }
.fin-calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(176,134,55,0.4); cursor: pointer; transition: transform 0.15s; }
.fin-calc input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.fin-calc input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 3px solid #fff; border-radius: 50%; background: var(--gold); box-shadow: 0 2px 8px rgba(176,134,55,0.4); cursor: pointer; }
.fin-terms { display: flex; gap: 8px; }
.fin-terms button { flex: 1; padding: 9px 0; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--moss); background: #fff; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.fin-terms button:hover { border-color: var(--gold-200); }
.fin-terms button.active { background: var(--pine); color: #fff; border-color: var(--pine); }
.fin-result { text-align: center; background: linear-gradient(160deg, var(--pine), var(--pine-deep)); border-radius: 14px; padding: 2rem 1.5rem; color: #fff; }
.fin-result .fin-cap { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-200); font-weight: 600; }
.fin-result .fin-mo { font-family: var(--serif); font-size: 52px; font-weight: 700; color: #fff; line-height: 1.05; margin: 0.4rem 0; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.fin-result .fin-mo .unit { font-size: 20px; color: var(--gold-200); }
.fin-result .fin-mo #finMo { font-variant-numeric: tabular-nums; }
.fin-result .fin-note { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; line-height: 1.5; }
.fin-result .btn-primary { width: 100%; justify-content: center; }

/* --- Reveal-on-scroll (progressive; no-JS or reduced-motion shows all) --- */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
html.js [data-reveal].in { opacity: 1; transform: none; }

@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; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero .cart-illus, .hero-bg, .hero-h1 .gold, .showcase-art::after { animation: none !important; }
}

/* ===================================================================
   SPOTLIGHT HERO — premium single-product reveal (home page only)
   A hero-product launch: one large featured cart on a lit stage,
   floating spec callouts, and a spec/price bar. NOT a grid.
   =================================================================== */
.spotlight { position: relative; overflow: hidden; }
.spotlight .hero-bg { z-index: 0; }
.spotlight-inner {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 4.25rem 3rem 3.25rem;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 3.25rem; align-items: center;
}
.reveal-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-200); margin: 0.4rem 0 0.85rem; display: inline-flex; align-items: center; gap: 10px;
}
.reveal-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.spotlight-head .hero-h1 { font-size: 54px; margin-bottom: 1.1rem; }
.spotlight-head .hero-p { margin-bottom: 1.5rem; }

/* The product stage */
.stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.stage-inner {
  position: relative; width: 100%; max-width: 580px; aspect-ratio: 16 / 12;
  border-radius: 24px; border: 1px solid rgba(231,217,180,0.28);
  background:
    radial-gradient(78% 66% at 50% 40%, rgba(231,217,180,0.15), rgba(10,33,20,0) 62%),
    linear-gradient(165deg, rgba(23,66,42,0.66), rgba(10,33,20,0.55));
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stage-inner::before { /* spotlight cone from top */
  content: ""; position: absolute; top: -12%; left: 50%; transform: translateX(-50%);
  width: 66%; height: 122%;
  background: radial-gradient(48% 42% at 50% 0%, rgba(231,217,180,0.30), transparent 72%);
  filter: blur(6px); z-index: 1;
}
.stage-inner::after { /* pedestal shadow */
  content: ""; position: absolute; bottom: 13%; left: 50%; transform: translateX(-50%);
  width: 58%; height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 70%);
  filter: blur(5px); z-index: 1; animation: shadowPulse 6s var(--ease) infinite;
}
.stage-cart { width: 80%; position: relative; z-index: 2; color: var(--gold-200); animation: floaty 6s var(--ease) infinite; }
.stage .showcase-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 3; font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(231,217,180,0.74); font-weight: 600;
  background: rgba(10,33,20,0.6); padding: 4px 10px; border-radius: 5px; border: 1px solid rgba(231,217,180,0.2);
}

/* Floating spec callouts around the stage */
.spec-pills { position: absolute; inset: -6px; z-index: 4; pointer-events: none; }
.spec-pill {
  position: absolute; pointer-events: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap;
  background: rgba(10,33,20,0.74); border: 1px solid rgba(231,217,180,0.36);
  padding: 8px 14px; border-radius: 30px; backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.30);
  animation: floaty 6s var(--ease) infinite;
}
.spec-pill .ico { font-size: 15px; color: var(--gold-200); }
.spec-pill.p1 { top: 9%; left: -3%; animation-delay: 0.4s; }
.spec-pill.p2 { top: 40%; right: -4%; animation-delay: 1.1s; }
.spec-pill.p3 { bottom: 15%; left: 2%; animation-delay: 1.8s; }

/* Spec + price bar under the hero (the "spec sheet") */
.stage-bar { position: relative; z-index: 2; background: var(--paper); border-bottom: 1px solid var(--line); }
.sb-wrap {
  max-width: 1180px; margin: 0 auto; padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.sb-specs { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.sb-spec .sb-k { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.sb-spec .sb-v { font-family: var(--serif); font-size: 18px; color: var(--pine); font-weight: 700; line-height: 1.2; margin-top: 2px; }
.sb-spec .sb-v .ico { font-size: 15px; color: var(--gold); vertical-align: -1px; }
.sb-cta { display: flex; align-items: center; gap: 1.25rem; }
.sb-price { text-align: right; }
.sb-price .sb-k { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.sb-price .sb-v { font-family: var(--serif); font-size: 20px; color: var(--pine); font-weight: 700; }

/* ===================================================================
   REFINED MODEL LINEUP — horizontal rows (distinct from a card grid)
   =================================================================== */
.lineup-list { display: flex; flex-direction: column; gap: 0.9rem; }
.model-row {
  display: grid; grid-template-columns: 104px 1fr auto; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.5rem;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s;
}
.model-row:hover { border-color: var(--gold-200); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.model-thumb {
  width: 104px; aspect-ratio: 16 / 11; border-radius: 10px; overflow: hidden; position: relative;
  background: linear-gradient(160deg, #14381F, #0D2717); display: flex; align-items: center; justify-content: center;
}
.model-thumb .cart-illus { width: 80%; transition: transform 0.4s var(--ease); }
.model-row:hover .model-thumb .cart-illus { transform: scale(1.08); }
.model-info { min-width: 0; }
.model-top { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }
.model-name { font-family: var(--serif); font-size: 19px; color: var(--ink); font-weight: 700; }
.model-sub { font-size: 11.5px; color: var(--gold-600); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.model-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.55rem; }
.model-tags span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--moss);
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: 20px; padding: 4px 11px; font-weight: 500;
}
.model-tags .ico { font-size: 14px; color: var(--gold); }
.model-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; text-align: right; }
.model-price { font-size: 11px; color: var(--muted); }
.model-price strong { display: block; font-family: var(--serif); font-size: 17px; color: var(--pine); font-weight: 700; }
.lineup-foot { display: flex; justify-content: center; margin-top: 1.6rem; }

/* --- Responsive for new modules --- */
@media (max-width: 960px) {
  .review-grid { grid-template-columns: 1fr; }
  .fin-calc { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem; }
  .area-inner { padding: 3rem 1.5rem; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem 2.75rem; }
  .spotlight-head .hero-h1 { font-size: 42px; }
  .stage { min-height: 0; }
  .stage-inner { max-width: 460px; margin: 0 auto; }
  .sb-wrap { padding: 1.4rem 1.5rem; gap: 1.25rem; }
  .sb-specs { gap: 1.75rem; }
  .model-row { grid-template-columns: 80px 1fr; grid-template-areas: "thumb info" "cta cta"; row-gap: 1rem; }
  .model-thumb { width: 80px; grid-area: thumb; }
  .model-info { grid-area: info; }
  .model-cta { grid-area: cta; flex-direction: row; align-items: center; justify-content: space-between;
    padding-top: 0.9rem; border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .spotlight-head .hero-h1 { font-size: 34px; }
  /* On small screens, drop the absolutely-positioned pills into flow */
  .spec-pills { position: static; inset: auto; display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-top: 1.1rem; }
  .spec-pill { position: static; animation: none; }
  .spec-pill.p1, .spec-pill.p2, .spec-pill.p3 { top: auto; left: auto; right: auto; bottom: auto; }
  .stage { flex-direction: column; }
  .sb-cta .btn-primary { flex: 1; justify-content: center; }
}

/* Reduced-motion: silence the new floating animations */
@media (prefers-reduced-motion: reduce) {
  .stage-cart, .spec-pill, .stage-inner::after { animation: none !important; }
}
