/* ============================================================
   Jonathan Samlall Electric — styles.css
   Brand: navy #023766, red #C61928
   ============================================================ */

:root {
  --navy:        #023766;
  --navy-700:    #052a52;
  --navy-900:    #04203f;
  --navy-deep:   #021526;
  --red:         #c61928;
  --red-dark:    #a3121f;
  --ink:         #16202c;
  --muted:       #5b6b7c;
  --line:        #e3e8ef;
  --bg:          #ffffff;
  --bg-alt:      #f3f6fa;
  --white:       #ffffff;
  --gold:        #f5b301;

  --shadow-sm: 0 2px 8px rgba(2, 55, 102, .08);
  --shadow-md: 0 10px 30px rgba(2, 55, 102, .12);
  --shadow-lg: 0 24px 60px rgba(2, 55, 102, .20);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Montserrat', var(--font-body);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; color: var(--navy); font-weight: 800; }
svg { width: 100%; height: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--red   { --btn-bg: var(--red); }
.btn--red:hover { background: var(--red-dark); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-deep); color: #cdd9e7; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar__msg { font-weight: 500; }
.topbar .bolt { color: var(--gold); }
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; }
.topbar__phone svg { width: 15px; height: 15px; fill: var(--red); }
.topbar__phone:hover { color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 50px; height: 50px; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 18px; letter-spacing: -.01em; line-height: 1.1; }
.brand__name strong { color: var(--red); font-weight: 800; display: block; letter-spacing: .12em; font-size: 14px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy);
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red);
  transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 74px; left: 0; right: 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 14px 24px 22px; display: flex; flex-direction: column; gap: 4px;
  animation: slideDown .25s var(--ease);
}
.mobile-menu a { font-family: var(--font-head); font-weight: 600; font-size: 17px; padding: 13px 6px; border-bottom: 1px solid var(--line); color: var(--navy); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(86vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(2,21,38,.92) 0%, rgba(2,32,63,.80) 38%, rgba(2,55,102,.45) 70%, rgba(2,55,102,.25) 100%),
    linear-gradient(to top, rgba(2,21,38,.85), transparent 35%);
}
.hero__content { position: relative; z-index: 2; padding: 70px 24px; max-width: 720px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: rgba(198,25,40,.92); padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title { color: #fff; font-size: clamp(2.7rem, 7vw, 4.6rem); font-weight: 800; line-height: .98; }
.hero__title .accent { color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: #e7eef6; max-width: 560px; margin: 22px 0 32px; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; padding: 0; margin-top: 32px; font-weight: 600; font-size: 15px; color: #eaf1f8; }
.hero__trust li { display: flex; align-items: center; }

/* ---------- Trust badges ---------- */
.badges { margin-top: -54px; position: relative; z-index: 5; }
.badges__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge {
  background: #fff; border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); text-align: center;
}
.badge__icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--navy); }
.badge__icon svg { fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.badge__icon .check { fill: none; stroke: var(--red); }
.badge h3 { font-size: 17px; margin-bottom: 6px; }
.badge p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section__head--light h2 { color: #fff; }
.section__lead { color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold); }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--red)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service__icon {
  display: inline-flex; width: 56px; height: 56px; border-radius: 14px; padding: 13px;
  background: linear-gradient(150deg, #eaf1f9, #dce8f5); color: var(--navy); margin-bottom: 18px;
}
.service__icon svg { fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service--hot .service__icon { background: linear-gradient(150deg, #fde3e5, #f8c9cd); }
.service--hot .service__icon svg { stroke: var(--red); fill: rgba(198,25,40,.12); }
.service h3 { font-size: 19px; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.services__foot { text-align: center; margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.services__foot p { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--navy);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 16px;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px;
  background: linear-gradient(to top, rgba(2,21,38,.92), transparent);
  transform: translateY(8px); opacity: 0; transition: transform .3s var(--ease), opacity .3s;
}
.gallery__item .tag {
  display: inline-block; background: var(--red); color: #fff; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 6px; margin-right: 8px; vertical-align: middle;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item::after {
  content: "⤢"; position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy); display: grid; place-items: center; font-size: 16px;
  opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s;
}
.gallery__item:hover::after { opacity: 1; transform: scale(1); }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.why__stat {
  position: absolute; bottom: -26px; left: -26px; background: var(--red); color: #fff;
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 230px;
}
.why__stat strong { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; display: block; color: #fff; }
.why__stat span { font-size: 14px; font-weight: 600; }
.why__content h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; }
.why__lead { color: var(--muted); margin-bottom: 24px; font-size: 1.06rem; }
.why__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.why__list li { display: flex; gap: 14px; align-items: flex-start; }
.why__list span { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; margin-top: 2px; }
.why__list strong { color: var(--navy); }
.why__list div { color: var(--muted); font-size: 15.5px; }
.why__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Process ---------- */
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 16px; position: relative; }
.step__num {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.25);
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold); margin-bottom: 18px;
}
.step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: #c6d6e6; font-size: 15.5px; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.review p { color: var(--ink); font-size: 16px; line-height: 1.6; font-style: italic; }
.review footer { color: var(--muted); font-weight: 700; font-size: 14px; font-family: var(--font-head); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; padding: 56px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.cta-band p { color: #ffe0e3; font-weight: 600; margin-top: 6px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn--red { background: var(--navy); border-color: var(--navy); }
.cta-band .btn--red:hover { background: var(--navy-900); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.contact__lead { color: var(--muted); margin-bottom: 30px; }
.contact__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: center; }
.contact__ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: #eaf1f9; padding: 12px; color: var(--navy); }
.contact__ic svg { fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact__label { display: block; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact__list a, .contact__list div > span:last-child { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 17px; }
.contact__list a:hover { color: var(--red); }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.form__title { font-size: 1.4rem; margin-bottom: 20px; }
.form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 7px; padding: 13px 15px; font: inherit; font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 11px; background: #fbfcfe; transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(2,55,102,.1); background: #fff;
}
.form textarea { resize: vertical; }
.form__fineprint { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; font-weight: 500; }
.form__fineprint a { color: var(--red); font-weight: 700; }
.form__success {
  margin-top: 16px; padding: 16px 18px; background: #e9f7ee; border: 1.5px solid #b6e3c6; border-radius: 12px;
  color: #1a7a3d; font-weight: 600; font-size: 15px; text-align: center;
}
.form__success a { color: #145e2e; text-decoration: underline; }
.form__error {
  margin-top: 16px; padding: 16px 18px; background: #fdecec; border: 1.5px solid #f3b6b6; border-radius: 12px;
  color: #b3261e; font-weight: 600; font-size: 15px; text-align: center;
}
.form__error a { color: #8a1c16; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #b9c8d8; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer__brand img { background: #fff; border-radius: 12px; padding: 6px; width: 64px; height: 64px; object-fit: contain; }
.footer__tag { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.25rem; margin: 14px 0 8px; }
.footer__desc { font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 15px; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 9px; }
.footer__contact a { font-size: 14.5px; }
.footer__phone { font-family: var(--font-head); font-weight: 800; color: #fff !important; font-size: 1.4rem !important; }
.footer__phone:hover { color: var(--gold) !important; }
.footer__contact p { font-size: 14px; line-height: 1.6; margin-top: 4px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #8ba0b6; }

/* ---------- Sticky mobile action bar ---------- */
.mobilebar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(2,55,102,.14); padding: 8px; gap: 8px; }
.mobilebar__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px;
  font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--navy); border-radius: 12px; background: var(--bg-alt);
}
.mobilebar__btn svg { width: 22px; height: 22px; fill: var(--navy); }
.mobilebar__btn--primary { background: var(--red); color: #fff; }
.mobilebar__btn--primary svg { fill: #fff; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(2,12,24,.94); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade .2s; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure { max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox__figure img { max-width: 92vw; max-height: 80vh; border-radius: 10px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__figure figcaption { color: #e7eef6; font-family: var(--font-head); font-weight: 600; margin-top: 16px; font-size: 16px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 30px; line-height: 1; display: grid; place-items: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 22px; right: 22px; font-size: 34px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav { gap: 22px; }
  .why__grid, .contact__grid { gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .badges__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--tall { grid-row: span 1; }
  .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .why__media { max-width: 520px; margin: 0 auto; }
  .why__stat { left: 0; }
  .process__grid, .reviews__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .section { padding: 70px 0; }
  .mobilebar { display: flex; }
  body { padding-bottom: 72px; }
  .mobile-menu { top: 74px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
  .badges { margin-top: 44px; }
  .badges__grid { grid-template-columns: 1fr; gap: 14px; }
  .badge { display: flex; align-items: center; text-align: left; gap: 16px; padding: 18px; }
  .badge__icon { margin: 0; flex: none; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__content { padding: 56px 22px; }
  .hero__actions .btn, .why__actions .btn, .cta-band__actions .btn { width: 100%; }
  .contact__form-wrap { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
