/* =============================================
   SYMECH ELECTRICAL — DESIGN TOKENS
   ============================================= */
:root {
  --navy:        #0e1d44;
  --navy-2:      #142c5f;
  --navy-deep:   #091633;
  --red:         #e11d2e;
  --red-hover:   #c41827;
  --gray-50:     #f3f5f9;
  --gray-100:    #eef1f6;
  --gray-200:    #e5e9f0;
  --gray-300:    #cdd3df;
  --gray-500:    #6b7390;
  --gray-700:    #3a4262;
  --ink:         #0f172a;
  --white:       #ffffff;

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

  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px -12px rgba(15,23,42,0.10);
  --shadow-hover:0 1px 2px rgba(15,23,42,0.05), 0 18px 40px -16px rgba(15,23,42,0.18);

  --container:   1200px;
  --pad-x:       clamp(20px, 4vw, 48px);
}

/* =============================================
   RESET / BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn__arrow { display: inline-block; transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* =============================================
   UTILITY BAR
   ============================================= */
.utility-bar {
  background: var(--navy-deep);
  color: #cfd6e8;
  font-size: 13px;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}
.utility-bar a { color: #fff; }
.utility-bar a:hover { color: var(--red); }
.utility-bar__right { display: flex; align-items: center; gap: 14px; }
.utility-bar__sep { color: #3a4262; }

/* =============================================
   HEADER
   ============================================= */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(15,23,42,0.07);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
}
.header__logo img { height: 96px; width: auto; }
.header__right { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }
.header__niceic { height: 48px; width: auto; border-radius: 3px; }

.header__accreditation {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__accreditation-img {
  height: 52px;
  width: auto;
}
.header__accreditation-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header__accreditation-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.header__accreditation-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.header__nav-row {
  background: var(--navy);
}
.header__nav-row .container {
  display: flex;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex: 1;
  min-height: 50px;
}
.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 8px 4px;
  position: relative;
  transition: color .18s ease;
}
.nav__link:hover { color: #fff; }
.nav__link--active { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.hamburger__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.hamburger__bar:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.hamburger__bar:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile slide-down nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 8px var(--pad-x) 16px;
}
.mobile-nav__link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--gray-100);
  transition: color .18s ease;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover { color: var(--red); }
.mobile-nav__link--active { color: var(--red); }
.mobile-nav__link--call { color: var(--red); font-weight: 700; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(14,29,68,0.92) 0%, rgba(14,29,68,0.78) 55%, rgba(14,29,68,0.65) 100%),
    url('photo-industrial.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero__inner {
  position: relative;
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__title {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 22px;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: #d6dcec;
  margin-top: 22px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* NICEIC accreditation badge — absolutely positioned top-right of hero/page-hero */
.niceic-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  position: absolute;
  top: clamp(20px, 3.5vw, 40px);
  right: 0;
  z-index: 1;
}
.niceic-badge__img {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .niceic-badge {
    position: static;
    order: -1;
    align-self: flex-start;
    padding: 8px 12px 8px 10px;
    gap: 8px;
    margin-bottom: 6px;
  }
  .niceic-badge__img { height: 38px; }
  .niceic-badge__label { font-size: 9px; }
  .niceic-badge__name { font-size: 12px; }
}
.niceic-badge__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.niceic-badge__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.niceic-badge__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.pill--red { background: var(--red); color: #fff; }
.pill__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pill-pulse 1.8s ease-out infinite;
}
@keyframes pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) {
  .pill__dot { animation: none; }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust { background: var(--gray-50); padding: 38px 0; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.trust__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  display: grid;
  place-items: center;
}
.trust__icon svg { width: 30px; height: 30px; }
.trust__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
}

/* =============================================
   SECTION TYPE
   ============================================= */
.section-head { max-width: 720px; margin-bottom: 48px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--navy);
  text-wrap: balance;
}
.section-sub {
  margin-top: 18px;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 620px;
}

/* =============================================
   SERVICES
   ============================================= */
.services { padding: clamp(72px, 9vw, 110px) 0; background: #fff; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: inherit;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-300);
}
.svc-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.svc-card__body { padding: 26px 28px 28px; }
.svc-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.svc-card__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.svc-card p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  transition: gap .2s ease;
}
.svc-card:hover .svc-card__more { gap: 12px; }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--gray-50); padding: clamp(72px, 9vw, 110px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
}
.about__text .btn { margin-top: 32px; }
.about__media {
  position: relative;
  height: 440px;
}
.about__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.about__img--a {
  left: 0;
  top: 0;
  width: 58%;
  height: 80%;
}
.about__img--b {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 70%;
}

/* =============================================
   CTA BAR
   ============================================= */
.cta-bar { background: var(--navy); color: #fff; padding: 56px 0; }
.cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.cta-bar h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-bar p { color: #b9c2d9; margin-top: 8px; font-size: 16px; }
.cta-bar__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep);
  color: #cfd6e8;
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__col h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer__col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer__col p { color: #97a1bf; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { color: #cfd6e8; font-size: 14px; transition: color .18s ease; }
.footer__col li a:hover { color: var(--red); }
.footer__contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer__contact li svg { width: 16px; height: 16px; color: #97a1bf; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
  color: #97a1bf;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.9;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,29,68,0.94) 0%, rgba(14,29,68,0.82) 60%, rgba(14,29,68,0.70) 100%);
}
.page-hero__inner {
  position: relative;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.page-hero__title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 760px;
  text-wrap: balance;
}
.page-hero__sub {
  font-size: 18px;
  color: #d6dcec;
  max-width: 600px;
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #b9c2d9;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: #b9c2d9; transition: color .18s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { color: #4b5680; }
.breadcrumb__current { color: #fff; }

/* =============================================
   GENERIC SECTIONS
   ============================================= */
.section { padding: clamp(72px, 9vw, 110px) 0; }
.section--gray { background: var(--gray-50); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.split--media-left { grid-template-columns: 1fr 1.05fr; }
.split__text p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}
.split__text .btn { margin-top: 32px; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

/* Service checklist */
.svc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 28px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.svc-list li::before {
  content: "";
  flex: 0 0 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* Feature/why row */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(225,29,46,0.10);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.feature p { color: var(--gray-700); font-size: 14.5px; line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-map-col {
  position: sticky;
  top: 110px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.contact-card__icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(225,29,46,0.10);
  color: var(--red);
  display: grid;
  place-items: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.contact-card__value {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}
.contact-card a.contact-card__value { transition: color .18s ease; }
.contact-card a.contact-card__value:hover { color: var(--red); }
.contact-card__note { color: var(--gray-700); font-size: 14px; margin-top: 4px; }

.hours {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-top: 16px;
}
.hours h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours h3 svg { width: 18px; height: 18px; color: var(--red); }
.hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14.5px;
  color: #cfd6e8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours ul li:last-child { border-bottom: none; }
.hours ul li strong { color: #fff; font-weight: 700; }
.hours__note { margin-top: 14px; font-size: 13px; color: #b9c2d9; }

.map {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  background: var(--gray-100);
}
.map iframe { width: 100%; height: 520px; border: 0; display: block; }
.map__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-700);
}
.map__footer a { color: var(--red); font-weight: 700; }

/* Contact form */
.contact-form {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-form h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-form p.contact-form__sub {
  color: var(--gray-700);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,29,68,0.10);
}
.field textarea { resize: vertical; min-height: 120px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .header__inner { grid-template-columns: 1fr auto 1fr; gap: 16px; min-height: 96px; }
  .header__logo img { height: 80px; }
  .header__nav-row { display: none; }
  .nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
  .header__right { gap: 12px; justify-self: end; }
  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { height: 380px; }
  .cta-bar__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--media-left .split__media { order: -1; }
  .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map-col { position: static; top: auto; }
}

@media (max-width: 600px) {
  .utility-bar__left { display: none; }
  .utility-bar__inner { justify-content: center; }
  .header__niceic { display: none; }
  .header__accreditation-text { display: none; }
  .header__accreditation-img { height: 44px; }
  .header__call-btn { display: none; }
  .header__logo img { height: 64px; }
  .btn--sm { padding: 9px 14px; font-size: 13px; }
  .hero__inner { padding-block: 72px; min-height: 0; flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
}
