/* ============================================================
   Collection Brothers, elevated design system (v2, 2026-09-02)
   Brand-locked: Anton (display, UPPERCASE) + Hanken Grotesk (body).
   Signal Yellow #FDF100 on Charcoal #212C2B, Sky Blue #269AC5 accents.
   Yellow rule: yellow is a background for CTAs/highlights with charcoal
   text on top, never white-on-yellow, never yellow body text on white.
   ============================================================ */

:root {
  /* Brand core */
  --charcoal: #212c2b;
  --charcoal-900: #171f1e;   /* deeper ground */
  --charcoal-800: #1c2625;
  --charcoal-700: #2b3837;   /* raised dark surface */
  --yellow: #fdf100;
  --yellow-600: #e6d900;     /* hover */
  --blue: #269ac5;
  --blue-600: #1f83aa;       /* hover / deeper */
  --blue-050: #eaf6fb;       /* blue tint bg */
  --electric: #00b2ff;
  --cream: #fdfcd6;
  --offwhite: #f6f6f6;
  --white: #ffffff;
  --tomato: #f0523d;

  /* Text */
  --ink: #1c2322;
  --ink-soft: #47514f;
  --ink-mut: #6b7573;
  --on-dark: rgba(255,255,255,0.92);
  --on-dark-soft: rgba(255,255,255,0.68);
  --line: #e4e8ea;
  --line-dark: rgba(255,255,255,0.14);

  /* Type */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Hanken Grotesk", "Segoe UI", Arial, sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(3rem, 8.5vw, 6rem);
  --fs-h1:   clamp(2.4rem, 6vw, 4rem);
  --fs-h2:   clamp(1.9rem, 4.4vw, 3rem);
  --fs-h3:   clamp(1.35rem, 3vw, 1.9rem);
  --fs-h4:   clamp(1.05rem, 2.2vw, 1.25rem);
  --fs-lead: clamp(1.08rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-sm:   0.9rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 780px;
  --header-h: 84px;
  --header-h-scrolled: 68px;

  /* Radius + elevation */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(18,28,27,0.06), 0 2px 8px rgba(18,28,27,0.06);
  --shadow-2: 0 4px 12px rgba(18,28,27,0.08), 0 12px 32px rgba(18,28,27,0.10);
  --shadow-3: 0 10px 24px rgba(18,28,27,0.12), 0 24px 60px rgba(18,28,27,0.16);
  --shadow-yellow: 0 8px 22px rgba(253,241,0,0.35);

  /* Spacing (8pt) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6rem;
  --s-7: 8rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.22s;

  /* Back-compat aliases (existing inline styles across pages use these) */
  --space-1: var(--s-1);
  --space-2: var(--s-2);
  --space-3: var(--s-3);
  --space-4: var(--s-4);
  --space-5: var(--s-5);
  --space-6: var(--s-6);
  --radius: var(--r-md);
  --color-dark: var(--charcoal);
  --color-blue: var(--blue);
  --color-yellow: var(--yellow);
  --color-white: var(--white);
  --color-ink: var(--ink);
  --color-grey: var(--ink-mut);
  --color-line: var(--line);
  --color-cream: var(--cream);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--blue-600); }
strong { font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 var(--s-2);
  color: var(--charcoal);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.05; }
h4 { font-size: var(--fs-h4); line-height: 1.1; letter-spacing: 0.01em; }
p { margin: 0 0 var(--s-2); max-width: 68ch; }
ul { margin: 0 0 var(--s-2); padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

::selection { background: var(--yellow); color: var(--charcoal); }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--yellow); color: var(--charcoal);
  padding: 0.75rem 1.25rem; z-index: 1000; font-weight: 800; border-radius: var(--r-sm);
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); }
:focus-visible { outline: 3px solid var(--electric); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--s-3); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; }
.section--sm { padding: var(--s-4) 0; }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--darker { background: var(--charcoal-900); color: var(--on-dark); }
.section--blue {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-600) 100%);
  color: var(--white);
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark p, .section--darker p, .section--blue p { color: var(--on-dark); max-width: 62ch; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--darker h1, .section--darker h2, .section--darker h3, .section--darker h4,
.section--blue h1, .section--blue h2, .section--blue h3, .section--blue h4 { color: var(--white); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* Section eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-display); text-transform: uppercase;
  color: var(--charcoal); letter-spacing: 0.06em;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem); margin-bottom: var(--s-2);
}
.eyebrow::before { content: ""; width: 34px; height: 4px; background: var(--yellow); border-radius: 2px; }
.section--dark .eyebrow, .section--darker .eyebrow, .section--blue .eyebrow, .hero .eyebrow { color: var(--yellow); }
.section--blue .eyebrow::before { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--yellow);
  --btn-fg: var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  letter-spacing: 0.01em; line-height: 1;
  padding: 1em 1.6em; border-radius: var(--r-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; cursor: pointer; min-height: 48px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn .arr, .btn::after { transition: transform var(--dur) var(--ease); }
.btn-yellow { --btn-bg: var(--yellow); --btn-fg: var(--charcoal); box-shadow: var(--shadow-1); }
.btn-yellow:hover { background: var(--yellow-600); box-shadow: var(--shadow-yellow); }
.btn-black { --btn-bg: var(--charcoal); --btn-fg: var(--yellow); box-shadow: var(--shadow-1); }
.btn-black:hover { background: #000; box-shadow: var(--shadow-2); }
.btn-blue { --btn-bg: var(--blue); --btn-fg: var(--white); box-shadow: var(--shadow-1); }
.btn-blue:hover { background: var(--blue-600); box-shadow: var(--shadow-2); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-lg { font-size: 1.12rem; padding: 1.15em 2em; }
.btn-block { width: 100%; }
/* arrow nudge on hover for buttons whose label ends with an arrow glyph */
.btn:hover { }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--charcoal);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header::after { /* yellow hairline accent */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent 60%);
  opacity: 0.9;
}
.site-header.is-scrolled { box-shadow: var(--shadow-2); background: rgba(23,31,30,0.96); backdrop-filter: blur(8px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); min-height: var(--header-h); transition: min-height var(--dur) var(--ease); }
.site-header.is-scrolled .site-header__inner { min-height: var(--header-h-scrolled); }
.site-header__logo img { height: 54px; width: auto; transition: height var(--dur) var(--ease); }
.site-header.is-scrolled .site-header__logo img { height: 44px; }
.site-nav { display: flex; align-items: center; gap: var(--s-3); }
.site-nav__links { list-style: none; display: flex; gap: 1.15rem; margin: 0; padding: 0; font-weight: 600; font-size: 0.94rem; }
.site-nav__links li { margin: 0; }
.site-nav__links a { position: relative; color: var(--white); padding: 0.4em 0.1em; white-space: nowrap; }
.site-nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.site-nav__links a:hover, .site-nav__links a[aria-current="page"] { color: var(--yellow); }
.site-nav__links a:hover::after, .site-nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__call {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: var(--yellow); color: var(--charcoal); font-weight: 800;
  padding: 0.7em 1.15em; border-radius: var(--r-sm); white-space: nowrap;
  box-shadow: var(--shadow-1); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-nav__call:hover { color: var(--charcoal); background: var(--yellow-600); transform: translateY(-2px); }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--white); padding: 0.5em; cursor: pointer; }
.nav-toggle svg { width: 30px; height: 30px; }

@media (max-width: 1100px) {
  .site-nav__links { display: none; }
  .site-header.is-open .site-nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--charcoal-900); padding: var(--s-3); gap: var(--s-2);
    border-top: 1px solid var(--line-dark); box-shadow: var(--shadow-3);
  }
  .site-header.is-open .site-nav__links a { font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; order: 3; }
  .site-nav { gap: var(--s-2); }
  .site-nav__call { font-size: 0.85rem; padding: 0.6em 0.85em; }
  .site-header__logo img { height: 44px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3rem, 8vw, 6rem); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(23,31,30,0.92) 0%, rgba(23,31,30,0.72) 42%, rgba(23,31,30,0.35) 100%),
    linear-gradient(0deg, rgba(23,31,30,0.85) 0%, rgba(23,31,30,0.15) 45%);
}
.hero__content { position: relative; max-width: 760px; }
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--s-2); text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
.hero__lead { font-size: var(--fs-lead); font-weight: 600; max-width: 620px; color: var(--on-dark); margin-bottom: var(--s-3); }
.hero__lead strong, .hero__lead b { color: var(--yellow); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }

/* Trust row (under hero headline or standalone) */
.trust-row { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: var(--s-3); align-items: center; }
.trust-row__item { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-size: 0.95rem; color: var(--on-dark); }
.trust-row__item svg { width: 20px; height: 20px; flex: none; color: var(--yellow); }

/* ---------- Stars / rating ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--yellow); line-height: 1; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.6em; background: var(--white); color: var(--charcoal);
  border-radius: var(--r-pill); padding: 0.5em 1em; box-shadow: var(--shadow-1); font-weight: 700; font-size: 0.95rem;
}
.rating-badge .stars svg { width: 16px; height: 16px; }

/* ---------- Trust strip (band of guarantees) ---------- */
.trust-strip { background: var(--charcoal); color: var(--on-dark); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); padding: var(--s-4) 0; }
.trust-strip__item { display: flex; align-items: center; gap: 0.8em; }
.trust-strip__ic {
  flex: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  display: grid; place-items: center; background: rgba(253,241,0,0.12); color: var(--yellow);
}
.trust-strip__ic svg { width: 24px; height: 24px; }
.trust-strip__item b { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.02rem; letter-spacing: 0.01em; color: var(--white); }
.trust-strip__item span { font-size: 0.86rem; color: var(--on-dark-soft); }
@media (max-width: 900px) { .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-2); } }
@media (max-width: 520px) { .trust-strip__grid { grid-template-columns: 1fr; } }

/* ---------- Service-area ticker ---------- */
.ticker-wrap { background: var(--charcoal-900); color: var(--white); padding: var(--s-3) 0; }
.ticker-wrap__label { font-family: var(--font-display); text-transform: uppercase; text-align: center; margin-bottom: 0.6em; font-size: 1rem; letter-spacing: 0.08em; color: var(--yellow); }
.ticker { display: flex; gap: 0.5em 0.9em; flex-wrap: wrap; justify-content: center; align-items: center; }
.ticker a { font-weight: 700; color: var(--white); padding: 0.2em 0.1em; }
.ticker a:hover { color: var(--yellow); }
.ticker span { color: rgba(255,255,255,0.3); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--s-3); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .grid-2 { gap: var(--s-4); } }
@media (max-width: 800px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s-3); box-shadow: var(--shadow-1); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card--blue-line { border-top: 4px solid var(--blue); }
.card--yellow-line { border-top: 4px solid var(--yellow); }

/* ---------- Service icon row ---------- */
.icon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); text-align: center; }
@media (max-width: 700px) { .icon-row { grid-template-columns: 1fr; gap: var(--s-4); } }
.icon-row > div { padding: var(--s-3) var(--s-2); border-radius: var(--r-md); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.icon-row > div:hover { transform: translateY(-4px); background: var(--offwhite); }
.icon-row img {
  width: 96px; height: 96px; margin: 0 auto var(--s-2); object-fit: contain;
  background: var(--blue-050); border-radius: 50%; padding: 20px;
}
.icon-row h4 { margin: 0; }

/* ---------- How-it-works steps ---------- */
.step { text-align: center; position: relative; }
.step__photo {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden; margin: 0 auto var(--s-3);
  border: 5px solid rgba(255,255,255,0.85); box-shadow: var(--shadow-2); position: relative;
  transition: transform var(--dur) var(--ease);
}
.step:hover .step__photo { transform: translateY(-4px) scale(1.02); }
.step__photo img { width: 100%; height: 100%; object-fit: cover; }
.step h4 { color: var(--white); }
.step p { color: var(--on-dark); margin-left: auto; margin-right: auto; }
.step__num { font-family: var(--font-display); color: var(--yellow); font-size: 1.1rem; }
/* number badge on the photo */
.grid-3 { counter-reset: step; }
.step .step__photo::after {
  counter-increment: step; content: counter(step);
  position: absolute; top: 4px; right: 4px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--charcoal); font-family: var(--font-display);
  display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow-1);
}

/* ---------- Trust list (why us) ---------- */
.trust-list { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: var(--s-3); }
.trust-list li { position: relative; padding-left: 2.6em; margin: 0; }
.trust-list li::before {
  content: ""; position: absolute; left: 0; top: 0.1em; width: 1.7em; height: 1.7em;
  background: var(--yellow); border-radius: var(--r-sm);
  -webkit-mask: no-repeat center / 62% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
          mask: no-repeat center / 62% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-clip: padding-box;
}
.trust-list strong { font-family: var(--font-display); text-transform: uppercase; display: block; margin-bottom: 0.2em; letter-spacing: 0.01em; font-size: 1.1rem; color: var(--charcoal); }

/* ---------- Testimonials ---------- */
.quote-bubble {
  position: relative; background: var(--cream); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-3) var(--s-3); font-size: 1.12rem; color: var(--ink);
  box-shadow: var(--shadow-1); border: 1px solid rgba(33,44,43,0.06); max-width: 460px;
}
.quote-bubble::before {
  content: "\201C"; position: absolute; top: -0.15em; left: 0.35em;
  font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; color: var(--yellow);
}
.quote-bubble .stars { margin-bottom: 0.5em; }
.quote-bubble p { font-style: italic; margin: 0 0 var(--s-2); }
.quote-bubble cite { display: block; margin-top: var(--s-1); font-style: normal; font-weight: 800; color: var(--charcoal); font-size: 0.98rem; }

/* ---------- Accordion (FAQ / uses) ---------- */
.accordion-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: var(--s-2); background: var(--white); overflow: hidden; box-shadow: var(--shadow-1); }
.accordion-trigger {
  width: 100%; text-align: left; background: transparent; border: 0; padding: var(--s-2) var(--s-3);
  font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-2); cursor: pointer; min-height: 56px;
  transition: background var(--dur) var(--ease);
}
.accordion-trigger:hover { background: var(--offwhite); }
.accordion-trigger .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); color: var(--charcoal); display: grid; place-items: center; font-size: 1.3rem; font-family: var(--font-body); line-height: 1; transition: transform var(--dur) var(--ease); }
.accordion-trigger[aria-expanded="true"] .plus { transform: rotate(45deg); }
.accordion-panel { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.accordion-panel[data-open="true"] { max-height: 600px; }
.accordion-panel__inner { padding: 0 var(--s-3) var(--s-3); color: var(--ink-soft); }

/* ---------- Acceptable-items columns ---------- */
.items-columns { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 700px) { .items-columns { grid-template-columns: 1fr; gap: var(--s-3); } }
.items-check, .items-x { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7em; }
.items-check li, .items-x li { display: flex; align-items: center; gap: 0.6em; font-weight: 600; margin: 0; }
.items-check img, .items-x img { width: 24px; height: 24px; flex: none; }

/* ---------- Form embed ---------- */
.form-embed { background: var(--white); border-radius: var(--r-md); overflow: hidden; min-height: 480px; box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.form-embed iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-900); color: var(--on-dark); padding: var(--s-5) 0 var(--s-3); border-top: 4px solid var(--yellow); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: var(--s-4); margin-bottom: var(--s-4); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__logo img { height: 62px; margin-bottom: var(--s-2); }
.site-footer p { color: var(--on-dark-soft); font-size: 0.94rem; max-width: none; }
.site-footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: var(--s-2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55em; }
.site-footer a.link { color: var(--yellow); font-weight: 600; }
.site-footer a.link:hover { color: var(--yellow-600); text-decoration: underline; }
.site-footer__badges { display: flex; align-items: center; gap: var(--s-2); padding: var(--s-3) 0; border-top: 1px solid var(--line-dark); }
.site-footer__badges img { border-radius: 8px; transition: opacity var(--dur) var(--ease); }
.site-footer__badges a:hover img { opacity: 0.82; }
.site-footer__bottom { border-top: 1px solid var(--line-dark); padding-top: var(--s-2); font-size: 0.88rem; color: var(--on-dark-soft); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 600; background: rgba(23,31,30,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line-dark); padding: 0.6rem 0.75rem; padding-bottom: max(0.6rem, env(safe-area-inset-bottom)); box-shadow: 0 -6px 20px rgba(0,0,0,0.25); }
.mobile-cta-bar__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 900px) {
  .mobile-cta-bar { display: block; padding-right: 88px; }
  body { padding-bottom: 78px; }
}

/* ---------- Misc ---------- */
.crumb { font-size: 0.9rem; color: var(--ink-mut); }
.section--dark .crumb, .section--darker .crumb { color: var(--on-dark-soft); }
.crumb a:hover { text-decoration: underline; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
hr, .rule-yellow { border: 0; height: 4px; width: 64px; background: var(--yellow); border-radius: 2px; margin: var(--s-3) 0; }

/* ---------- Reveal-on-scroll motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .icon-row > div:hover, .step:hover .step__photo { transform: none; }
}
