/* ==========================================================================
   Ferretería La Muralla — v2
   Token layer: spec/tokens.json (cloning-website pack, 2026-08-21).
   Green provisional pending signage validation (tailoring/brand-tokens.md).
   ========================================================================== */

:root {
  /* brand */
  --brand: #88B019;
  --brand-bright: #92BE0D;
  --brand-deep: #6CAF13;
  --brand-accessible: #4F7A0B;
  --brand-on: #FFFFFF;
  /* neutrals */
  --ink: #111111;
  --ink-secondary: #4A4A4A;
  --ink-muted: #6E6E6E;
  --border: #DDDDDD;
  --surface: #FFFFFF;
  --surface-sunken: #F5F5F3;
  /* state */
  --success: #3E8E4E;
  --error: #C6362F;
  --warning: #E0A100;
  --info: #2F6DB0;
  /* type */
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-xs: 12px; --text-sm: 14px; --text-base: 16px; --text-lg: 20px;
  --text-xl: 25px; --text-2xl: 31px; --text-3xl: 39px; --text-4xl: 49px;
  --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700;
  --lh-tight: 1.15; --lh-heading: 1.25; --lh-body: 1.6;
  /* space */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;
  /* layout */
  --container: 1200px; --gutter: 16px;
  /* shape / depth */
  --radius-sm: 4px; --radius-md: 8px; --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 120ms; --duration-base: 200ms; --duration-slow: 320ms;
}

[data-theme="dark"] {
  --ink: #F2F2F0;
  --ink-secondary: #C4C4C0;
  --ink-muted: #9A9A96;
  --border: #33352F;
  --surface: #15170F;
  --surface-sunken: #1C1F14;
  --brand-accessible: #A5CE3E;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.55);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; }
a { color: var(--brand-accessible); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0 0 var(--space-4); color: var(--ink); }
h1 { font-size: var(--text-3xl); font-weight: var(--fw-semibold); line-height: var(--lh-tight); }
h2 { font-size: var(--text-2xl); font-weight: var(--fw-semibold); line-height: var(--lh-heading); }
h3 { font-size: var(--text-xl); font-weight: var(--fw-semibold); line-height: var(--lh-heading); }
h4 { font-size: var(--text-lg); font-weight: var(--fw-medium); line-height: var(--lh-heading); }
p { margin: 0 0 var(--space-4); }
ul { margin: 0 0 var(--space-4); padding-left: 20px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
svg { display: inline-block; vertical-align: middle; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-accessible); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* pending-content marker: invisible in production, greppable in code */
[data-pending] { position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  background: var(--brand-accessible); color: #fff;
  border: 2px solid var(--brand-accessible); border-radius: var(--radius-pill);
  font-family: inherit; font-size: var(--text-base); font-weight: var(--fw-semibold);
  line-height: 1.2; cursor: pointer; text-decoration: none;
  transition: background var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease), transform var(--duration-fast) var(--ease);
}
.btn:hover { background: var(--brand-deep); border-color: var(--brand-deep); text-decoration: none; transform: translateY(-1px); color: #fff; }
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 8px 16px; font-size: var(--text-sm); }
.btn-lg { padding: 14px 30px; font-size: var(--text-lg); }
.btn-outline { background: transparent; color: var(--brand-accessible); }
.btn-outline:hover { background: var(--brand-accessible); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-white { background: #fff; border-color: #fff; color: var(--brand-accessible); }
.btn-white:hover { background: #f0f0ea; border-color: #f0f0ea; color: var(--brand-accessible); }
[data-theme="dark"] .btn { color: #10130a; }
[data-theme="dark"] .btn:hover { color: #10130a; }
[data-theme="dark"] .btn-outline { background: transparent; color: var(--brand-accessible); }
[data-theme="dark"] .btn-outline:hover { background: var(--brand-accessible); color: #10130a; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--surface); }
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.topbar { background: var(--ink); color: #fff; font-size: var(--text-sm); }
[data-theme="dark"] .topbar { background: #000; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 40px; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: var(--space-5); }
.topbar__link { color: #fff; display: inline-flex; align-items: center; gap: 6px; font-weight: var(--fw-medium); }
.topbar__link svg { width: 15px; height: 15px; }
.topbar__status { display: flex; align-items: center; gap: var(--space-4); color: #D8D8D4; }
.open-now { display: inline-flex; align-items: center; gap: 6px; font-weight: var(--fw-medium); color: #fff; }
.open-now .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-bright); display: inline-block; }
.open-now.is-closed .dot { background: var(--warning); }

.navbar { border-bottom: 1px solid var(--border); background: var(--surface); }
.navbar__inner { display: flex; align-items: center; gap: var(--space-5); min-height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; width: 154px; height: 44px; object-fit: contain; }
.brand__logo--dark { display: none; }
[data-theme="dark"] .brand__logo--light { display: none; }
[data-theme="dark"] .brand__logo--dark { display: block; }

.nav { display: flex; align-items: center; gap: var(--space-5); margin-left: auto; }
.nav-a { color: var(--ink); font-weight: var(--fw-medium); font-size: var(--text-base); }
.nav-a:hover { color: var(--brand-accessible); text-decoration: none; }
.nav-a.is-active { color: var(--brand-accessible); }
.nav-a.btn { color: #fff; }
[data-theme="dark"] .nav-a.btn { color: #10130a; }
.nav__head, .nav__cta { display: none; }

.theme-toggle, .nav-toggle {
  background: none; border: 1px solid var(--border); border-radius: var(--radius-md);
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.theme-toggle { margin-left: auto; order: 2; }
.nav-toggle { display: none; order: 3; }
.theme-toggle svg, .nav-toggle svg { width: 20px; height: 20px; }
.icon-sun { display: none; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
.nav-toggle .icon-close { display: none; }

@media (min-width: 921px) {
  .theme-toggle { order: initial; margin-left: 0; }
  .nav { order: initial; }
  .navbar__inner { justify-content: flex-start; }
  .nav { margin-left: auto; }
  .theme-toggle { margin-left: var(--space-2); order: 5; }
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
    background: var(--surface); flex-direction: column; align-items: stretch;
    padding: var(--space-5); gap: 0; margin: 0;
    transform: translateX(100%); transition: transform var(--duration-slow) var(--ease);
    z-index: 150; overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-a { padding: 14px 4px; border-bottom: 1px solid var(--border); font-size: var(--text-lg); }
  .nav-a.btn { margin-top: var(--space-4); border-bottom: none; justify-content: center; }
  .nav__head { display: block; margin-bottom: var(--space-4); }
  .nav__cta { display: flex; gap: var(--space-3); margin-top: auto; padding-top: var(--space-5); }
  .nav__cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--radius-md); font-weight: var(--fw-semibold); }
  .nav__cta svg { width: 18px; height: 18px; }
  .nav__call { background: var(--surface-sunken); color: var(--ink); }
  .nav__wa { background: #1FAF38; color: #fff; }
  body.nav-open { overflow: hidden; }
}
.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
  transition: opacity var(--duration-base) var(--ease); z-index: 140;
}
.nav-scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(78vh, 680px); display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,10,4,0.82) 0%, rgba(8,10,4,0.55) 55%, rgba(8,10,4,0.25) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero__inner { padding: var(--space-9) 0; max-width: 640px; }
.hero__copy h1 { color: #fff; font-size: clamp(31px, 5vw, 49px); margin-bottom: var(--space-4); }
.hero__copy h1 .accent { color: var(--brand-bright); }
.hero__copy p { color: #E8E8E4; font-size: var(--text-lg); margin-bottom: var(--space-6); }
.hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero__eyebrow { color: var(--brand-bright); }
.eyebrow {
  display: inline-block; font-size: var(--text-sm); font-weight: var(--fw-semibold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-accessible);
  margin-bottom: var(--space-3);
}

/* page hero (interior pages) */
.page-hero { background: var(--surface-sunken); padding: var(--space-7) 0 var(--space-6); border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: var(--space-3); }
.page-hero p { max-width: 720px; color: var(--ink-secondary); font-size: var(--text-lg); }
.page-hero .hero__cta { margin-top: var(--space-5); }
.breadcrumb { font-size: var(--text-sm); color: var(--ink-muted); margin-bottom: var(--space-4); }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--brand-accessible); }

/* ---------- trust bar ---------- */
.trustbar { background: var(--brand-accessible); color: #fff; overflow: hidden; padding: var(--space-3) 0; }
[data-theme="dark"] .trustbar { background: #2E4507; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee__group { display: flex; gap: var(--space-8); padding-right: var(--space-8); align-items: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust { display: flex; align-items: center; gap: var(--space-3); white-space: nowrap; }
.trust svg { width: 26px; height: 26px; flex: none; }
.trust b { display: block; font-size: var(--text-base); line-height: 1.2; }
.trust small { font-size: var(--text-sm); opacity: 0.85; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee__group[aria-hidden] { display: none; }
}

/* ---------- sections / grids ---------- */
.section { padding: var(--space-8) 0; }
.section--sand { background: var(--surface-sunken); }
.section--tight { padding: var(--space-6) 0; }
.section-head { max-width: 720px; margin-bottom: var(--space-6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { color: var(--ink-secondary); font-size: var(--text-lg); margin: 0; }
.grid { display: grid; gap: var(--space-5); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards-4, .cards-3, .cards-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-5); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand); }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.card p { color: var(--ink-secondary); font-size: var(--text-base); margin-bottom: var(--space-3); }
.card .more { color: var(--brand-accessible); font-weight: var(--fw-semibold); font-size: var(--text-sm); }

/* category tile */
.cat-card { text-align: left; }
.cat-card__icon { display: block; margin-bottom: var(--space-4); }
.cat-card__icon img { width: 64px; height: 64px; object-fit: contain; }

/* service card */
.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--surface-sunken); color: var(--brand-accessible); margin-bottom: var(--space-4);
}
.service__icon svg { width: 28px; height: 28px; }
.service.is-featured { border-color: var(--brand); border-width: 2px; }
.service.is-featured .service__icon { background: var(--brand-accessible); color: #fff; }

/* store card */
.store { position: relative; }
.store__badge {
  position: absolute; top: var(--space-4); right: var(--space-4);
  background: var(--surface-sunken); color: var(--brand-accessible);
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.store__row { display: flex; align-items: flex-start; gap: 8px; color: var(--ink-secondary); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.store__row svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--brand-accessible); }
.store__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: var(--space-3) 0 var(--space-4); }
.tag { background: var(--surface-sunken); color: var(--ink-secondary); font-size: var(--text-xs); font-weight: var(--fw-medium); padding: 4px 10px; border-radius: var(--radius-pill); }
.store__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.store__open { font-size: var(--text-sm); font-weight: var(--fw-medium); }
.store__open .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: var(--success); margin-right: 5px; }
.store__open.is-closed .dot { background: var(--warning); }

/* hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.hours-table th, .hours-table td { text-align: left; padding: 8px 12px 8px 0; border-bottom: 1px solid var(--border); }
.hours-table th { font-weight: var(--fw-semibold); color: var(--ink); width: 90px; }
.hours-table td { color: var(--ink-secondary); }
.hours-note { font-size: var(--text-xs); color: var(--ink-muted); }

/* product card — slot order per spec PLP anatomy: image → flags → meta → title → availability → CTA */
.product-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.product-card__media { position: relative; background: var(--surface-sunken); aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
.product-card__media img { width: 72px; height: 72px; object-fit: contain; opacity: 0.9; }
.product-card__media svg { width: 48px; height: 48px; color: var(--ink-muted); }
.product-card__flags { position: absolute; top: var(--space-3); left: var(--space-3); display: flex; gap: 6px; }
.flag { background: var(--brand-accessible); color: #fff; font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 3px 10px; border-radius: var(--radius-pill); }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-4); }
.product-card__meta { font-size: var(--text-xs); color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.product-card__title { font-size: var(--text-base); font-weight: var(--fw-medium); line-height: var(--lh-heading); margin-bottom: var(--space-2); }
.product-card__title a { color: var(--ink); }
.product-card__blurb { font-size: var(--text-sm); color: var(--ink-secondary); margin-bottom: var(--space-3); flex: 1; }
.product-card__avail { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--brand-accessible); margin-bottom: var(--space-3); }
.product-card__cta { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* PDP */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; } }
.pdp__gallery { background: var(--surface-sunken); border-radius: var(--radius-md); aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--space-3); color: var(--ink-muted); }
.pdp__gallery img { width: 120px; height: 120px; object-fit: contain; }
.pdp__gallery small { font-size: var(--text-xs); }
.pdp__meta { font-size: var(--text-sm); color: var(--ink-muted); margin-bottom: var(--space-2); }
.pdp__avail { font-size: var(--text-lg); font-weight: var(--fw-semibold); color: var(--brand-accessible); margin: var(--space-4) 0; }
.pdp__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-5); }
.pdp__features { list-style: none; padding: 0; margin: 0 0 var(--space-5); }
.pdp__features li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: var(--ink-secondary); }
.pdp__features svg { width: 18px; height: 18px; flex: none; color: var(--brand-accessible); margin-top: 4px; }
.pdp__variants { margin-bottom: var(--space-4); }
.pdp__variants .tag { margin-right: 6px; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.chip {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 8px 18px; font-family: inherit; font-size: var(--text-sm); font-weight: var(--fw-medium);
  color: var(--ink-secondary); cursor: pointer;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--ink); text-decoration: none; }
.chip.is-active { background: var(--brand-accessible); border-color: var(--brand-accessible); color: #fff; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.media-img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: block; width: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: var(--space-4) 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: var(--ink-secondary); }
.checklist svg { width: 18px; height: 18px; flex: none; color: var(--brand-accessible); margin-top: 4px; }
.map-embed { width: 100%; border: 0; border-radius: var(--radius-md); min-height: 300px; box-shadow: var(--shadow-sm); }
.map-embed--tall { min-height: 420px; height: 100%; }

/* reviews */
.reviews__head { display: flex; justify-content: center; margin-bottom: var(--space-6); }
.rating-badge { display: inline-flex; align-items: center; gap: var(--space-4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-sm); }
.rating-badge .score { font-size: var(--text-3xl); font-weight: var(--fw-bold); color: var(--ink); }
.stars { color: var(--warning); letter-spacing: 2px; }
.review-card p { font-size: var(--text-base); color: var(--ink-secondary); }
.review-card .author { display: flex; align-items: center; gap: var(--space-3); }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--surface-sunken);
  color: var(--brand-accessible); font-weight: var(--fw-semibold); font-size: var(--text-sm);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.review-card .author b { display: block; font-size: var(--text-sm); }
.review-card .author small { color: var(--ink-muted); font-size: var(--text-xs); }

/* steps */
.steps { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: var(--space-5); }
.step__n {
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand-accessible); color: #fff;
  font-size: var(--text-lg); font-weight: var(--fw-bold);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.step h3 { font-size: var(--text-lg); }
.step p { color: var(--ink-secondary); }

/* brand / supplier wall */
.marcas-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--space-5); align-items: center; }
@media (max-width: 1024px) { .marcas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .marcas-grid { grid-template-columns: repeat(3, 1fr); } }
.marca { display: flex; align-items: center; justify-content: center; padding: var(--space-3); }
.marca img { max-height: 44px; width: auto; filter: grayscale(1); opacity: 0.65; transition: filter var(--duration-base) var(--ease), opacity var(--duration-base) var(--ease); }
.marca:hover img { filter: none; opacity: 1; }
[data-theme="dark"] .marca img { filter: grayscale(1) invert(1); }
[data-theme="dark"] .marca:hover img { filter: invert(1); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--brand-accessible), var(--brand-deep));
  color: #fff; text-align: center; border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-5);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto var(--space-5); }
.cta-band .btn-white { color: var(--brand-accessible); }

/* forms */
.form { display: grid; gap: var(--space-4); max-width: 640px; }
.form--wide { max-width: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: var(--text-sm); font-weight: var(--fw-medium); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: var(--text-base);
  color: var(--ink); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand);
}
.field small { color: var(--ink-muted); font-size: var(--text-xs); }
.form__msg { background: var(--surface-sunken); border-left: 4px solid var(--success); padding: var(--space-4); border-radius: var(--radius-sm); }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--ink-secondary); }
.form__consent input { width: auto; margin-top: 4px; }

/* prose (legal / story pages) */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--space-7); }
.prose h3 { margin-top: var(--space-5); }
.prose p, .prose li { color: var(--ink-secondary); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #1FAF38; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform var(--duration-fast) var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* footer */
.footer { background: #14160D; color: #D8D8D4; padding: var(--space-8) 0 var(--space-5); margin-top: var(--space-8); }
.footer a { color: #D8D8D4; }
.footer a:hover { color: var(--brand-bright); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--space-6); margin-bottom: var(--space-6); }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { margin-bottom: var(--space-4); display: inline-block; }
.footer__about { max-width: 300px; font-size: var(--text-sm); }
.footer__title { font-size: var(--text-base); font-weight: var(--fw-semibold); color: #fff; margin-bottom: var(--space-3); }
.footer ul { list-style: none; padding: 0; margin: 0; font-size: var(--text-sm); }
.footer ul li { margin-bottom: 8px; }
.footer__stores b { color: #fff; display: block; }
.footer__stores span { display: block; margin-bottom: 4px; }
.footer__hours { font-size: var(--text-xs); color: #9A9A96; margin-top: var(--space-3); }
.footer__bottom { border-top: 1px solid #2A2C22; padding-top: var(--space-4); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); color: #9A9A96; }
.footer__bottom a { color: #9A9A96; }
.social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social a { width: 38px; height: 38px; border-radius: 50%; background: #24261B; display: inline-flex; align-items: center; justify-content: center; }
.social a:hover { background: var(--brand-accessible); color: #fff; }
.social svg { width: 18px; height: 18px; }

/* reveal on scroll */
.reveal-on .reveal-el { opacity: 0; transform: translateY(14px); transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
.reveal-on .reveal-el.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
