@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0c5cb1;
  --blue-dark: #0a4e98;
  --blue-deep: #083f7a;
  --blue-soft: #eaf2fd;
  --blue-softer: #f3f8fe;
  --ink: #111827;
  --heading: #15181e;
  --muted: #5c6570;
  --muted-2: #7a828c;
  --line: #e6e9ee;
  --white: #ffffff;
  --page: #f6f8f8;
  --mint: #e8f6ee;
  --mint-2: #dcefe4;
  --green: #146c43;
  --green-dark: #0f5635;
  --green-text: #134e38;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  --shadow-sm: 0 6px 18px rgba(17, 24, 39, 0.05);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-soft);
  color: #35506c;
  font-size: 13px;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar svg { flex-shrink: 0; }
.topbar span.topbar-hours-short { display: none; }

.nav {
  background: var(--white);
  border-bottom: 1px solid #f0f2f5;
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand-text { min-width: 0; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-text strong {
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--heading);
  line-height: 1.15;
}
.brand-text small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #6b7280;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #3a4048;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.15s ease;
  text-align: center;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-size: 14.5px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-blue.lg { padding: 13px 20px; font-size: 15px; }
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  font-size: 14.5px;
}
.btn-green:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 12px 4px;
  font-size: 14.5px;
  font-weight: 600;
}
.btn-ghost:hover { text-decoration: underline; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  padding: 56px 0 28px;
  background: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  background: #e7f6ee;
  color: #146c43;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--heading);
  font-weight: 800;
}
.hero p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 22px;
  flex-wrap: wrap;
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}
.check-ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 390px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats */
.stats {
  background: var(--blue-soft);
  padding: 28px 0;
  margin-top: 18px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  text-align: center;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Sections */
.section { padding: 72px 0; }
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
  color: var(--heading);
  font-weight: 800;
}
.lede {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 640px;
  margin: 0 0 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid #eef1f4;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.card.featured {
  background: var(--blue-soft);
  border: 0;
  box-shadow: none;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.8px;
}
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
}
.ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #d9e9fb;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.card.featured .ico { background: #d3e5fa; }
.more-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.process-photo {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  height: 250px;
}
.process-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps { display: flex; flex-direction: column; gap: 22px; }
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}
.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.step h3 { margin: 4px 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14.2px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-grid p { color: var(--muted); font-size: 15.2px; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 28px;
}
.facts h4 { margin: 0 0 4px; font-size: 14.5px; }
.facts p { margin: 0; font-size: 13.4px; }
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 430px;
}

.industries {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #2d3340;
}
.tag svg { color: var(--blue); }

.cta-banner {
  background: var(--mint);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: var(--green-text);
  letter-spacing: -0.02em;
}
.cta-banner p {
  margin: 0;
  color: #1f6b4a;
  font-size: 14.5px;
}

.footer {
  background: var(--page);
  border-top: 1px solid #edf0f2;
  padding: 48px 0 18px;
  margin-top: 8px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr;
  gap: 36px;
}
.footer h5 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--heading);
}
.footer p, .footer a, .footer li {
  color: #5b6570;
  font-size: 14px;
}
.footer .btn,
.footer .btn-blue {
  color: #fff;
}
.footer .btn:hover,
.footer .btn-blue:hover {
  color: #fff;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 9px; }
.footer a:hover { color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-contact span,
.footer-contact a {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #4b5563;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 13.8px;
}
.hours-row strong { color: var(--heading); font-weight: 600; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e7eaee;
  margin-top: 32px;
  padding-top: 16px;
  color: #8b939c;
  font-size: 12.5px;
}

/* Contact page */
.page-hero {
  background: var(--blue-soft);
  padding: 48px 0 36px;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.035em;
  font-weight: 800;
}
.page-hero > .wrap > p {
  max-width: 720px;
  color: #4b5563;
  font-size: 16px;
  margin: 0 0 28px;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
}
.info-card .label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b7280;
}
.info-card strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.enquiry {
  padding: 56px 0;
  background: #fff;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  border: 1px solid #eceff3;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 28px; margin-bottom: 6px; }
.form-card .hint {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9dee6;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 92, 177, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa3ad; }

.side-stack { display: flex; flex-direction: column; gap: 16px; }
.next-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 22px 22px 20px;
}
.next-card h3 { margin: 0 0 16px; font-size: 20px; }
.next-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.next-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-size: 14px;
  color: #2f3a36;
}
.next-list span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #2f3a36;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 700;
}
.hours-card {
  background: #eef2f6;
  border-radius: 16px;
  padding: 20px 22px;
}
.hours-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 18px;
}
.hours-card .hours-row { font-size: 14px; }

.visit {
  background: #f3f5f7;
  padding: 48px 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  background: #dce8f3;
  border: 0;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) hue-rotate(12deg);
}
.visit h2 { margin-bottom: 18px; }
.visit-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0 0 16px;
  color: #374151;
  font-size: 15px;
}

.alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}
.alert-ok { background: #e8f6ee; color: #146c43; }
.alert-err { background: #fdecec; color: #9b1c1c; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 80;
}
.modal.open { display: flex; }
.modal-card {
  width: min(480px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.modal-card h3 { margin: 0 0 6px; font-size: 22px; }
.modal-card .hint { margin-bottom: 16px; color: var(--muted); font-size: 14px; }
.modal-close {
  float: right;
  border: 0;
  background: #f3f4f6;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
}

html { overflow-x: hidden; }
img { height: auto; }

.crumb {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7c90;
}
.section-alt { background: var(--page); }
.cta-wrap { margin-top: 40px; }
.cta-spacer { height: 40px; }

.card-photo {
  border-radius: 10px;
  overflow: hidden;
  height: 132px;
  margin: -6px -6px 16px;
}
.card-photo img,
.gallery img,
.split-photo img,
.industry-photo img,
.step-card-photo img,
.process-hero-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip { padding: 28px 0 8px; }
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.photo-mosaic figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
}
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery figure { margin: 0; }
.gallery img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}
.gallery figcaption {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.about-stack {
  display: grid;
  gap: 14px;
}
.about-photo.secondary { height: 200px; border-radius: 14px; overflow: hidden; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-photo {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  height: 100%;
}
.detail-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  font-size: 15px;
}

.process-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.process-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}
.steps-page { display: flex; flex-direction: column; gap: 28px; }
.step-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.step-card.reverse { grid-template-columns: 1.1fr 0.9fr; }
.step-card.reverse .step-card-photo { order: 2; }
.step-card > div:last-child { padding: 28px 28px 28px 8px; }
.step-card.reverse > div:last-child { padding: 28px; }
.step-card-photo { height: 280px; }
.step-card .num { margin-bottom: 10px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  padding: 24px;
}
.panel.mint { background: var(--mint); border: 0; }
.panel h3 { margin: 0 0 12px; }
.panel p { color: var(--muted); }
.panel a { color: var(--blue); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-list { display: flex; flex-direction: column; gap: 22px; }
.industry-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.industry-photo { height: 220px; }
.industry-card > div:last-child { padding: 22px 24px 22px 0; }
.industry-card h2 { font-size: 26px; }

.nav { scroll-margin-top: 0; }
#support, #cloud, #security, #cabling, #voip, #continuity,
#office, #legal, #professional, #ecommerce, #health, #retail, #startups, #finance, #property {
  scroll-margin-top: 88px;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-open { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(17,24,39,.08);
}
.mobile-nav .wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 20px;
}
.mobile-nav a:not(.btn) {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  border-bottom: 1px solid #f0f2f5;
}
.mobile-nav a.active { color: var(--blue); }
.mobile-nav .btn { margin-top: 16px; width: 100%; }
.mobile-nav-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.mobile-nav-meta a {
  display: inline-block;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.mobile-nav-meta p { margin: 6px 0 0; }

.field input,
.field select,
.field textarea { font-size: 16px; }

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .card.featured { grid-row: auto; grid-column: 1 / -1; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .industry-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 980px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .topbar {
    display: block;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 500;
  }
  .topbar .wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 32px;
    text-align: left;
  }
  .topbar-left,
  .topbar-right {
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    gap: 0;
  }
  .topbar-right {
    justify-content: flex-end;
  }
  .topbar a,
  .topbar span {
    justify-content: flex-start;
    white-space: nowrap;
    gap: 5px;
  }
  .topbar svg {
    width: 12px;
    height: 12px;
  }
  .topbar span.topbar-hours { display: none; }
  .topbar span.topbar-hours-short { display: inline-flex; }
  .nav {
    position: sticky;
    top: 0;
    padding: 20px 0 18px;
  }
  .nav .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: 56px;
    align-items: center;
    column-gap: 12px;
    min-height: 56px;
  }
  .nav .wrap > .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav .wrap > .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .nav-links,
  .nav-cta { display: none; }
  .brand { flex: 1; min-width: 0; }
  .brand-text strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 45;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }
  .mobile-nav .wrap {
    display: flex;
    flex-direction: column;
    width: min(var(--max), calc(100% - 32px));
  }
  .mobile-nav a:not(.btn) { width: 100%; }
  .hero { padding: 28px 0 16px; }
  .hero h1 { font-size: 32px; }
  .hero-grid,
  .process,
  .about-grid,
  .industries,
  .enquiry-grid,
  .visit-grid,
  .footer-grid,
  .stats-grid,
  .info-cards,
  .form-row,
  .split,
  .process-hero,
  .two-col,
  .values-grid,
  .photo-mosaic { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .card.featured { grid-column: auto; }
  .hero-photo, .about-photo, .process-photo, .split-photo, .process-hero-photo { height: 240px; min-height: 240px; }
  .photo-mosaic figure { height: 180px; }
  .cta-banner, .legal { flex-direction: column; align-items: flex-start; }
  .section { padding: 48px 0; }
  .form-card, .cta-banner { padding: 20px; }
  .page-hero { padding: 32px 0 24px; }
  .step-card,
  .step-card.reverse,
  .industry-card { grid-template-columns: 1fr; }
  .step-card.reverse .step-card-photo { order: 0; }
  .step-card > div:last-child,
  .step-card.reverse > div:last-child,
  .industry-card > div:last-child { padding: 18px 20px 22px; }
  .facts { grid-template-columns: 1fr; }
  .hours-row { flex-direction: column; gap: 2px; }
  .map-frame { height: 260px; }
  .btn { min-height: 44px; }
  .nav-cta { padding: 10px 12px; font-size: 13px; }
  .mobile-nav.open { display: block; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { display: none; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 28px); }
  .brand-text small { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 200px; }
  .stats-grid { gap: 10px; }
  .stat { font-size: 14px; padding: 4px 0; }
  .info-card strong { font-size: 16px; word-break: break-word; }
  .modal { padding: 12px; align-items: flex-end; }
  .modal-card { width: 100%; border-radius: 16px 16px 0 0; padding: 20px; max-height: 92vh; overflow: auto; }
  .legal { font-size: 12px; }
  .card-photo { height: 160px; }
}

@media (max-width: 420px) {
  .topbar svg { display: none; }
  .hero h1 { font-size: 28px; }
  .section h2, .page-hero h1 { font-size: 26px; }
  .cta-banner h3 { font-size: 20px; }
}
