/* ============================================================
   Vincent Tyres Services — design system
   Brand-true navy + signal red on clean white, sparing EV green.
   Mobile-first. Tokens eyedropper-matched to logo (CLAUDE-DESIGN.md §0)
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #F4F6F8;
  --surface-2: #EAEEF2;
  --text: #10151B;
  --muted: #5A6570;
  --primary: #16275E;   /* brand navy */
  --secondary: #0B1730; /* deep ink navy */
  --accent: #D62331;    /* signal red */
  --accent-press: #B41C29;
  --ev: #13A45A;        /* EV green, sparing */
  --ev-deep: #0E7C44;
  --border: #DCE2E8;
  --focus: #1D4ED8;

  --ink-grad: linear-gradient(160deg, #16275E 0%, #0B1730 70%, #070E1E 100%);

  --font-display: 'Saira', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16,21,27,.05), 0 1px 3px rgba(16,21,27,.06);
  --shadow-md: 0 6px 16px rgba(16,21,27,.08), 0 2px 6px rgba(16,21,27,.05);
  --shadow-lg: 0 24px 60px -18px rgba(11,23,48,.32);

  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 56px);
  --section-y: clamp(56px, 9vw, 116px);

  --bar-h: 70px; /* sticky mobile action bar */
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--secondary); color: #fff; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.04; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0; }
.display {
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h2 { font-weight: 700; font-size: clamp(1.85rem, 4.6vw, 3rem); letter-spacing: -0.018em; }
.h3 { font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.7rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.5; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--accent); border-radius: 2px; }
.eyebrow--light { color: #cdd6e8; }
.eyebrow--ev { color: var(--ev-deep); }
.eyebrow--ev::before { background: var(--ev); }
.section--ink .eyebrow::before { opacity: 1; }

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 22px; min-height: 50px; border-radius: 12px;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--call { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(214,35,49,.6); }
.btn--call:hover { background: var(--accent-press); box-shadow: 0 12px 26px -8px rgba(214,35,49,.7); }
.btn--wa { background: var(--ev); color: #fff; box-shadow: 0 8px 20px -8px rgba(19,164,90,.55); }
.btn--wa:hover { background: var(--ev-deep); box-shadow: 0 12px 26px -8px rgba(19,164,90,.65); }
.btn--navy { background: var(--primary); color: #fff; }
.btn--navy:hover { background: var(--secondary); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); background: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); }
.btn--lg { padding: 16px 26px; min-height: 56px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.header--scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; gap: 18px; height: 76px; }
.nav__logo { display: flex; align-items: center; gap: 11px; flex: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__logo-txt { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-txt b { font-family: var(--font-display); font-weight: 800; font-size: 1.04rem; color: var(--primary); letter-spacing: .01em; }
.nav__logo-txt span { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav__links { display: none; gap: 4px; margin-left: 14px; }
.nav__links a {
  font-weight: 600; font-size: .95rem; color: var(--text); padding: 9px 13px; border-radius: 9px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover { background: var(--surface); color: var(--primary); }
.nav__cta { display: none; gap: 10px; margin-left: auto; }
.nav__burger {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 11px; border: 1.5px solid var(--border);
  background: #fff; color: var(--primary);
}
.nav__burger svg { width: 24px; height: 24px; }

/* mobile sheet */
.sheet {
  position: fixed; inset: 0; z-index: 70; visibility: hidden;
}
.sheet[data-open="true"] { visibility: visible; }
.sheet__scrim {
  position: absolute; inset: 0; background: rgba(7,14,30,.5); opacity: 0;
  transition: opacity .28s ease;
}
.sheet[data-open="true"] .sheet__scrim { opacity: 1; }
.sheet__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(85vw, 360px);
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 20px;
  overflow-y: auto;
}
.sheet[data-open="true"] .sheet__panel { transform: none; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sheet__close { width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--border); background: #fff; color: var(--text); display: inline-flex; align-items: center; justify-content: center; }
.sheet__close svg { width: 22px; height: 22px; }
.sheet__links { display: flex; flex-direction: column; margin: 8px 0 20px; }
.sheet__links a { padding: 15px 8px; font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--text); border-bottom: 1px solid var(--border); }
.sheet__links a:hover { color: var(--primary); }
.sheet__cta { display: grid; gap: 10px; margin-top: auto; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--secondary); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,14,30,.62) 0%, rgba(7,14,30,.42) 35%, rgba(7,14,30,.86) 100%),
    linear-gradient(95deg, rgba(11,23,48,.92) 0%, rgba(11,23,48,.5) 52%, rgba(11,23,48,.18) 100%);
}
.hero__inner { position: relative; padding-block: clamp(58px, 13vw, 140px); }
.hero__content { max-width: 660px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(214,35,49,.16); border: 1px solid rgba(214,35,49,.5);
  color: #ffd7da; padding: 7px 14px; border-radius: 100px; font-weight: 700; font-size: .8rem;
  letter-spacing: .04em; margin-bottom: 22px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(214,35,49,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(214,35,49,.6);} 70%{box-shadow:0 0 0 9px rgba(214,35,49,0);} 100%{box-shadow:0 0 0 0 rgba(214,35,49,0);} }
@media (prefers-reduced-motion: reduce) { .hero__badge .dot { animation: none; } }
.hero h1 { color: #fff; }
.hero h1 .hl { color: #fff; position: relative; white-space: nowrap; }
.hero h1 .hl::after { content:""; position:absolute; left:0; right:0; bottom:.04em; height:.16em; background: var(--accent); border-radius: 3px; z-index:-1; }
.hero__sub { margin-top: 20px; font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: #d7deec; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: #aeb9cd; font-size: .9rem; font-weight: 600; }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- trust strip ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--border); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.trust__item { background: #fff; padding: 20px 18px; display: flex; gap: 13px; align-items: flex-start; }
.trust__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--surface); color: var(--primary); display: grid; place-items: center; }
.trust__ic svg { width: 22px; height: 22px; }
.trust__item b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; }
.trust__item span { font-size: .86rem; color: var(--muted); }

/* ---------- section heading block ---------- */
.head { max-width: 640px; }
.head .h2 { margin-top: 14px; }
.head p { margin-top: 14px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
.svc {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c4cdd8; }
.svc__media { position: relative; aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__media--contain { background: var(--surface); }
.svc__media--contain img { object-fit: contain; padding: 20px; }
.svc__tag { position: absolute; top: 12px; left: 12px; padding: 6px 11px; border-radius: 100px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--primary); }
.svc__tag--hot { background: var(--accent); }
.svc__tag--ev { background: var(--ev); }
.svc__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { font-size: 1.24rem; }
.svc__body p { margin-top: 8px; color: var(--muted); font-size: .95rem; flex: 1; }
.svc__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--primary); font-size: .94rem; }
.svc__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.svc:hover .svc__link svg { transform: translateX(3px); }
.svc__link--ev { color: var(--ev-deep); }

/* ---------- mobile service band ---------- */
.band { position: relative; overflow: hidden; background: var(--ink-grad); color: #fff; }
.band__deco { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; border-radius: 50%; border: 70px solid rgba(255,255,255,.04); pointer-events: none; }
.band__deco::after { content:""; position:absolute; inset: 70px; border-radius: 50%; border: 40px solid rgba(214,35,49,.12); }
.band__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; position: relative; }
.band__copy h2 { color: #fff; margin-top: 16px; }
.band__copy p { color: #ccd4e4; margin-top: 16px; max-width: 520px; }
.band__feats { display: grid; gap: 12px; margin: 26px 0 30px; }
.band__feat { display: flex; gap: 12px; align-items: flex-start; }
.band__feat-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(214,35,49,.18); border: 1px solid rgba(214,35,49,.4); color: #ffd7da; display: grid; place-items: center; }
.band__feat-ic svg { width: 20px; height: 20px; }
.band__feat b { display: block; font-family: var(--font-display); font-weight: 600; }
.band__feat span { font-size: .9rem; color: #aeb9cd; }
.band__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.band__panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 8px; box-shadow: var(--shadow-lg); }
.band__panel img { border-radius: 16px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.band__panel-cap { display: flex; align-items: center; gap: 9px; padding: 14px 12px 10px; color: #aeb9cd; font-size: .84rem; font-weight: 600; }
.band__panel-cap .live { width: 9px; height: 9px; border-radius: 50%; background: var(--ev); box-shadow: 0 0 0 0 rgba(19,164,90,.7); animation: pulse-ev 2.2s infinite; }
@keyframes pulse-ev { 0%{box-shadow:0 0 0 0 rgba(19,164,90,.6);} 70%{box-shadow:0 0 0 8px rgba(19,164,90,0);} 100%{box-shadow:0 0 0 0 rgba(19,164,90,0);} }
@media (prefers-reduced-motion: reduce){ .band__panel-cap .live{ animation:none; } }

/* ---------- EV block ---------- */
.ev { position: relative; overflow: hidden; }
.ev__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.ev__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); background: #000; }
.ev__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ev__copy h2 { margin-top: 16px; }
.ev__copy p { margin-top: 16px; color: var(--muted); max-width: 520px; }
.ev__chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 28px; }
.ev__chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(19,164,90,.09); color: var(--ev-deep); border: 1px solid rgba(19,164,90,.28); padding: 8px 13px; border-radius: 100px; font-weight: 700; font-size: .86rem; }
.ev__chip svg { width: 15px; height: 15px; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
.gal__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); }
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal__item:hover img { transform: scale(1.06); }
.gal__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px; color: #fff; font-weight: 600; font-size: .84rem; background: linear-gradient(transparent, rgba(7,14,30,.8)); }

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.about__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__copy h2 { margin-top: 14px; }
.about__copy p { margin-top: 16px; color: var(--muted); }
.about__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--text); }
.about__list svg { flex: none; width: 22px; height: 22px; color: var(--ev); margin-top: 1px; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.contact__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow-sm); }
.nap { display: grid; gap: 4px; margin-top: 6px; }
.nap__row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.nap__row:last-child { border-bottom: 0; }
.nap__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--surface); color: var(--primary); display: grid; place-items: center; }
.nap__ic svg { width: 21px; height: 21px; }
.nap__row b { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.nap__row a, .nap__row p { font-size: 1.06rem; font-weight: 600; color: var(--text); }
.nap__row a:hover { color: var(--accent); }
.nap__note { font-size: .86rem; color: var(--muted); font-weight: 500; }

.map {
  margin-top: 22px; border-radius: var(--radius); overflow: hidden; border: 1px dashed #b9c3cf;
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
  min-height: 220px; display: grid; place-items: center; text-align: center; padding: 26px;
}
.map__inner { max-width: 320px; }
.map__pin { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--accent); }
.map__pin svg { width: 26px; height: 26px; }
.map b { font-family: var(--font-display); font-size: 1.05rem; }
.map span { display:block; margin-top: 6px; font-size: .86rem; color: var(--muted); font-family: var(--font-body); }
.map code { font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-size: .76rem; color: var(--primary); background: rgba(22,39,94,.07); padding: 2px 7px; border-radius: 5px; }

/* ---------- form ---------- */
.form { display: grid; gap: 14px; margin-top: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 11px; background: #fff;
  width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 4px rgba(29,78,216,.13); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--accent); }
.field__err { color: var(--accent); font-size: .82rem; font-weight: 600; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form__note { font-size: .82rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.form__note svg { width: 16px; height: 16px; color: var(--ev); flex: none; margin-top: 2px; }
.form__ok { background: rgba(19,164,90,.08); border: 1px solid rgba(19,164,90,.3); color: var(--ev-deep); border-radius: 12px; padding: 16px; font-weight: 600; display: flex; gap: 11px; align-items: flex-start; }
.form__ok svg { width: 22px; height: 22px; flex: none; }

/* ---------- footer ---------- */
.footer { background: var(--secondary); color: #c7d0e0; padding-block: clamp(44px, 7vw, 72px) 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.footer__brand img { height: 50px; filter: brightness(0) invert(1); opacity: .96; }
.footer__brand p { margin-top: 16px; max-width: 320px; font-size: .92rem; color: #9aa6bd; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: background .15s, border-color .15s; }
.footer__socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer__socials svg { width: 20px; height: 20px; }
.footer__col h4 { font-family: var(--font-display); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a, .footer__col li { font-size: .94rem; color: #9aa6bd; }
.footer__col a:hover { color: #fff; }
.footer__bar { margin-top: clamp(36px, 6vw, 60px); border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 calc(22px + var(--bar-h)); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: .82rem; color: #7e8aa3; }
.footer__bar a { color: #9aa6bd; }

/* ---------- sticky mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -12px rgba(7,14,30,.3);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.actionbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--bar-h); font-weight: 800; font-size: 1.02rem; color: #fff;
}
.actionbar svg { width: 21px; height: 21px; }
.actionbar .ab-call { background: var(--accent); }
.actionbar .ab-wa { background: var(--ev); }

/* WhatsApp FAB (desktop) */
.fab {
  position: fixed; right: 22px; bottom: 24px; z-index: 64;
  width: 60px; height: 60px; border-radius: 50%; background: var(--ev); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(19,164,90,.7);
  transition: transform .18s ease;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 30px; height: 30px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE  (mobile-first → up)
   ============================================================ */
@media (min-width: 560px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__burger { display: none; }
  .actionbar { display: none; }
  .fab { display: flex; }
  body { padding-bottom: 0; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .band__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .ev__grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .about__grid { grid-template-columns: .9fr 1.1fr; gap: 52px; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
}
@media (min-width: 1080px) {
  .svc-grid--feature .svc:first-child { grid-column: span 1; }
}

/* keep content clear of the sticky bar on mobile */
@media (max-width: 859px) {
  body { padding-bottom: 0; }
  .footer { padding-bottom: 0; }
}
