:root {
  --navy: #17357d;
  --navy-deep: #0d235b;
  --blue: #2f8ff4;
  --red: #f04442;
  --ink: #12213f;
  --muted: #5f6c84;
  --paper: #ffffff;
  --soft: #f3f7fc;
  --line: #dce5f1;
  --green: #15966a;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(13, 35, 91, 0.12);
}

/* Cookie choice and analytics controls */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px;
  color: #fff;
  background: #102b63;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 17, 52, 0.32);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy {
  max-width: 650px;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.25rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-banner .button {
  min-height: 44px;
  white-space: nowrap;
}

.cookie-banner .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.cookie-settings {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 12px;
    bottom: 72px;
    left: 12px;
    display: block;
    padding: 18px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-deep);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.topbar {
  color: #eaf3ff;
  background: var(--navy-deep);
  font-size: 0.87rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.topbar p {
  color: #c9d9f3;
}

.topbar__links {
  display: flex;
  gap: 22px;
}

.topbar a {
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 241, 0.88);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 185px;
  text-decoration: none;
}

.brand__logo {
  width: 165px;
  height: auto;
}

.brand__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 8px 18px rgba(47, 143, 244, 0.25);
}

.brand__icon svg {
  width: 25px;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.055em;
}

.brand__copy span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 850;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a,
.nav-dropdown > summary {
  padding: 11px 13px;
  color: #26385b;
  border-radius: 10px;
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.site-nav > .nav-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.new-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(240, 68, 66, 0.22);
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  margin-left: 7px;
  content: "⌄";
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  color: var(--navy);
  background: var(--soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: 245px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-dropdown__menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-dropdown__menu a:hover {
  color: var(--navy);
  background: var(--soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: white !important;
  background: var(--red) !important;
  border-radius: 999px !important;
  box-shadow: 0 9px 20px rgba(240, 68, 66, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  background: var(--soft);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 102px) 0 72px;
  background:
    radial-gradient(circle at 8% 15%, rgba(47, 143, 244, 0.16), transparent 25%),
    linear-gradient(140deg, #f7fbff 0%, #ffffff 58%, #eef5ff 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: repeating-linear-gradient(45deg, transparent 0 13px, rgba(23, 53, 125, 0.035) 13px 15px);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.hero h1 {
  max-width: 760px;
}

.hero h1 span {
  color: var(--blue);
}

.hero .lead {
  max-width: 670px;
  margin-top: 22px;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: white;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 35, 91, 0.18);
}

.button--red {
  background: var(--red);
  border-color: var(--red);
}

.button--ghost {
  color: var(--navy);
  background: transparent;
  border-color: #b9c8dc;
}

.hero__visual {
  position: relative;
}

.aircon-hero {
  padding-top: clamp(48px, 6vw, 78px);
}

.aircon-hero .breadcrumbs {
  margin-bottom: 24px;
  color: var(--muted);
}

.aircon-hero__visual {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.aircon-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aircon-hero__visual figcaption {
  padding: 13px 16px 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.aircon-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.aircon-highlights span {
  padding: 7px 11px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.aircon-brands {
  grid-template-columns: repeat(3, 1fr);
}

.brand-banner {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: white;
  border: 8px solid white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero__badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 285px;
  padding: 14px 17px;
  color: white;
  background: var(--navy-deep);
  border: 4px solid white;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(13, 35, 91, 0.24);
}

.hero__badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: white;
  border-radius: 7px;
}

.hero__badge strong,
.hero__badge small {
  display: block;
}

.hero__badge small {
  color: #bdd3f4;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -30px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(13, 35, 91, 0.09);
}

.trust-item {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: clamp(66px, 8vw, 104px) 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: white;
  background: var(--navy-deep);
}

.section--navy h2,
.section--navy h3 {
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading > div {
  max-width: 680px;
}

.section-heading .lead {
  max-width: 470px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 35, 91, 0.06);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #b5c8e7;
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 14px;
}

.service-card__icon svg {
  width: 25px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card__link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}

.split__image-wrap {
  position: relative;
}

.split__image {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split__image--character {
  height: 580px;
  padding: 22px;
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, #eef5ff);
}

.split__note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 235px;
  padding: 20px;
  color: white;
  background: var(--red);
  border: 5px solid white;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.split__note strong {
  display: block;
  font-size: 1.15rem;
}

.split__content .lead {
  margin-top: 20px;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 34px;
  color: #3c4d68;
}

.tick-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  content: "✓";
}

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

.quote-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 35, 91, 0.06);
}

.stars {
  color: #f3a712;
  letter-spacing: 0.1em;
}

.quote-card blockquote {
  margin: 17px 0 22px;
  color: #34445e;
}

.quote-card cite {
  color: var(--navy-deep);
  font-style: normal;
  font-weight: 800;
}

.area-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px;
  background: #eaf3ff;
  border: 1px solid #cfe0f5;
  border-radius: var(--radius);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.area-list span {
  padding: 7px 12px;
  color: var(--navy);
  background: white;
  border: 1px solid #cad9ed;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.cta-band {
  padding: 48px 0;
  color: white;
  background: linear-gradient(115deg, var(--navy), var(--navy-deep));
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.cta-band p {
  margin-top: 8px;
  color: #c8daf6;
}

.cta-band .button-row {
  flex-shrink: 0;
  margin: 0;
}

.page-hero {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy-deep), var(--navy));
}

.page-hero::after {
  position: absolute;
  top: -100px;
  right: -30px;
  width: 430px;
  height: 430px;
  background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.055) 16px 18px);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: #b8cef1;
  font-size: 0.85rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.page-hero h1 {
  max-width: 810px;
  color: white;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.page-hero p {
  max-width: 710px;
  margin-top: 18px;
  color: #d4e2f7;
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  align-items: start;
  gap: 52px;
}

.prose > * + * {
  margin-top: 20px;
}

.prose h2 {
  margin-top: 38px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.prose p,
.prose li {
  color: #43516a;
}

.prose ul {
  padding-left: 22px;
}

.side-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-card p {
  margin-top: 12px;
  color: var(--muted);
}

.side-card .button {
  width: 100%;
  margin-top: 18px;
}

.image-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}

.image-card__copy {
  padding: 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mini-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.safety-box {
  padding: 26px;
  color: #5b2220;
  background: #fff2f1;
  border: 1px solid #f5c3c1;
  border-left: 5px solid var(--red);
  border-radius: 14px;
}

.safety-box h3 {
  color: #802b29;
}

.safety-box p {
  margin-top: 10px;
  color: #6f3533;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery img:first-child {
  height: 100%;
  min-height: 280px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.logo-cloud span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 10px;
  color: var(--navy);
  background: var(--soft);
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 850;
  text-align: center;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-list .quote-card {
  min-height: 245px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-form {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 35, 91, 0.06);
}

.contact-card p,
.contact-card address {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #31415c;
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cfd9e6;
  border-radius: 10px;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(47, 143, 244, 0.15);
  border-color: var(--blue);
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  color: #38506e;
  background: var(--soft);
  border-radius: 10px;
}

.site-footer {
  padding: 54px 0 28px;
  color: #d6e1f2;
  background: #091a43;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 44px;
}

.site-footer .brand__copy strong,
.site-footer .brand__copy span {
  color: white;
}

.site-footer .brand__logo {
  width: 185px;
  padding: 5px 8px;
  background: white;
  border-radius: 12px;
}

.footer-blurb {
  max-width: 330px;
  margin-top: 18px;
  color: #9fb2d2;
  font-size: 0.9rem;
}

.site-footer h3 {
  margin-bottom: 15px;
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  color: #b9cae4;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 45px;
  padding-top: 22px;
  color: #8196b9;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom__legal {
  max-width: 860px;
  text-align: left;
}

.footer-bottom__credit {
  flex: 0 0 auto;
  margin-left: auto;
  color: #b9cae4;
  text-align: right;
  white-space: nowrap;
}

.mobile-call {
  display: none;
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    display: block;
  }

  .nav-dropdown__menu {
    position: static;
    width: auto;
    margin: 5px 8px 8px;
    border: 0;
    box-shadow: none;
  }

  .hero__grid,
  .split,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .service-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .area-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-list {
    justify-content: flex-start;
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar p,
  .topbar__links a:first-child {
    display: none;
  }

  .topbar .container {
    justify-content: center;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
    right: 14px;
    left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 142px;
  }

  .brand__copy strong {
    font-size: 0.78rem;
  }

  .brand__copy span {
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero__badge {
    left: 10px;
    bottom: -30px;
  }

  .trust-strip {
    margin-top: 5px;
    padding-top: 48px;
  }

  .trust-strip__inner,
  .service-grid,
  .quote-grid,
  .review-list,
  .mini-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .split__image {
    min-height: 340px;
  }

  .split__image--character {
    height: 500px;
    min-height: 0;
    padding: 10px;
  }

  .split__note {
    right: 10px;
  }

  .cta-band__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom__credit {
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }

  .cta-band .button-row {
    width: 100%;
  }

  .cta-band .button {
    flex: 1;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    height: 250px;
    min-height: 0;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .field--full {
    grid-column: auto;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: white;
    background: var(--red);
    border: 3px solid white;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
