/* =============================================================
   CHUCK'S GUNS & AMMO — Design System
   A refined "luxury-tactical" aesthetic for Jupiter, FL.
   Deep gunmetal + brass, editorial serif + technical sans.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --ink:        #0a0b0d;   /* near-black background            */
  --ink-2:      #101216;   /* elevated background              */
  --surface:    #16191f;   /* cards / panels                   */
  --surface-2:  #1d212a;   /* raised surface / hover           */
  --line:       #2a2f39;   /* hairline borders                 */
  --line-soft:  #21252e;

  --steel:      #6b7280;   /* muted steel text                 */
  --smoke:      #a7adb8;   /* secondary text                   */
  --chalk:      #eef0f3;   /* primary text on dark             */
  --white:      #ffffff;

  /* Brass / gold accent — the "high-end town" signal */
  --brass:      #c8a24b;
  --brass-2:    #e2c479;
  --brass-deep: #8a6d28;
  --brass-glow: rgba(200,162,75,.18);

  /* Utility */
  --danger:     #c1440e;
  --ok:         #4a7c59;

  /* Typography */
  --font-display: "Oswald", "Bebas Neue", Impact, sans-serif;
  --font-serif:   "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);

  /* Effects */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,.65);
  --shadow-soft: 0 14px 40px -20px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1280px;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--chalk);
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: .003em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg,video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input,textarea,select { font: inherit; }
::selection { background: var(--brass); color: var(--ink); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 20px; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--steel); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem,6vw,5rem); }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: .01em; text-transform: uppercase; }
.serif { font-family: var(--font-serif); text-transform: none; letter-spacing: 0; font-weight: 500; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
}
.eyebrow--center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: .005em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1;
}
.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.5;
  color: var(--smoke);
  font-weight: 400;
}
.muted { color: var(--smoke); }
.gold { color: var(--brass); }
.italic-serif { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; }

/* Underline flourish under section headings */
.rule {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-deep));
  margin-top: 1.4rem;
}
.rule--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  font-size: .86rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn--primary {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  color: var(--ink);
  box-shadow: 0 10px 30px -12px var(--brass-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(200,162,75,.5); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--chalk);
  background: rgba(255,255,255,.02);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); background: var(--brass-glow); }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: .5rem;
}
.site-header.scrolled {
  background: rgba(10,11,13,.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--white);
}
.brand__sub { display: block; font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--brass); margin-top: 3px; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .82rem; font-weight: 400;
  color: var(--smoke);
  padding: .55rem .95rem;
  border-radius: var(--radius);
  transition: color .25s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .35rem;
  height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--chalk); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__cta { margin-left: .75rem; }
.nav__cta.desktop { display: flex; align-items: center; gap: 1.25rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); letter-spacing: .05em; font-size: .95rem; color: var(--chalk);
  white-space: nowrap;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--brass); }

/* Compact call button — top-right on mobile (nav links live in the bottom bar) */
.nav__call {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--brass-deep); border-radius: var(--radius);
  color: var(--brass);
  align-items: center; justify-content: center;
  background: var(--brass-glow);
  transition: all .25s var(--ease);
}
.nav__call svg { width: 19px; height: 19px; }
.nav__call:active { transform: scale(.94); }

/* ---------- Bottom mobile tab bar ---------- */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(13,14,17,.92);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid var(--line);
  padding: .45rem .4rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 32px -18px rgba(0,0,0,.8);
}
.bottom-nav__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .28rem;
  padding: .45rem .2rem .35rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel);
  position: relative;
  transition: color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav__item svg { width: 22px; height: 22px; transition: transform .25s var(--ease); }
.bottom-nav__item:active svg { transform: scale(.88); }
.bottom-nav__item.active { color: var(--brass-2); }
.bottom-nav__item.active::before {
  content: ""; position: absolute; top: -0.46rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brass), var(--brass-2));
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg::after { /* readable text column left, scenery breathes right */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(200,162,75,.08), transparent 55%),
    linear-gradient(100deg, rgba(10,11,13,.93) 0%, rgba(10,11,13,.78) 34%, rgba(10,11,13,.34) 68%, rgba(10,11,13,.5) 100%),
    linear-gradient(180deg, rgba(10,11,13,.6) 0%, rgba(10,11,13,.12) 38%, rgba(10,11,13,.97) 100%);
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  filter: grayscale(.12) contrast(1.06) brightness(.82) saturate(1.05);
}
.hero__grid { /* fallback texture if no image */
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 80%);
}
.hero__inner { max-width: 780px; }
.hero .display { margin-top: 1.4rem; color: var(--white); }
.hero .display em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--brass-2); text-transform: none; }
.hero__sub { margin-top: 1.6rem; max-width: 560px; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--steel);
}
.hero__scroll span { width: 1px; height: 42px; background: linear-gradient(var(--brass), transparent); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3; transform: scaleY(.6);} 50%{opacity:1; transform: scaleY(1);} }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--line-soft); background: var(--ink-2); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.6rem clamp(1rem,2.5vw,2rem);
  border-left: 1px solid var(--line-soft);
}
.trust:first-child { border-left: none; }
.trust svg { width: 30px; height: 30px; color: var(--brass); flex: none; }
.trust__k { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em; color: var(--chalk); text-transform: uppercase; line-height: 1.1; }
.trust__v { font-size: .78rem; color: var(--steel); }

/* ---------- Section header ---------- */
.sec-head { max-width: 640px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .h-section { margin-top: 1rem; }
.sec-head .lead { margin-top: 1.2rem; }

/* ---------- Services / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 2.4rem;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card::before { /* top brass sheen */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { opacity: .8; }
.card__icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 20%, var(--surface-2), var(--ink-2));
  border: 1px solid var(--line);
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card__num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-display); font-size: .8rem; letter-spacing: .2em; color: var(--line); }
.card h3 { font-size: 1.35rem; letter-spacing: .02em; }
.card p { margin-top: .8rem; color: var(--smoke); font-size: .95rem; }
.card__link { margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--brass); }
.card__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Feature card (image + content split) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--surface);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.05); }
.feature__badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(10,11,13,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--brass); color: var(--brass-2);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem;
  padding: .5rem .9rem; border-radius: var(--radius);
}
.feature__body .rule { margin-bottom: 1.2rem; }
.feature ul.checks { margin-top: 1.6rem; }
.checks li { display: flex; gap: .9rem; align-items: flex-start; padding: .5rem 0; color: var(--smoke); }
.checks li svg { width: 20px; height: 20px; color: var(--brass); flex: none; margin-top: 2px; }
.checks li strong { color: var(--chalk); font-weight: 600; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink-2); padding: 2.4rem 1.5rem; text-align: center; }
.stat__n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--brass); line-height: 1; }
.stat__l { margin-top: .6rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); }

/* ---------- Split CTA / band ---------- */
.band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 140% at 85% 0%, rgba(200,162,75,.10), transparent 55%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-block: 1px solid var(--line-soft);
}
.band__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }

/* ---------- CCW / process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--line); line-height: 1; }
.step h4 { margin-top: .6rem; font-size: 1.1rem; }
.step p { margin-top: .6rem; font-size: .9rem; color: var(--smoke); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.25rem; }
.quote { padding: 2.2rem 2rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); position: relative; }
.quote__stars { display: flex; gap: 3px; color: var(--brass); margin-bottom: 1.1rem; }
.quote__stars svg { width: 17px; height: 17px; }
.quote p { font-family: var(--font-serif); font-size: 1.22rem; line-height: 1.5; color: var(--chalk); }
.quote__by { margin-top: 1.3rem; display: flex; align-items: center; gap: .8rem; }
.quote__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--brass), var(--brass-deep)); display: grid; place-items: center; font-family: var(--font-display); color: var(--ink); font-size: 1rem; }
.quote__name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.quote__meta { font-size: .74rem; color: var(--steel); }

/* ---------- Brand marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); background: var(--ink-2); padding-block: 1.6rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 4rem; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee__item { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); white-space: nowrap; transition: color .3s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Contact / info ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: flex; gap: 1.1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-soft); }
.info-item svg { width: 22px; height: 22px; color: var(--brass); flex: none; margin-top: 3px; }
.info-item__k { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--steel); }
.info-item__v { margin-top: .25rem; font-size: 1.05rem; color: var(--chalk); }
.info-item__v a:hover { color: var(--brass); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .7rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.hours-table td:first-child { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--smoke); }
.hours-table td:last-child { text-align: right; color: var(--chalk); }
.hours-table tr.today td { color: var(--brass); }
.hours-table tr.today td:first-child { color: var(--brass); }
.hours-table .closed { color: var(--steel); }

/* Form */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--smoke); }
.field input, .field textarea, .field select {
  background: var(--ink); border: 1px solid var(--line); color: var(--chalk);
  padding: .95rem 1.1rem; border-radius: var(--radius); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-glow);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); filter: grayscale(.4) contrast(1.05); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding-top: clamp(140px, 20vh, 200px); padding-bottom: clamp(3rem,6vw,5rem);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(80% 120% at 80% 0%, rgba(200,162,75,.08), transparent 55%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}
.page-hero .display { font-size: clamp(2.4rem,6vw,4.6rem); color: var(--white); margin-top: 1rem; }
.page-hero .lead { margin-top: 1.2rem; max-width: 620px; }
.breadcrumb { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--steel); }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span { color: var(--brass); }

/* Prose */
.prose { max-width: 720px; }
.prose p { color: var(--smoke); margin-top: 1.2rem; font-size: 1.05rem; }
.prose h3 { margin-top: 2.4rem; font-size: 1.5rem; color: var(--chalk); }
.prose h3:first-child { margin-top: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding-top: clamp(3.5rem,6vw,5rem); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__blurb { color: var(--smoke); font-size: .95rem; max-width: 320px; }
.footer__col h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--chalk); margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a { color: var(--smoke); font-size: .92rem; transition: color .25s; }
.footer__col a:hover { color: var(--brass); }
.footer__ffl { margin-top: 1.6rem; font-size: .78rem; color: var(--steel); font-family: var(--font-display); letter-spacing: .08em; }
.footer__socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; color: var(--smoke); transition: all .25s; }
.footer__socials a:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: .8rem; color: var(--steel); }
.footer__bottom a:hover { color: var(--brass); }

/* Disclaimer note */
.disclaimer { background: var(--ink); border: 1px solid var(--line-soft); border-left: 3px solid var(--brass); border-radius: var(--radius); padding: 1.2rem 1.4rem; font-size: .86rem; color: var(--smoke); }
.disclaimer strong { color: var(--chalk); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track, .hero__scroll span { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* Nav collapses into the bottom tab bar */
  .nav__links, .nav__cta.desktop { display: none; }
  .nav__call { display: inline-flex; }
  .bottom-nav { display: grid; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  .hero { min-height: calc(100svh - 78px); }
  .hero__scroll { display: none; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trustbar__grid { grid-template-columns: repeat(2,1fr); }
  .trust:nth-child(3) { border-left: none; }
  .trust { border-top: 1px solid var(--line-soft); }
  .trust:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .band__inner { grid-template-columns: 1fr; gap: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(-n+2){ border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 560px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trust { border-left: none; border-top: 1px solid var(--line-soft); }
  .trust:first-child { border-top: none; }
  .stats { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions .btn { flex: 1; }
}
