/* ============================================================
   Components — Snake River Hydraulics
   ============================================================ */

/* ---------- Icons ---------- */
.icon { width: 1.2em; height: 1.2em; flex: none; stroke-width: 1.9; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--steel-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  line-height: 1; padding: .95rem 1.5rem; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn--accent { --btn-bg: var(--safety-500); --btn-fg: var(--accent-ink); box-shadow: var(--shadow-accent); }
.btn--accent:hover { --btn-bg: var(--safety-400); box-shadow: 0 16px 30px -8px rgba(221,154,0,.55); }
.btn--primary { --btn-bg: var(--steel-700); }
.btn--primary:hover { --btn-bg: var(--steel-600); box-shadow: var(--shadow); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.08); border-color: #fff; }
.btn--dark { --btn-bg: var(--ink-800); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: var(--ink-700); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--brand); border-color: var(--line-strong); }
.btn--outline:hover { --btn-bg: var(--steel-50); --btn-fg: var(--brand-deep); border-color: var(--steel-300); }
.btn--sm { padding: .62rem 1.05rem; font-size: .88rem; }
.btn--lg { padding: 1.08rem 1.9rem; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink-900); color: var(--on-dark-muted);
  font-size: var(--fs-xs); border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--topbar-h); }
.topbar a { color: var(--on-dark-muted); }
.topbar a:hover { color: #fff; }
.topbar .tb-group { display: flex; align-items: center; gap: 1.35rem; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar .icon { width: 14px; height: 14px; color: var(--safety-500); }
.topbar .tb-phone { color: #fff; font-weight: 600; }
@media (max-width: 760px) { .topbar { display: none; } }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink-900);
  border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow var(--dur) var(--ease); }
.site-header.is-scrolled { box-shadow: 0 8px 24px -10px rgba(0,0,0,.65); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.logo:hover { color: #fff; }
.logo img { height: 52px; width: auto; display: block; }
.footer-brand .logo img { height: 66px; }
.logo svg { width: 38px; height: 38px; flex: none; }
.logo-word { display: grid; line-height: 1; font-family: var(--font-head); }
.logo-word .l1 { font-size: .72rem; font-weight: 600; letter-spacing: .18em; color: var(--steel-300); text-transform: uppercase; }
.logo-word .l2 { font-size: 1.12rem; font-weight: 800; letter-spacing: .01em; color: #fff; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-menu { display: flex; align-items: center; gap: .3rem; }
.nav-menu > li > a {
  display: inline-block; padding: .55rem .75rem; border-radius: var(--r-sm);
  color: var(--on-dark); font-weight: 500; font-size: .96rem;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-menu > li > a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-menu > li > a[aria-current="page"] { color: var(--safety-400); }
.nav-menu > li > a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--safety-500); border-radius: 2px; margin-top: 3px;
}
.header-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 21px; } .nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-900); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: var(--space-3) var(--gutter) var(--space-5);
    transform: translateY(-130%); visibility: hidden;
    transition: transform var(--dur) var(--ease), visibility 0s linear var(--dur);
    box-shadow: var(--shadow-lg); max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .nav-menu > li > a { padding: .95rem .5rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .nav-menu .btn { margin-top: var(--space-4); }
  .header-cta .btn--call-lg { display: none; }
}
@media (min-width: 901px) { .nav-menu .nav-cta-mobile { display: none; } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; color: var(--on-dark); overflow: hidden; isolation: isolate;
  display: flex; align-items: center; min-height: clamp(500px, 74vh, 700px);
  background:
    radial-gradient(120% 100% at 90% 15%, rgba(43,131,198,.24), transparent 56%),
    radial-gradient(80% 80% at 96% 92%, rgba(255,198,26,.08), transparent 55%),
    linear-gradient(155deg, #0a0f16 0%, #0d1826 50%, #0f2440 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid;
  grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(3rem, 7vh, 5rem); }
.hero-content { max-width: 600px; }
.hero-media .media-frame { box-shadow: var(--shadow-lg); border-color: rgba(255,255,255,.14); }
.hero h1 { font-size: var(--fs-hero); color: #fff; letter-spacing: -0.03em; }
.hero h1 .hl { color: var(--safety-400); }
.hero .lead { color: var(--on-dark-muted); max-width: 34em; margin-top: var(--space-4); }
.hero .btn-row { margin-top: var(--space-6); }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: var(--space-6);
  padding-top: var(--space-5); border-top: 1px solid var(--on-dark-line); }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--on-dark); font-weight: 500; }
.hero-trust .icon { color: var(--safety-400); width: 18px; height: 18px; }
.hero-eyebrow { color: var(--safety-400); }
.hero-scroll { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: inline-grid; place-items: center; gap: 4px; color: var(--on-dark-muted); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; }
.hero-scroll .chev { width: 22px; height: 22px; animation: bob 1.8s var(--ease-out) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.4rem); }
  .hero-content { max-width: 100%; }
}
@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero-scroll { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: .85rem; padding: clamp(1.1rem,2.4vw,1.7rem) clamp(1rem,2vw,1.6rem); }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item .icon { width: 30px; height: 30px; color: var(--brand-bright); flex: none; }
.trust-item b { font-family: var(--font-head); font-weight: 700; color: var(--heading); font-size: 1.02rem; display: block; line-height: 1.15; }
.trust-item span { font-size: var(--fs-sm); color: var(--muted); }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; } .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- Cards / grids ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Service cards */
.svc-card { position: relative; padding: clamp(1.5rem, 2.6vw, 2rem); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--steel-300); }
.svc-rule { display: block; width: 40px; height: 3px; border-radius: 2px; background: var(--safety-500);
  margin-bottom: var(--space-4); transition: width var(--dur) var(--ease-out); }
.svc-card:hover .svc-rule { width: 64px; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { color: var(--muted); font-size: var(--fs-body); }
.svc-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--space-4);
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--steel-600); }
.svc-link .icon { transition: transform var(--dur-fast) var(--ease); }
.svc-card:hover .svc-link .icon { transform: translateX(3px); }

/* ---------- Media frame (make small photos look intentional) ---------- */
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink-800);
  border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tag::after { content: attr(data-tag); position: absolute; left: 14px; bottom: 14px;
  background: rgba(8,11,16,.82); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .04em; padding: .4rem .7rem; border-radius: var(--r-sm);
  border-left: 3px solid var(--safety-500); backdrop-filter: blur(3px); }
.media-frame--ratio { aspect-ratio: 4 / 3; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame--wide { aspect-ratio: 16 / 10; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
.split--media-first .split-media { order: -1; }
.split--reverse .split-media { order: 2; }
.split-content h2 { margin-bottom: var(--space-4); }
.check-list { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: .7rem; align-items: start; }
.check-list .icon { width: 24px; height: 24px; color: var(--brand-bright); margin-top: 1px; }
.check-list b { color: var(--heading); font-family: var(--font-head); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; }
  .split--media-first .split-media { order: 0; } }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.5rem); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: var(--brand-bright); line-height: 1; letter-spacing: -0.02em; }
.section--ink .stat .num { color: var(--safety-400); }
.stat .lbl { font-size: var(--fs-sm); color: var(--muted); margin-top: .4rem; }
.section--ink .stat .lbl { color: var(--on-dark-muted); }
@media (max-width: 620px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; } }

/* ---------- Brand strip ---------- */
.brand-strip { display: flex; flex-wrap: wrap; gap: .6rem .7rem; }
.brand-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 700;
  font-size: .92rem; color: var(--ink-600); letter-spacing: .02em; }
.brand-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--safety-500); }
.section--ink .brand-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #fff; }

/* ---------- Product cards ---------- */
.prod-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease); }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-media { aspect-ratio: 4 / 3; background: var(--mist-2); overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-body { padding: clamp(1.1rem,2vw,1.5rem); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.prod-body h3 { font-size: 1.18rem; }
.prod-body p { color: var(--muted); font-size: var(--fs-sm); }
.prod-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; padding-top: .7rem; }
.prod-tags span { font-size: var(--fs-xs); color: var(--brand); background: var(--steel-50); border: 1px solid var(--steel-100);
  padding: .2rem .55rem; border-radius: var(--r-sm); font-weight: 500; }

/* ---------- Location cards ---------- */
.loc-card { position: relative; padding: clamp(1.5rem,2.6vw,2rem); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.loc-card.is-primary { border-color: var(--steel-300); box-shadow: var(--shadow); }
.loc-badge { position: absolute; top: -12px; left: clamp(1.5rem,2.6vw,2rem); background: var(--safety-500);
  color: var(--accent-ink); font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--r-pill); }
.loc-card h3 { font-size: 1.32rem; margin-bottom: .3rem; }
.loc-tag { font-size: var(--fs-sm); color: var(--steel-600); font-weight: 600; font-family: var(--font-head); }
.loc-rows { display: grid; gap: .7rem; margin: var(--space-4) 0; }
.loc-rows li { display: grid; grid-template-columns: 22px 1fr; gap: .65rem; align-items: start; font-size: var(--fs-sm); color: var(--body); }
.loc-rows .icon { width: 20px; height: 20px; color: var(--brand-bright); margin-top: 2px; }
.loc-rows a { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background:
  radial-gradient(90% 140% at 15% 0%, var(--steel-700), transparent 60%),
  linear-gradient(120deg, var(--ink-900), var(--steel-900) 70%); color: #fff; }
.cta-band .container { position: relative; z-index: 1; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem,3vw,3rem);
  flex-wrap: wrap; padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-inner h2 { color: #fff; max-width: 18ch; }
.cta-inner p { color: var(--on-dark); margin-top: .6rem; max-width: 44ch; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; border: 2px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta-band::before { content: ""; position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px; border: 2px solid rgba(255,198,26,.10); border-radius: 50%; }

/* ---------- Page hero (inner pages, lightweight) ---------- */
.page-hero { position: relative; overflow: hidden; background:
  radial-gradient(100% 130% at 85% 10%, rgba(43,131,198,.34), transparent 55%),
  linear-gradient(120deg, var(--ink-900), var(--steel-900)); color: var(--on-dark);
  padding-block: clamp(2.6rem, 6vw, 4.5rem); border-bottom: 3px solid var(--safety-500); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); max-width: 18ch; }
.page-hero .lead { color: var(--on-dark-muted); margin-top: var(--space-4); max-width: 60ch; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.crumbs a { color: var(--on-dark-muted); } .crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--on-dark-muted); opacity: .6; }
.crumbs [aria-current] { color: var(--safety-400); }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--space-4); }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--heading); }
.field label .req { color: var(--steel-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  background: var(--paper); color: var(--body); transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--steel-500); box-shadow: 0 0 0 3px rgba(43,131,198,.18); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form-note { font-size: var(--fs-xs); color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--on-dark-muted); padding-top: clamp(3rem,5vw,4.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(1.6rem,3vw,3rem); padding-bottom: var(--space-7); }
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--fs-sm); max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: var(--space-4); }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); color: #fff; }
.footer-social a:hover { background: var(--steel-700); }
.footer-col h2.footer-h { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--space-4); font-family: var(--font-head); }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col li { font-size: var(--fs-sm); color: var(--on-dark-muted); }
.footer-col ul a { display: inline-block; padding: 6px 0; } /* larger tap target */
.footer-col a:hover { color: #fff; }
.footer-contact .fc-item { display: grid; grid-template-columns: 20px 1fr; gap: .6rem; margin-bottom: var(--space-4); font-size: var(--fs-sm); }
.footer-contact .icon { width: 18px; height: 18px; color: var(--safety-500); margin-top: 2px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-block: var(--space-5); display: flex;
  flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; font-size: var(--fs-xs); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-bottom nav a { display: inline-block; padding: 6px 0; } /* larger tap target */
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12);
  box-shadow: 0 -8px 24px rgba(8,11,16,.25); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1rem;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; }
.callbar .cb-call { background: var(--safety-500); color: var(--accent-ink); }
.callbar .cb-quote { background: var(--ink-800); color: #fff; }
.callbar .icon { width: 20px; height: 20px; }
@media (max-width: 900px) { .callbar { display: grid; } body { padding-bottom: 60px; } }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.badge { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; color: var(--brand);
  background: var(--steel-50); border: 1px solid var(--steel-100); padding: .35rem .7rem; border-radius: var(--r-pill); }
.anchor { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- FAQ (native details, no JS) ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper);
  margin-bottom: var(--space-3); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.35rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--heading);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--steel-600);
  transition: transform var(--dur) var(--ease); line-height: 1; flex: none; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 1rem 1.35rem 1.3rem; color: var(--muted); }
.faq .faq-a a { font-weight: 600; }
