/* =============================================================
   GINO TOWING SERVICE — Shared Stylesheet
   Static, dependency-free. Mobile-first. Call-centric.
   Brand: cyan/blue + black + chrome (from logo).
   Red is reserved for the CALL action so it always wins.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand (from logo) */
  --brand:      #16A9E0;   /* logo cyan-blue */
  --brand-2:    #46C7F5;   /* lighter cyan */
  --brand-dark: #0B6E9B;
  --brand-glow: rgba(22, 169, 224, 0.38);
  --chrome:     #C6D2DC;   /* silver accent */

  /* Call / urgency (kept red on purpose) */
  --red:        #E11414;
  --red-dark:   #B00D0D;
  --red-glow:   rgba(225, 20, 20, 0.38);

  /* Review stars only */
  --gold:       #F5B301;

  /* Neutrals */
  --ink:        #05080C;   /* near-black, matches logo backdrop */
  --ink-2:      #0C1218;
  --ink-3:      #141C25;
  --slate:      #4A5568;
  --slate-2:    #6B7280;
  --line:       #E4E8EE;
  --cloud:      #F4F7FA;
  --cloud-2:    #EAF0F6;
  --white:      #FFFFFF;

  /* WhatsApp */
  --wa:         #25D366;
  --wa-dark:    #128C7E;

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(5, 8, 12, 0.06);
  --shadow-md: 0 12px 34px rgba(5, 8, 12, 0.14);
  --shadow-lg: 0 26px 60px rgba(5, 8, 12, 0.26);

  --header-h: 74px;
  --callbar-h: 76px; /* mobile floating bar */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- Reusable buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px; border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 20px; height: 20px; flex: none; }

/* CALL = red, always the loudest button on the page */
.btn-call {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px var(--red-glow);
}
.btn-call:hover { box-shadow: 0 14px 34px var(--red-glow); transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(180deg, #2BE06E 0%, var(--wa) 60%, var(--wa-dark) 100%);
  color: #063d29;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42); }

/* Brand-blue button (secondary, non-call actions) */
.btn-brand {
  background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 55%, var(--brand-dark) 100%);
  color: #04222f;
  box-shadow: 0 10px 24px var(--brand-glow);
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 14px 30px var(--brand-glow); }

.btn-ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1.5px solid rgba(70, 199, 245, 0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(22,169,224,.16); border-color: var(--brand-2); }

.btn-lg { font-size: 1.14rem; padding: 18px 34px; }
.btn-block { width: 100%; }

/* Pulsing ring for the primary call CTA */
.pulse { position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  box-shadow: 0 0 0 0 var(--red-glow); animation: pulse 2.4s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(225,20,20,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(225,20,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,20,20,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 8, 12, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(22, 169, 224, 0.22);
  box-shadow: 0 1px 0 rgba(70,199,245,.08), 0 6px 20px rgba(0,0,0,.4);
  color: #fff;
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Logo (real PNG on black — screen blend removes the black backdrop cleanly) */
.logo { display: flex; align-items: center; gap: 11px; color: #fff; }
.logo img { height: 52px; width: auto; }
.site-header .logo img,
.site-footer .logo img { mix-blend-mode: screen; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px; border-radius: 10px; font-weight: 600; font-size: .96rem;
  color: rgba(255,255,255,.82); transition: background .15s, color .15s;
}
.nav a:hover { background: rgba(22,169,224,.14); color: #fff; }
.nav a.active { color: #fff; background: rgba(22,169,224,.2); box-shadow: inset 0 0 0 1px rgba(70,199,245,.4); }

/* Header phone + actions — RED (the call action) */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; box-shadow: 0 8px 20px var(--red-glow);
  transition: transform .15s ease, box-shadow .2s ease;
}
.header-phone:hover { transform: translateY(-1px); box-shadow: 0 12px 26px var(--red-glow); }
.header-phone .ph-ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.2); border-radius: 50%; }
.header-phone .ph-ico svg { width: 18px; height: 18px; }
.header-phone .ph-txt { display: flex; flex-direction: column; line-height: 1.05; }
.header-phone .ph-txt small { font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; opacity: .85; }
.header-phone .ph-txt b { font-size: 1.04rem; font-weight: 800; letter-spacing: -0.01em; }

/* Mobile menu toggle */
.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 11px;
  background: rgba(22,169,224,.14); border: 1px solid rgba(70,199,245,.3);
  color: #fff; align-items: center; justify-content: center;
}
.menu-btn svg { width: 22px; height: 22px; }

/* Mobile slide-down nav */
.mobile-nav {
  display: none; background: var(--ink-2);
  border-bottom: 1px solid rgba(22,169,224,.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 15px 20px; color: rgba(255,255,255,.9);
  font-weight: 600; border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a:first-child { border-top: 0; }
.mobile-nav a.active { color: var(--brand-2); }

/* ---------- Hero (shared shell) ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(22,169,224,.34), transparent 60%),
    radial-gradient(760px 460px at 4% 112%, rgba(22,169,224,.14), transparent 55%),
    linear-gradient(165deg, #0A1420 0%, var(--ink) 58%, #010306 100%);
}
.hero::before { /* subtle road-grid texture */
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(rgba(70,199,245,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,199,245,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}
.hero-inner { position: relative; z-index: 1; padding: 66px 0 78px; }

.emergency-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 999px;
  background: rgba(225,20,20,.14); border: 1px solid rgba(225,20,20,.45);
  font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; margin-bottom: 22px;
}
.emergency-badge .dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,.7); animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,77,77,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.emergency-badge .live { color: var(--brand-2); }

.hero h1 {
  font-size: clamp(2.3rem, 6.4vw, 4.15rem); font-weight: 900;
  letter-spacing: -0.035em; max-width: 16ch;
}
.hero h1 .hl { color: #fff; position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .34em; z-index: -1;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 4px; transform: rotate(-1deg);
}
.hero .sub {
  margin-top: 20px; font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: rgba(255,255,255,.8); max-width: 54ch; font-weight: 500;
}
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Trust strip under hero CTAs */
.hero-trust {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center;
  color: rgba(255,255,255,.72); font-weight: 600; font-size: .92rem;
}
.hero-trust .item { display: flex; align-items: center; gap: 9px; }
.hero-trust .item svg { width: 19px; height: 19px; color: var(--brand-2); flex: none; }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Section shell ---------- */
.section { padding: 76px 0; }
.section.tight { padding: 58px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -0.03em; }
.section .lead { margin-top: 16px; font-size: 1.1rem; color: var(--slate); }

.bg-cloud { background: var(--cloud); }
.bg-ink { background: var(--ink); color: #fff; }

/* ---------- Services grid ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0);
  transform-origin: left; transition: transform .28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(180deg, #E7F6FD, #D2ECFA); color: var(--brand-dark); margin-bottom: 18px;
}
.service-card .ico svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.24rem; margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: .98rem; }

/* ---------- "How it works" steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--ink-2); border-radius: var(--radius-lg);
  border: 1px solid rgba(22,169,224,.16); }
.step .n {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 900; font-size: 1.2rem; color: #04222f; margin-bottom: 16px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand)); box-shadow: 0 8px 18px var(--brand-glow);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.step p { color: rgba(255,255,255,.7); font-size: .98rem; }

/* ---------- Coverage band ---------- */
.coverage {
  position: relative; overflow: hidden; color: #fff; border-radius: 28px;
  padding: 54px clamp(26px, 5vw, 60px);
  background:
    radial-gradient(700px 340px at 88% 10%, rgba(22,169,224,.28), transparent 60%),
    linear-gradient(150deg, #0C1620, var(--ink));
  border: 1px solid rgba(22,169,224,.2);
}
.coverage h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); max-width: 20ch; }
.coverage p { margin-top: 16px; color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 52ch; }
.coverage .cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.coverage .pin {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 190px; height: 190px; color: rgba(70,199,245,.9); opacity: .9;
}

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review p { color: #2A303B; font-size: 1rem; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-weight: 800; color: #04222f; font-size: 1rem;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
}
.review .who b { font-size: .96rem; display: block; }
.review .who span { font-size: .82rem; color: var(--slate-2); }

.rating-summary {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 6px;
  padding: 12px 20px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow-sm);
}
.rating-summary .big { font-size: 1.5rem; font-weight: 900; }
.rating-summary .stars { color: var(--gold); letter-spacing: 2px; }
.rating-summary span { color: var(--slate); font-weight: 600; font-size: .92rem; }

/* ---------- Feature / trust list ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.trust-item .ico { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 14px;
  display: grid; place-items: center; background: var(--ink); color: var(--brand-2); }
.trust-item .ico svg { width: 26px; height: 26px; }
.trust-item b { display: block; font-size: 1.06rem; margin-bottom: 4px; }
.trust-item p { color: var(--slate); font-size: .9rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.about-card {
  background: linear-gradient(150deg, #0C1620, #04070B); color: #fff;
  border-radius: 24px; padding: 40px; border: 1px solid rgba(22,169,224,.2);
}
.about-card h3 { color: #fff; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.stat b { display: block; font-size: 2rem; font-weight: 900; color: var(--brand);
  letter-spacing: -.02em; line-height: 1; }
.stat span { color: var(--slate); font-weight: 600; font-size: .88rem; }

.check-list { display: grid; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: #E7EBF1; font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; flex: none; color: var(--brand-2); margin-top: 2px; }

/* ---------- Big final CTA ---------- */
.final-cta { text-align: center; color: #fff; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 900; }
.final-cta p { margin-top: 14px; color: rgba(255,255,255,.78); font-size: 1.14rem; }
.final-cta .big-num {
  display: inline-flex; align-items: center; gap: 14px; margin: 28px 0 6px;
  font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; color: #fff; letter-spacing: -.02em;
}
.final-cta .big-num svg { width: clamp(34px, 7vw, 52px); height: auto; color: var(--red); }
.final-cta .cta-row { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start;
}
.contact-card .ico { width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid;
  place-items: center; background: linear-gradient(180deg, #FFE9E9, #FFD5D5); color: var(--red); }
.contact-card .ico.wa { background: linear-gradient(180deg,#E4FCEE,#CFF7DF); color: var(--wa-dark); }
.contact-card .ico.brand { background: linear-gradient(180deg,#E7F6FD,#D2ECFA); color: var(--brand-dark); }
.contact-card .ico svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.16rem; margin-bottom: 5px; }
.contact-card p { color: var(--slate); font-size: .96rem; }
.contact-card a.inline { color: var(--red); font-weight: 700; }
.contact-card .btn { margin-top: 14px; }
.wa-pair { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); }

.hours-list { margin-top: 6px; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0;
  border-top: 1px solid var(--line); font-weight: 600; }
.hours-list li:first-child { border-top: 0; }
.hours-list li .open { color: var(--wa-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 56px 0 0;
  border-top: 1px solid rgba(22,169,224,.18); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 60px; }
.footer-brand p { font-size: .96rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 800; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: .96rem; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-2); flex: none; margin-top: 3px; }
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.5); }

/* ---------- Floating mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5,8,12,.9); backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(22,169,224,.28);
}
.callbar .btn { flex: 1; padding: 15px 12px; font-size: 1.05rem; }
.callbar .btn-call { flex: 1.7; }

/* ---------- Reveal-on-scroll (progressive, JS-toggled) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services, .reviews, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .coverage .pin { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .header-phone .ph-txt small { display: none; }
  .header-phone { padding: 7px 14px 7px 8px; }
  .logo img { height: 44px; }
  .callbar { display: flex; }
  body { padding-bottom: var(--callbar-h); } /* room for floating bar */
  .hero-inner { padding: 48px 0 56px; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .services, .reviews, .steps, .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .logo img { height: 40px; }
  .header-phone .ph-txt b { font-size: .95rem; }
  .hero-cta .btn { flex: 1; }
}

/* ---------- Motion & a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 6px; }
