/* ============================================================
   Valor — shared styles
   Brand palette extracted from joinvalor.com (not guessed)
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;700;800;900&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --cream:#F2EFE5; --cream-2:#F2EDD9; --cream-3:#FBFAF4;
  --ink:#141414; --charcoal:#292929; --charcoal-2:#26262B;
  --gold:#CAB34E; --gold-hover:#BFA640; --gold-light:#D9C98C; --gold-dark:#998533;
  --white:#FFFFFF; --muted:#5c5a50; --muted-2:#86837a;
  --line:rgba(20,20,20,0.10); --line-2:rgba(20,20,20,0.06);
  --maxw:1140px; --radius:16px; --radius-lg:26px; --radius-pill:999px;
  --shadow-sm:0 1px 2px rgba(20,20,20,.05), 0 6px 20px rgba(20,20,20,.06);
  --shadow-md:0 10px 40px rgba(20,20,20,.10);
  --gold-sheen:linear-gradient(135deg,var(--gold-light) 0%,var(--gold) 42%,var(--gold-dark) 100%);
  --serif:"Roboto Slab",Georgia,serif;
  --sans:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family:var(--sans); color:var(--ink);
  background:var(--cream); line-height:1.55;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
h1,h2,h3,h4{font-family:var(--serif); font-weight:800; line-height:1.08; margin:0; letter-spacing:-.01em}
p{margin:0}
section{width:100%}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px}
.eyebrow{font-weight:700; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-dark)}
.lead{font-size:1.12rem; color:var(--muted); line-height:1.6}

/* ---------- Wordmark (black VALOR + gold star) ---------- */
.brand{display:inline-flex; align-items:center; gap:0; font-family:var(--serif);
  font-weight:900; font-size:1.6rem; letter-spacing:-.02em; color:var(--ink); line-height:1}
.brand .star{display:inline-block; width:.62em; height:.62em; color:transparent; overflow:hidden;
  background:var(--gold-sheen); transform:translateY(-.28em); margin:0 -.05em;
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="12,1 15.09,8.26 22.85,8.91 16.92,13.97 18.72,21.54 12,17.5 5.28,21.54 7.08,13.97 1.15,8.91 8.91,8.26"/></svg>') center/contain no-repeat;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="12,1 15.09,8.26 22.85,8.91 16.92,13.97 18.72,21.54 12,17.5 5.28,21.54 7.08,13.97 1.15,8.91 8.91,8.26"/></svg>') center/contain no-repeat}
.brand--cream{color:var(--cream)}
.brand--lg{font-size:2.4rem}
.brand-img{display:block; height:1.5rem; width:auto}
.brand--lg .brand-img{height:2.1rem}
.site-footer .brand-img{height:1.7rem}

/* ---------- Buttons ---------- */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--sans); font-weight:700; font-size:.98rem; line-height:1;
  padding:.9rem 1.5rem; border-radius:var(--radius-pill); border:2px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease; white-space:nowrap}
.btn:active{transform:translateY(1px)}
.btn-dark{background:var(--ink); color:var(--cream)}
.btn-dark:hover{background:#000; box-shadow:var(--shadow-sm)}
.btn-gold{background:var(--gold-sheen); color:var(--ink); border-color:var(--gold-dark)}
.btn-gold:hover{box-shadow:var(--shadow-sm)}
.btn-green{background:linear-gradient(135deg,#3ccb73 0%,#22a85a 42%,#15833f 100%); color:#fff; border-color:#0f6e34}
.btn-green:hover{box-shadow:var(--shadow-sm)}
.cta-band{background:var(--cream); padding:24px 0 50px; text-align:center}
.cta-band--white{background:var(--cream-3)}
.cta-band .wrap{display:flex; flex-direction:column; align-items:center; gap:26px}
.cta-band-img{width:100%; max-width:540px; border-radius:var(--radius-lg); box-shadow:var(--shadow-md)}
.cta-band .btn{min-width:300px; max-width:100%}
/* shiny gold sweep */
.btn-shine{position:relative; overflow:hidden}
.btn-shine::after{content:""; position:absolute; top:0; left:-65%; width:42%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform:skewX(-18deg); animation:btn-sheen 3.6s ease-in-out infinite}
@keyframes btn-sheen{0%{left:-65%} 28%{left:140%} 100%{left:140%}}
.btn-outline{background:transparent; color:var(--ink); border-color:var(--ink)}
.btn-outline:hover{background:var(--ink); color:var(--cream)}
.btn-lg{padding:1.05rem 1.9rem; font-size:1.05rem}
.btn-ghost{background:transparent; color:var(--ink); padding:.6rem .8rem}
.btn-ghost:hover{color:var(--gold-dark)}

/* ---------- Header ---------- */
.site-header{position:sticky; top:0; z-index:50; background:rgba(242,239,229,.85);
  backdrop-filter:saturate(140%) blur(10px); border-bottom:1px solid var(--line)}
.site-header .wrap{display:flex; align-items:center; justify-content:space-between; height:68px}
.nav{display:flex; align-items:center; gap:1.6rem}
.nav a.navlink{font-weight:600; font-size:.96rem; color:var(--charcoal); transition:color .15s}
.nav a.navlink:hover, .nav a.navlink.active{color:var(--ink)}
.nav a.navlink.active{position:relative}
.nav a.navlink.active::after{content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold)}
.header-cta{display:flex; align-items:center; gap:.8rem}
.menu-btn{display:none; background:none; border:0; cursor:pointer; padding:8px; border-radius:10px}
.menu-btn span{display:block; width:22px; height:2px; background:var(--ink); margin:4px 0; border-radius:2px; transition:.2s}

/* mobile menu */
.mobile-menu{position:fixed; inset:68px 0 auto 0; background:var(--cream); border-bottom:1px solid var(--line);
  transform:translateY(-120%); transition:transform .25s ease; z-index:49; padding:18px 24px 26px}
.mobile-menu.open{transform:translateY(0)}
.mobile-menu a{display:block; padding:.7rem 0; font-weight:600; font-size:1.1rem; border-bottom:1px solid var(--line-2)}
.mobile-menu .btn{margin-top:14px; width:100%}

/* ---------- Hero ---------- */
.hero{padding:60px 0 64px; background:
  radial-gradient(120% 80% at 80% -10%, var(--cream-2) 0%, transparent 60%), var(--cream)}
.hero-copy{display:flex; flex-direction:column; justify-content:center; gap:22px}
.hero-title{font-size:clamp(2.5rem,5.4vw,4.4rem); font-weight:900; max-width:none;
  text-wrap:balance; line-height:1.03; letter-spacing:-.015em; margin:0}
.hero .cities{color:var(--gold-dark); display:block}
.hero-city{display:block; min-height:1.08em}
@media (max-width:760px){ .hero-city{min-height:2.2em} }
.hero-sub{margin:14px 0 6px; max-width:40ch; font-size:1.2rem; color:var(--muted)}
.hero-points{list-style:none; margin:2px 0 0; padding:0; display:grid; gap:13px}
.hero-points li{position:relative; padding-left:36px; font-size:1.04rem; color:var(--ink)}
.hero-points li strong{font-weight:800}
.hero-points li::before{content:""; position:absolute; left:0; top:1px; width:23px; height:23px;
  border-radius:50%; background:var(--gold-sheen); box-shadow:inset 0 0 0 1px rgba(255,255,255,.35)}
.hero-points li::after{content:""; position:absolute; left:7px; top:7px; width:9px; height:5px;
  border-left:2.4px solid var(--ink); border-bottom:2.4px solid var(--ink); transform:rotate(-45deg)}
.hero-actions{margin-top:.4rem; display:flex; gap:.8rem; flex-wrap:wrap}
.hero-grid{display:grid; grid-template-columns:1.05fr 1fr; gap:48px; align-items:center}

/* ---------- Nearby map window ---------- */
.nearby{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md); overflow:hidden}
.nearby-head{display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:14px 18px; border-bottom:1px solid var(--line); background:var(--cream-3)}
.nearby-head .dot{width:9px; height:9px; border-radius:50%; background:var(--gold)}
.nearby-title{font-weight:700; font-size:.95rem; display:flex; align-items:center; gap:8px}

/* location search field (geocodes via maps API; recenters map) */
.loc-search{display:flex; align-items:center; gap:6px; background:var(--white); border:1px solid var(--line);
  border-radius:999px; padding:4px 5px 4px 11px; box-shadow:var(--shadow-sm); min-width:0; flex:0 1 224px;
  transition:border-color .15s, box-shadow .15s}
.loc-search:focus-within{border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,162,39,.16)}
.loc-ic{display:flex; color:var(--gold-dark); flex:0 0 auto}
.loc-ic svg{width:14px; height:14px}
.loc-input{flex:1; min-width:0; width:100%; border:0; outline:0; background:none; font:inherit;
  font-size:.82rem; color:var(--ink)}
.loc-input::placeholder{color:var(--muted)}
.loc-current{flex:0 0 auto; width:27px; height:27px; border-radius:50%; border:0; cursor:pointer;
  background:var(--cream-3); color:var(--ink); display:flex; align-items:center; justify-content:center;
  transition:background .15s, color .15s}
.loc-current:hover{background:var(--gold-light); color:var(--gold-dark)}
.loc-current.is-busy{animation:loc-spin .8s linear infinite}
.loc-current svg{width:14px; height:14px}
@keyframes loc-spin{to{transform:rotate(360deg)}}

.map-canvas{position:relative; width:100%; aspect-ratio:16/11; min-height:300px; overflow:hidden; background:#EAE7DC}
.map-canvas .maplibregl-map{position:absolute; inset:0}
.map-canvas .maplibregl-canvas{filter:sepia(.16) saturate(1.06) brightness(1.02)}
.map-canvas .maplibregl-ctrl-attrib{font-size:10px; background:rgba(251,250,244,.7)}
.map-canvas .maplibregl-ctrl-bottom-left{opacity:.7}
.map-canvas .maplibregl-ctrl-group{box-shadow:var(--shadow-sm)}

/* fog gate — appears after a few seconds of exploring the demo map */
.map-fog{position:absolute; inset:0; z-index:20; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:22px; cursor:pointer; opacity:0; visibility:hidden;
  background:rgba(251,250,244,.34); backdrop-filter:blur(7px); -webkit-backdrop-filter:blur(7px);
  transition:opacity .6s ease, visibility .6s ease}
.map-fog.open{opacity:1; visibility:visible}
.map-fog-card{background:rgba(20,20,20,.84); color:var(--cream); border-radius:16px; padding:20px 22px;
  max-width:280px; box-shadow:0 12px 32px rgba(0,0,0,.32)}
.map-fog-title{font-weight:800; font-size:1.04rem; line-height:1.28; margin-bottom:14px}

/* discount pin pills (MapLibre markers position the element; no self-transform) */
.pin-marker{display:flex; flex-direction:column; align-items:center; cursor:pointer;
  text-decoration:none; will-change:transform; border:0; background:none; padding:0; font:inherit}
.pin-marker:hover{z-index:5}
.pin-marker.is-selected{z-index:6}
.pin-marker.is-selected .pin-pill{box-shadow:0 4px 14px rgba(20,20,20,.4), 0 0 0 2px var(--gold)}
.pin-pill{display:flex; align-items:center; gap:5px; background:var(--ink); color:var(--white);
  border-radius:999px; padding:5px 9px 5px 6px; font-weight:700; font-size:.8rem; line-height:1;
  box-shadow:0 3px 8px rgba(20,20,20,.28); white-space:nowrap; transition:transform .15s}
.pin-marker:hover .pin-pill{transform:translateY(-2px)}
.pin-pill .ic{width:18px; height:18px; border-radius:50%; background:var(--white); color:var(--ink);
  display:flex; align-items:center; justify-content:center; flex:0 0 18px}
.pin-pill .ic svg{width:11px; height:11px}
.pin-pct{font-weight:800}
.pin-v{font-family:var(--serif); font-weight:900; font-size:.78rem; display:inline-flex; align-items:center; color:var(--cream)}
.pin-v .s{color:var(--gold); font-size:.7em; margin-left:1px; transform:translateY(-.25em)}
.pin-bonus{background:var(--gold-sheen); color:var(--ink); font-weight:800; font-size:.72rem;
  padding:3px 7px; border-radius:999px; margin-left:2px}
.pin-pill--gold{background:var(--gold-sheen); color:var(--ink); box-shadow:0 4px 12px rgba(153,133,51,.4), inset 0 0 0 1px rgba(255,255,255,.35)}
.pin-pill--gold .ic{background:var(--ink); color:var(--gold-light)}
.pin-pill--gold .pin-v{color:var(--ink)} .pin-pill--gold .pin-v .s{color:var(--gold-dark)}
.pin-stem{width:2px; height:9px; background:var(--ink); opacity:.5}
.pin-pill--gold + .pin-stem{background:var(--gold-dark)}

/* featured bottom card */
.map-featured{display:flex; align-items:center; gap:12px; padding:16px; border-top:1px solid var(--line); background:var(--cream-3)}
.map-featured .mf-mark{width:42px; height:42px; border-radius:11px; flex:0 0 42px;
  background:linear-gradient(135deg,var(--cream-2),var(--gold-light)); display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-weight:900; color:var(--gold-dark)}
.map-featured .mf-body{min-width:0; flex:1; display:flex; flex-direction:column; gap:4px}
.map-featured .mf-name{font-weight:700; font-size:.92rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.map-featured .mf-meta{font-size:.76rem; color:var(--muted); display:flex; gap:7px; align-items:center;
  flex-wrap:nowrap; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.map-featured .mf-meta .rating{color:var(--gold-dark); font-weight:700}
.map-featured .mf-meta .sep{opacity:.45}
.map-featured .mf-disc{flex:0 0 auto; position:relative; overflow:hidden; display:flex; align-items:center; gap:5px;
  background:linear-gradient(135deg,#22a85a,#15833f); color:#fff;
  font-weight:700; font-size:.78rem; padding:9px 14px; border-radius:999px; border:0; cursor:pointer;
  font-family:inherit; transition:transform .12s, box-shadow .12s, filter .12s;
  box-shadow:0 4px 12px rgba(21,131,63,.34), inset 0 1px 0 rgba(255,255,255,.38)}
.map-featured .mf-disc:hover{filter:brightness(1.06); transform:translateY(-1px); box-shadow:0 6px 16px rgba(21,131,63,.42), inset 0 1px 0 rgba(255,255,255,.45)}
.map-featured .mf-disc:active{transform:translateY(0)}
.map-featured .mf-disc > *{position:relative; z-index:2}
.map-featured .mf-disc::after{content:""; position:absolute; top:0; left:-65%; width:42%; height:100%; z-index:1;
  pointer-events:none; background:linear-gradient(100deg,transparent,rgba(255,255,255,.55),transparent);
  transform:skewX(-18deg); animation:mf-sheen 3.4s ease-in-out infinite}
@keyframes mf-sheen{0%{left:-65%} 26%{left:135%} 100%{left:135%}}
.map-featured .mf-disc .ic{width:16px;height:16px;border-radius:50%;background:#fff;color:#15833f;
  display:flex;align-items:center;justify-content:center}
.map-featured .mf-disc .ic svg{width:10px;height:10px}

/* ---------- Section scaffolding ---------- */
.section{padding:74px 0}
.section.alt{background:var(--cream-3)}
.section--dark{background:var(--charcoal); color:var(--cream)}
.section--dark h2, .section--dark h3, .section--dark h4{color:var(--cream)}
.section--dark .eyebrow{color:var(--gold-light)}
.section--dark .lead{color:rgba(242,239,229,.82)}
.section--dark .check-list li{color:var(--cream)}
.section--dark .btn-outline{color:var(--cream); border-color:var(--cream)}
.section--dark .btn-outline:hover{background:var(--cream); color:var(--ink)}
.section-head{max-width:60ch; margin:0 auto 44px; text-align:center}
.section-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem)}
.section-head p{margin-top:.8rem; color:var(--muted); font-size:1.06rem}

/* ---------- Rotating steps (home) ---------- */
.steps-rotator{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:980px; margin:0 auto}
.rstep{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px;
  text-align:center; transition:transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .5s; transform:scale(.94); opacity:.7}
.rstep.active{transform:scale(1.06); opacity:1; box-shadow:var(--shadow-md); border-color:var(--gold-light); z-index:2}
.rstep .num{width:42px; height:42px; border-radius:50%; background:var(--gold-sheen); color:var(--ink);
  font-family:var(--serif); font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 16px}
.rstep h3{font-size:1.22rem}
.rstep .sub{margin-top:.45rem; color:var(--muted); font-size:.95rem}

/* ---------- Steps (icons / how it works) ---------- */
.howto{display:grid; grid-template-columns:repeat(3,1fr); gap:26px}
.howcard{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:26px; text-align:center}
.howcard img{width:100%; max-width:200px; margin:0 auto 18px; border-radius:12px}
.howcard h3{font-size:1.15rem} .howcard p{margin-top:.5rem; color:var(--muted); font-size:.95rem}

/* ---------- Serving band ---------- */
.serving{position:relative; color:var(--cream); text-align:center; padding:90px 0; overflow:hidden}
.serving img.bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0}
.serving .overlay{position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,20,20,.35),rgba(20,20,20,.78)); z-index:1}
.serving .wrap{position:relative; z-index:2}
.serving h2{font-size:clamp(2rem,4vw,3rem); color:var(--cream); max-width:18ch; margin:0 auto}
.serving .btn{margin-top:1.8rem}

/* ---------- Security ---------- */
.security-grid{display:grid; grid-template-columns:1fr 1fr; gap:46px; align-items:center}
.security-media{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md)}
.security-list{margin-top:22px; display:grid; gap:14px}
.security-item{display:flex; gap:12px; align-items:flex-start}
.security-item .ic{flex:0 0 34px; height:34px; border-radius:9px; background:var(--cream-2);
  display:flex; align-items:center; justify-content:center; color:var(--gold-dark); font-weight:800}
.security-item h4{font-family:var(--sans); font-weight:700; font-size:1rem; margin:0}
.security-item p{color:var(--muted); font-size:.92rem; margin-top:2px}
.check-list{list-style:none; margin:20px 0 0; padding:0; display:grid; gap:14px}
.check-list li{position:relative; padding-left:38px; font-size:1.02rem; line-height:1.45; color:var(--ink)}
.check-list li strong{font-weight:800}
.check-list li::before{content:""; position:absolute; left:0; top:1px; width:25px; height:25px;
  border-radius:50%; background:var(--gold-sheen); box-shadow:inset 0 0 0 1px rgba(255,255,255,.35)}
.check-list li::after{content:""; position:absolute; left:8px; top:8px; width:10px; height:5px;
  border-left:2.4px solid var(--ink); border-bottom:2.4px solid var(--ink); transform:rotate(-45deg)}

/* ---------- Reviews carousel ---------- */
.reviews{position:relative}
.reviews-track{display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding:6px 2px 22px; scrollbar-width:none}
.reviews-track::-webkit-scrollbar{display:none}
.review-card{flex:0 0 360px; max-width:88vw; scroll-snap-align:center; background:var(--white);
  border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px 28px; box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column; justify-content:space-between}
.review-card .stars{color:var(--gold); letter-spacing:2px; margin-bottom:14px}
.review-card .quote{font-size:1.08rem; line-height:1.55}
.review-card .who{margin-top:20px; display:flex; align-items:center; gap:12px}
.review-card .who-meta{min-width:0; display:flex; flex-direction:column; gap:3px}
.review-card .avatar{width:42px; height:42px; flex:0 0 42px; border-radius:50%; background:var(--gold-sheen); color:var(--ink);
  font-family:var(--serif); font-weight:800; display:flex; align-items:center; justify-content:center}
.review-card .avatar--army{background:#4B5320; color:#fff}
.review-card .avatar--navy{background:#002D62; color:#fff}
.review-card .avatar--marines{background:#A6192E; color:#fff}
.review-card .avatar--airforce{background:#00308F; color:#fff}
.review-card .who .name{font-weight:700; font-size:.95rem}
.review-card .affil{display:flex; align-items:center; gap:6px;
  color:var(--muted); font-size:.72rem; font-weight:600; line-height:1.2}
.review-card .affil-logo{width:18px; height:18px; flex:0 0 18px; object-fit:contain; opacity:.85}
.store-rating{display:inline-flex; align-items:center; gap:9px; margin-top:16px; padding:9px 16px;
  background:var(--white); border:1px solid var(--line); border-radius:999px; box-shadow:var(--shadow-sm);
  text-decoration:none; color:var(--ink); transition:box-shadow .15s, transform .15s}
.store-rating:hover{box-shadow:var(--shadow-md); transform:translateY(-1px)}
.store-rating-stars{color:var(--gold); letter-spacing:1px; font-size:1.02rem}
.store-rating-num{font-weight:800; font-size:1.05rem}
.store-rating-meta{color:var(--muted); font-size:.85rem; font-weight:600}
.carousel-nav{display:flex; gap:10px; justify-content:center; margin-top:8px}
.carousel-nav button{width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:var(--white);
  cursor:pointer; font-size:1.1rem; transition:.15s}
.carousel-nav button:hover{background:var(--ink); color:var(--cream); border-color:var(--ink)}

/* ---------- FAQ ---------- */
.faq{max-width:760px; margin:0 auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%; background:none; border:0; cursor:pointer; text-align:left; padding:20px 4px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family:var(--serif); font-weight:700; font-size:1.12rem; color:var(--ink)}
.faq-q .chev{flex:0 0 auto; transition:transform .25s; color:var(--gold-dark); font-size:1.3rem}
.faq-item.open .chev{transform:rotate(45deg)}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease}
.faq-a .inner{padding:0 4px 20px; color:var(--muted); font-size:1rem; line-height:1.6}
.faq-a .inner a{color:var(--gold-dark); font-weight:600; text-decoration:underline; text-underline-offset:2px}
.faq-a .inner a:hover{color:var(--ink)}
.faq-a ul{margin:.5rem 0 0; padding-left:1.1rem}

/* ---------- Stats (business, condensed) ---------- */
.stat-row{display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.stat{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:22px 18px; text-align:center}
.stat .num{font-family:var(--serif); font-weight:900; font-size:2rem; color:var(--gold-dark); line-height:1}
.stat .label{margin-top:8px; font-size:.86rem; color:var(--muted); line-height:1.4}

/* ---------- Business: 3 steps numbered ---------- */
.bsteps{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; counter-reset:s}
.bstep{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:24px;
  display:flex; align-items:center; gap:16px}
.bstep .n{width:40px; height:40px; flex:0 0 40px; border-radius:50%; background:var(--ink); color:var(--cream);
  font-family:var(--serif); font-weight:800; display:flex; align-items:center; justify-content:center}
.bstep p{font-size:1rem; margin:0}

/* ---------- Business value carousel ---------- */
.value-track{display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:18px; scrollbar-width:none}
.value-track::-webkit-scrollbar{display:none}
.value-card{flex:0 0 420px; max-width:90vw; scroll-snap-align:center; background:var(--charcoal); color:var(--cream);
  border-radius:var(--radius-lg); padding:34px 32px}
.value-card h3{color:var(--cream); font-size:1.4rem}
.value-card p{margin-top:.7rem; color:rgba(242,239,229,.8); font-size:1rem}
.value-card .tag{display:inline-block; background:var(--gold-sheen); color:var(--ink); font-weight:700;
  font-size:.74rem; padding:5px 12px; border-radius:999px; margin-bottom:16px}

/* ---------- Form ---------- */
.form-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md); padding:34px}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.field{display:flex; flex-direction:column; gap:6px; min-width:0}
.field.full{grid-column:1 / -1}
.field-pair{grid-column:1 / -1; display:grid; grid-template-columns:1fr 1fr; gap:16px}
.field label{font-size:.85rem; font-weight:600; color:var(--charcoal)}
.field input, .field select{width:100%; min-width:0; font-family:var(--sans); font-size:1rem; padding:.8rem .9rem; border:1px solid var(--line);
  border-radius:11px; background:var(--cream-3); color:var(--ink)}
.field input:focus, .field select:focus{outline:none; border-color:var(--gold); background:var(--white);
  box-shadow:0 0 0 3px rgba(202,179,78,.18)}
.form-fine{font-size:.78rem; color:var(--muted); margin-top:14px}

/* ---------- Modal ---------- */
.modal-backdrop{position:fixed; inset:0; background:rgba(20,20,20,.55); backdrop-filter:blur(3px);
  display:none; align-items:center; justify-content:center; z-index:100; padding:20px}
.modal-backdrop.open{display:flex}
.modal{background:var(--cream); border-radius:var(--radius-lg); max-width:440px; width:100%; padding:32px;
  box-shadow:var(--shadow-md); position:relative; text-align:center}
.modal h3{font-size:1.5rem} .modal p{margin-top:.6rem; color:var(--muted)}
.modal .stores{display:grid; gap:12px; margin-top:22px}
.modal .close{position:absolute; top:14px; right:16px; background:none; border:0; font-size:1.5rem; cursor:pointer; color:var(--muted)}
.store-badge{display:flex; align-items:center; justify-content:center; gap:10px; padding:.95rem 1rem;
  border-radius:14px; background:var(--ink); color:var(--cream); font-weight:700}
.store-badge:hover{background:#000}
.store-badge small{display:block; font-weight:500; font-size:.7rem; opacity:.75}
.store-badge .lbl{text-align:left; line-height:1.1}

/* ---------- Footer (condensed) ---------- */
.site-footer{background:var(--charcoal-2); color:var(--cream); padding:46px 0 30px}
.footer-top{display:flex; flex-wrap:wrap; gap:30px; justify-content:space-between; align-items:flex-start}
.footer-brand{flex:1 1 320px; max-width:560px}
.footer-brand p{margin-top:12px; color:rgba(242,239,229,.6); font-size:.88rem; max-width:none}
.footer-cols{display:flex; gap:54px; flex-wrap:wrap}
.footer-col h5{font-family:var(--sans); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(242,239,229,.5); margin:0 0 12px}
.footer-col a{display:block; padding:5px 0; color:rgba(242,239,229,.85); font-size:.92rem}
.footer-col a:hover{color:var(--gold)}
.footer-stores{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}
.footer-bottom{margin-top:34px; padding-top:18px; border-top:1px solid rgba(242,239,229,.12);
  display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center;
  font-size:.8rem; color:rgba(242,239,229,.55)}

/* ---------- Page hero (about/business) ---------- */
.page-hero{padding:40px 0 40px; text-align:center}
.page-hero-img{display:block; width:100%; max-height:280px; object-fit:cover; object-position:center 38%;
  border-radius:var(--radius-lg); margin:0 0 30px; box-shadow:var(--shadow-md)}
.page-hero h1{font-size:clamp(2.2rem,4.5vw,3.4rem); max-width:30ch; margin:0 auto}
.page-hero p{margin:1.1rem auto 0; max-width:60ch; color:var(--muted); font-size:1.12rem}

/* About two-column intro. Desktop: text + button left, image right.
   Mobile (<=920px) stacks as text -> image -> button. */
.about-hero{padding:50px 0 46px}
.about-grid{display:grid; grid-template-columns:1.05fr 1fr;
  grid-template-areas:"copy media" "cta media"; column-gap:48px; row-gap:24px; align-items:center}
.about-grid .hero-copy{grid-area:copy; display:flex; flex-direction:column; gap:18px}
.about-grid .about-hero-media{grid-area:media}
.about-grid .about-hero-cta{grid-area:cta; align-self:start}
.about-hero h1{font-size:clamp(2.1rem,4.2vw,3.2rem); font-weight:900; line-height:1.06; margin:0; max-width:none}
.about-hero .hero-sub{margin:0; max-width:48ch}
.about-hero-media img{display:block; width:100%; max-width:560px; margin:0 auto;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-md)}
@media (max-width:920px){
  .about-hero{padding:40px 0 38px}
  .about-grid{grid-template-columns:1fr; grid-template-areas:"copy" "media" "cta";
    row-gap:28px; justify-items:center; text-align:center}
  .about-grid .hero-copy{align-items:center}
  .about-hero .hero-sub{margin-left:auto; margin-right:auto}
}

/* ---------- Responsive ---------- */
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr; gap:34px}
  .security-grid{grid-template-columns:1fr; gap:30px}
  .stat-row{grid-template-columns:repeat(2,1fr)}
  .howto,.bsteps,.steps-rotator{grid-template-columns:1fr}
  .rstep{transform:scale(1); opacity:1}
  .rstep.active{transform:scale(1.02)}
}
@media (max-width:760px){
  .nav .navlink{display:none}
  .menu-btn{display:block}
  .form-grid{grid-template-columns:1fr}
  .footer-cols{gap:34px}
  .hero{padding:40px 0 48px}
  .hero-copy{gap:16px}
  .hero-title{font-size:clamp(2.1rem,8.5vw,2.9rem)}
  .hero-sub{margin:6px 0 2px; font-size:1.08rem}
  .hero-points{gap:11px}
  .hero-points li{font-size:1rem}
  .nearby-head{flex-wrap:wrap}
  .loc-search{flex:1 1 100%}
}
/* Featured card stacks the claim button on very small screens so the
   business name + meta get a full line each */
@media (max-width:560px){
  .map-featured{flex-wrap:wrap; row-gap:12px}
  .map-featured .mf-body{flex:1 1 auto; min-width:0}
  .map-featured .mf-disc{flex:1 1 100%; justify-content:center; padding:11px}
}
