:root {
  --navy: #0c2e52;
  --navy-2: #071a31;
  --navy-3: #123f6c;
  --blue: #1677df;
  --blue-soft: #eaf4ff;
  --yellow: #ffb719;
  --yellow-dark: #efa800;
  --green: #09b95a;
  --green-dark: #059749;
  --orange: #ff6b2c;
  --red: #ef3348;
  --purple: #7f51dc;
  --brown: #a96526;
  --paper: #ffffff;
  --off-white: #f7f9fc;
  --ink: #0a2442;
  --muted: #52657a;
  --line: #dbe3ec;
  --shadow: 0 16px 40px rgba(6, 30, 56, .12);
  --shadow-small: 0 8px 24px rgba(6, 30, 56, .10);
  --container: min(1240px, calc(100vw - 48px));
  --radius: 18px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--yellow); color: var(--navy-2); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 17px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--navy-2);
  font-weight: 900;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(10,36,66,.07);
  box-shadow: 0 3px 18px rgba(6,30,56,.04);
  backdrop-filter: blur(14px);
}
.header-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: 285px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { width: 266px; display: block; }
.brand img { width: 100%; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}
.desktop-nav a {
  position: relative;
  padding: 29px 0 24px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transition: right .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 11px; }
.header-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(6,30,56,.10);
  transition: transform .2s ease, filter .2s ease;
}
.header-button:hover { transform: translateY(-2px); filter: brightness(1.02); }
.header-button svg { width: 21px; height: 21px; fill: currentColor; }
.header-call { background: var(--yellow); color: var(--navy-2); }
.header-whatsapp { background: var(--green); color: #fff; }
.mobile-header-actions, .mobile-menu { display: none; }

/* Hero */
.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: var(--navy-2);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(29,91,139,.28), transparent 33%),
    linear-gradient(118deg, #061627 0%, #0a2139 72%, #0c2c4a 100%);
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -58px;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: -1;
  background: linear-gradient(90deg, #0a2139 0%, rgba(10,33,57,0) 100%);
  pointer-events: none;
}
.hero-copy-inner {
  max-width: 650px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 40px 34px max(36px, calc((100vw - 1240px) / 2));
}
.hero-kicker {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(54px, 5.45vw, 78px);
  line-height: .92;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 span { color: var(--yellow); }
.hero-intro {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.42;
}
.hero-benefits {
  max-width: 540px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 18px;
}
.hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 750;
}
.check {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 950;
}
.hero-actions { display: flex; gap: 13px; margin-top: 20px; }
.hero-button {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 21px;
  border-radius: 11px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  transition: transform .2s ease, filter .2s ease;
}
.hero-button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.hero-button svg { width: 33px; height: 33px; fill: currentColor; }
.hero-button span { display: flex; flex-direction: column; line-height: 1.05; }
.hero-button small { font-size: 14px; font-weight: 800; }
.hero-button strong { margin-top: 4px; font-size: 18px; }
.hero-call { min-width: 240px; background: var(--yellow); color: var(--navy-2); }
.hero-whatsapp { min-width: 224px; background: var(--green); color: #fff; }
.hero-whatsapp strong { font-size: 18px; }
.hero-whatsapp small { margin-top: 5px; font-size: 13px; font-weight: 600; }
.tiktok-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.tiktok-link strong { text-decoration: underline; text-underline-offset: 3px; }
.tiktok-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #020207;
  color: #fff;
  font-size: 22px;
  text-shadow: -2px -1px 0 #25f4ee, 2px 1px 0 #fe2c55;
}
.hero-image { position: relative; min-width: 0; overflow: hidden; background: #d8d7d2; }
.hero-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center center; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 90px;
  background: linear-gradient(90deg, rgba(7,26,49,.42), transparent);
  pointer-events: none;
}

/* Shared headings and buttons */
.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow-light { color: #91c9ff; }
h2 {
  margin: 0;
  color: var(--navy-2);
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}
h2 span { color: var(--blue); }
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.02); }
.button-yellow { background: var(--yellow); color: var(--navy-2); }
.button-green { background: var(--green); color: #fff; }
.simple-link { color: var(--blue); font-weight: 850; }
.simple-link span { margin-left: 6px; }

/* Service section */
.services { padding: 30px 0 24px; background: #fff; }
.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
  align-items: end;
  gap: 46px;
  margin-bottom: 20px;
}
.services-heading h2 { font-size: clamp(30px, 3.2vw, 43px); line-height: 1.03; }
.services-heading h2 span { color: var(--blue); }
.services-heading-side {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 20px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.services-heading-side p {
  grid-row: 1 / 3;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.quote-pill {
  min-width: 170px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 950;
}
.services-heading-side small { color: var(--muted); font-size: 10.5px; text-align: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(6,30,56,.09);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(6,30,56,.14); }
.service-photo { height: 142px; overflow: hidden; background: #e9eef3; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-photo img { transform: scale(1.045); }
.service-icon {
  position: absolute;
  top: 119px;
  left: 14px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 5px 14px rgba(6,30,56,.18);
}
.service-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-icon.icon-blue svg,
.service-icon.icon-green svg { fill: currentColor; stroke: none; }
.icon-blue { background: #2580ef; }
.icon-orange { background: var(--orange); }
.icon-brown { background: var(--brown); }
.icon-green { background: var(--green); }
.icon-purple { background: var(--purple); }
.icon-red { background: var(--red); }
.service-body { min-height: 154px; padding: 24px 14px 14px; display: flex; flex-direction: column; }
.service-body h3 { margin: 0; color: var(--navy-2); font-size: 16px; line-height: 1.15; letter-spacing: -.02em; }
.service-body p { margin: 6px 0 10px; color: #374a61; font-size: 12.5px; line-height: 1.36; }
.text-link {
  width: fit-content;
  margin-top: auto;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}
.text-link:hover { border-color: var(--yellow); }

/* Birmingham banner */
.city-banner {
  position: relative;
  min-height: 225px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1b7ecb url('../img/birmingham-skyline.webp') center / cover no-repeat;
  color: #fff;
}
.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,83,151,.98) 0%, rgba(8,102,178,.85) 37%, rgba(8,92,161,.20) 67%, rgba(8,68,123,.08) 100%);
}
.city-content { position: relative; z-index: 2; padding: 24px 0; }
.city-content > div { max-width: 535px; }
.city-kicker { margin: 0 0 5px; font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.city-banner h2 { color: #fff; font-size: clamp(36px, 4vw, 54px); }
.city-banner h2 span { color: var(--yellow); display: block; }
.city-banner p:not(.city-kicker) { max-width: 500px; margin: 7px 0 0; font-size: 14px; line-height: 1.4; }
.city-list { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 14px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 800; }
.city-list li { display: flex; align-items: center; gap: 7px; }
.city-list span { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy-2); font-size: 11px; }

/* About */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 70px; }
.about-media { position: relative; min-width: 0; }
.about-media img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; object-position: 60% center; border-radius: 24px; box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  min-width: 235px;
  padding: 17px 20px;
  border-radius: 15px;
  background: rgba(7,26,49,.92);
  color: #fff;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { color: var(--yellow); font-size: 21px; }
.about-badge span { margin-top: 1px; font-size: 14px; }
.about-copy h2 { margin-top: 3px; }
.about-copy .lead { margin: 23px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.feature-list { display: grid; gap: 14px; margin-top: 25px; }
.feature-list > div { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }
.feature-list > div > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14.5px; }
.feature-list strong { display: block; margin-bottom: 1px; color: var(--navy-2); font-size: 16px; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }

/* Work gallery */
.work { background: #fff; }
.section-heading.centred { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.section-heading.centred p:last-child { max-width: 700px; margin: 17px auto 0; color: var(--muted); font-size: 17px; }
.section-heading.centred a { color: var(--blue); font-weight: 800; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 16px; }
.work-card { position: relative; overflow: hidden; margin: 0; border-radius: 17px; background: #dce4ec; box-shadow: var(--shadow-small); }
.work-card-wide { grid-column: span 2; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover img { transform: scale(1.04); }
.work-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(5,24,44,.88)); }
.work-card figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; color: #fff; }
.work-card figcaption span { display: block; color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.work-card figcaption strong { display: block; margin-top: 3px; font-size: 18px; line-height: 1.15; }

/* Process */
.process { background: var(--navy-2); color: #fff; }
.process-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: 70px; }
.process h2 { color: #fff; }
.process h2 span { color: var(--yellow); }
.process-intro > p:not(.eyebrow) { max-width: 530px; margin: 22px 0 28px; color: rgba(255,255,255,.74); font-size: 17px; }
.process-steps { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.process-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 19px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.06);
}
.process-steps li > span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 15px; background: var(--yellow); color: var(--navy-2); font-size: 20px; font-weight: 950; }
.process-steps strong { display: block; font-size: 18px; }
.process-steps p { margin: 3px 0 0; color: rgba(255,255,255,.7); font-size: 14.5px; }

/* FAQ */
.faq { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: 76px; }
.faq-intro { position: sticky; top: 115px; align-self: start; }
.faq-intro > p:not(.eyebrow) { margin: 20px 0 25px; color: var(--muted); font-size: 17px; }
.accordion { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 5px 17px rgba(6,30,56,.06); }
.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--navy-2);
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}
.faq-item button i { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--blue-soft); }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 13px; height: 2px; background: var(--blue); transition: transform .2s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.is-open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); font-size: 15px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 20px; }

/* Contact */
.contact { background: linear-gradient(135deg, #0a2b4c 0%, #104f86 100%); color: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: center; gap: 68px; }
.contact-copy h2 { color: #fff; }
.contact-copy h2 span { color: var(--yellow); }
.contact-copy > p:not(.eyebrow) { margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 17px; }
.contact-methods { display: grid; gap: 10px; margin-top: 27px; }
.contact-methods > a,
.contact-methods > div { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 13px; background: rgba(255,255,255,.08); }
.method-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--yellow); color: var(--navy-2); font-weight: 950; }
.method-icon.method-green { background: var(--green); color: #fff; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: rgba(255,255,255,.65); font-size: 12px; }
.contact-methods strong { margin-top: 2px; font-size: 16px; }
.quote-form { padding: 28px; border-radius: 20px; background: #fff; color: var(--navy-2); box-shadow: 0 28px 65px rgba(0,0,0,.25); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 17px; }
.form-heading strong { font-size: 24px; }
.form-heading span { padding: 6px 10px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.quote-form label { display: grid; gap: 6px; margin-bottom: 12px; color: var(--navy-2); font-size: 13px; font-weight: 800; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd9e4;
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input, .quote-form select { min-height: 49px; padding: 0 13px; }
.quote-form textarea { resize: vertical; min-height: 125px; padding: 12px 13px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,119,223,.12); }
.form-submit { width: 100%; min-height: 57px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 11px; background: var(--green); color: #fff; cursor: pointer; font-weight: 950; }
.form-submit:hover { background: var(--green-dark); }
.form-submit svg { width: 25px; fill: currentColor; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11.5px; text-align: center; }

/* Footer */
.site-footer { padding: 58px 0 25px; background: #061627; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 70px; }
.footer-brand img { width: 285px; }
.footer-brand p { max-width: 430px; margin: 17px 0 0; color: rgba(255,255,255,.67); font-size: 14px; }
.footer-grid h2 { margin: 0 0 13px; color: var(--yellow); font-family: var(--font); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.48); font-size: 11.5px; }
.mobile-sticky { display: none; }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #70b8ff; outline-offset: 3px; }

/* Responsive */
@media (max-width: 1180px) {
  .header-row { grid-template-columns: 240px 1fr auto; gap: 16px; }
  .brand { width: 230px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 13px; }
  .header-button { padding-inline: 14px; font-size: 13px; }
  .header-button svg { width: 19px; }
  .hero-copy-inner { padding-right: 28px; }
  .hero h1 { font-size: clamp(50px, 5.4vw, 67px); }
  .hero-button { min-width: 0; padding-inline: 17px; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .service-photo { height: 190px; }
  .service-icon { top: 166px; }
  .service-body { min-height: 142px; }
  .service-body h3 { font-size: 18px; }
  .service-body p { font-size: 14px; }
  .text-link { font-size: 13px; }
}

@media (max-width: 1020px) {
  :root { --container: min(100% - 38px, 920px); }
  .desktop-nav, .header-actions { display: none; }
  .header-row { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand { width: 245px; }
  .mobile-header-actions { display: flex; align-items: center; gap: 10px; }
  .mobile-call, .menu-toggle { width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 12px; }
  .mobile-call { background: var(--yellow); color: var(--navy-2); }
  .mobile-call svg { width: 22px; fill: currentColor; }
  .menu-toggle { position: relative; padding: 0; background: var(--navy); cursor: pointer; }
  .menu-toggle span { position: absolute; width: 22px; height: 2px; border-radius: 99px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(3) { transform: translateY(7px); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 74px 0 auto;
    z-index: 90;
    display: block;
    padding: 22px max(20px, calc((100vw - 920px) / 2));
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(6,30,56,.18);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mobile-menu nav a { padding: 13px 12px; border-radius: 9px; background: var(--off-white); color: var(--navy-2); font-weight: 850; text-align: center; }
  .mobile-menu-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy-inner { max-width: none; min-height: auto; padding: 52px max(28px, calc((100vw - 920px) / 2)) 42px; }
  .hero-copy::after { display: none; }
  .hero h1 { max-width: 750px; font-size: clamp(58px, 9vw, 84px); }
  .hero-intro { max-width: 740px; }
  .hero-benefits { max-width: 620px; }
  .hero-image { min-height: 480px; }
  .hero-image img { min-height: 480px; object-position: 55% center; }
  .hero-image::after { inset: 0; width: auto; background: linear-gradient(180deg, rgba(7,26,49,.13), transparent 35%); }

  .services-heading { grid-template-columns: 1fr; gap: 17px; }
  .services-heading-side { grid-template-columns: 1fr auto; padding-left: 0; border-left: 0; }
  .about-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media img { aspect-ratio: 16 / 10; }
  .faq-intro { position: static; }
  .contact-grid { max-width: 760px; }
  .contact-copy { text-align: center; }
  .contact-methods { max-width: 530px; margin-inline: auto; text-align: left; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 30px); }
  body { font-size: 16px; padding-bottom: 66px; }
  .section { padding: 72px 0; }
  .header-row { min-height: 68px; }
  .brand { width: 205px; }
  .mobile-call, .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { inset-top: 68px; top: 68px; padding: 18px 15px; }
  .mobile-menu nav { grid-template-columns: 1fr 1fr; }
  .mobile-menu-buttons { grid-template-columns: 1fr; }

  .hero-copy-inner { padding: 42px 20px 35px; }
  .hero-kicker { font-size: 12px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-intro { font-size: 17px; }
  .hero-benefits { grid-template-columns: 1fr 1fr; gap: 10px 13px; }
  .hero-benefits > div { font-size: 12.5px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-button { min-width: 0; min-height: 64px; padding: 0 14px; }
  .hero-button svg { width: 27px; }
  .hero-button strong, .hero-whatsapp strong { font-size: 15px; }
  .hero-button small, .hero-whatsapp small { font-size: 11.5px; }
  .tiktok-link { font-size: 12.5px; }
  .hero-image, .hero-image img { min-height: 390px; }
  .hero-image img { object-position: 49% center; }

  h2 { font-size: clamp(36px, 11vw, 50px); }
  .services { padding: 26px 0 22px; }
  .services-heading h2 { font-size: 33px; }
  .services-heading-side { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .services-heading-side p { grid-row: auto; }
  .quote-pill { width: 100%; }
  .services-heading-side small { text-align: center; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .service-photo { height: 150px; }
  .service-icon { top: 127px; width: 40px; height: 40px; }
  .service-body { min-height: 168px; padding: 25px 13px 13px; }
  .service-body h3 { font-size: 16px; }
  .service-body p { font-size: 12.5px; }
  .text-link { font-size: 12px; }

  .city-banner { min-height: 315px; background-position: 58% center; }
  .city-overlay { background: linear-gradient(90deg, rgba(8,83,151,.98), rgba(8,83,151,.72) 70%, rgba(8,83,151,.25)); }
  .city-content > div { max-width: 470px; }
  .city-list { gap: 9px 18px; }

  .about-grid { gap: 37px; }
  .about-media img { aspect-ratio: 4 / 3; object-position: 58% center; }
  .about-badge { left: 15px; right: 15px; bottom: 15px; min-width: 0; }
  .about-copy .lead { font-size: 16px; }
  .about-actions { align-items: stretch; flex-direction: column; }
  .about-actions .button { width: 100%; }
  .simple-link { text-align: center; }

  .section-heading.centred { margin-bottom: 30px; }
  .section-heading.centred p:last-child { font-size: 15px; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 11px; }
  .work-card-wide { grid-column: span 2; }
  .work-card figcaption { left: 13px; right: 13px; bottom: 12px; }
  .work-card figcaption strong { font-size: 15px; }

  .process-steps li { grid-template-columns: 56px 1fr; padding: 17px; }
  .process-steps li > span { width: 52px; height: 52px; font-size: 17px; }
  .process-steps strong { font-size: 16px; }
  .process-steps p { font-size: 13px; }
  .faq-item button { min-height: 66px; font-size: 15px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 20px 16px; border-radius: 16px; }
  .form-heading strong { font-size: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .mobile-sticky {
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(6,30,56,.13);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; color: var(--navy-2); font-size: 14px; font-weight: 900; }
  .mobile-sticky a:first-child { background: var(--yellow); margin-right: 5px; }
  .mobile-sticky a:last-child { background: var(--green); color: #fff; margin-left: 5px; }
}

@media (max-width: 480px) {
  :root { --container: calc(100vw - 24px); }
  .brand { width: 174px; }
  .mobile-call { display: none; }
  .hero-copy-inner { padding: 37px 15px 31px; }
  .hero h1 { font-size: clamp(43px, 15.5vw, 59px); }
  .hero-intro { font-size: 15.5px; }
  .hero-benefits { grid-template-columns: 1fr; gap: 9px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-button { justify-content: center; }
  .tiktok-link { flex-wrap: wrap; }
  .hero-image, .hero-image img { min-height: 330px; }
  .hero-image img { object-position: 47% center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-photo { height: 210px; }
  .service-icon { top: 186px; }
  .service-body { min-height: auto; }
  .services-heading h2 { font-size: 31px; }
  .city-banner { min-height: 355px; background-position: 58% center; }
  .city-list { display: grid; grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .work-card-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Reference-layout refinements */
@media (min-width: 1181px) {
  .header-row { grid-template-columns: 315px 1fr auto; }
  .brand { width: 300px; }
  .hero { grid-template-columns: minmax(0, 49%) minmax(0, 51%); }
  .hero-copy-inner { max-width: 700px; }
  .hero h1 { font-size: clamp(56px, 4.8vw, 70px); letter-spacing: -.06em; }
  .service-photo { height: 124px; }
  .service-icon { top: 101px; width: 41px; height: 41px; }
  .service-body { min-height: 130px; padding: 22px 12px 10px; }
  .service-body h3 { font-size: 15px; }
  .service-body p { margin: 5px 0 8px; font-size: 11.5px; line-height: 1.27; }
  .text-link { font-size: 11.5px; }
  .services-heading { margin-bottom: 16px; }
  .services { padding-bottom: 18px; }
}
