:root {
  --blue-900: #002050;
  --blue-800: #003070;
  --blue-700: #004090;
  --blue-600: #0050a0;
  --blue-500: #0060c0;
  --orange-700: #c04010;
  --orange-600: #f08010;
  --orange-500: #f0a020;
  --neutral-100: #ffffff;
  --neutral-200: #f0f0f0;
  --neutral-900: #202020;

  --font-heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", "Segoe UI", Tahoma, sans-serif;

  --site-max: 1680px;
  --content-gutter: clamp(0.85rem, 1.6vw, 1.5rem);
  --control-height: 3rem;
  --control-radius: 8px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-900);
  background: var(--neutral-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.55rem, 2.8vw, 2.25rem); }
h4 { font-size: clamp(1.3rem, 2.1vw, 1.75rem); }
h5 { font-size: clamp(1.12rem, 1.6vw, 1.35rem); }
h6 { font-size: clamp(1rem, 1.25vw, 1.15rem); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

p {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-weight: 500;
}

a {
  color: var(--blue-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}

.container {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--site-max));
  margin-inline: auto;
}

.section {
  padding: clamp(2.85rem, 5vw, 4.25rem) 0;
  scroll-margin-top: 0.75rem;
}

.section h2 {
  margin-top: 0;
}

.section-alt {
  background: linear-gradient(180deg, #f6f8fc, #edf2f8);
}

main > .section {
  position: relative;
}

main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--site-max));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--section-divider, rgba(0, 48, 112, 0.22)), transparent);
}

@keyframes ctaShimmer {
  0% {
    transform: translateX(-125%);
  }
  60%,
  100% {
    transform: translateX(155%);
  }
}

html.js [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0ms;
  will-change: auto;
}

html.js [data-reveal][data-reveal-group="heading"] {
  transform: none;
}

html.js [data-reveal][data-reveal-group="copy"] {
  transform: none;
}

html.js [data-reveal][data-reveal-group="media"] {
  transform: none;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #9a4100, #7f3400);
  color: var(--neutral-100);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
  font-family: var(--font-heading);
}

.site-banner-slot {
  width: 100%;
  padding: 0;
  background: linear-gradient(180deg, #003a88, #002868);
  display: flex;
  justify-content: center;
}

.site-banner-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.site-nav .container,
.site-footer .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.52rem, 0.95vw, 0.76rem) 0;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(113, 46, 0, 0.75);
  border-radius: 6px;
  background: var(--orange-600);
  color: var(--neutral-100);
  padding: 0.48rem 0.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--orange-700);
  border-color: rgba(95, 36, 0, 0.85);
  transform: translateY(-1px);
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-inline: auto;
  gap: clamp(0.85rem, 2.15vw, 2rem);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(6.2rem, 8.5vw, 7.4rem);
  padding: 0.5rem 0.98rem;
  border: 1px solid rgba(113, 46, 0, 0.75);
  border-radius: 8px;
  background: var(--orange-600);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(0, 0, 0, 0.22);
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--neutral-100);
  background: var(--orange-700);
  border-color: rgba(95, 36, 0, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 3px 8px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
  color: var(--neutral-100);
  isolation: isolate;
  min-height: clamp(23rem, 52svh, 34rem);
}

.hero.section {
  padding: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  background: linear-gradient(105deg, rgba(0, 28, 71, 0.78) 8%, rgba(0, 28, 71, 0.46) 55%, rgba(0, 24, 60, 0.66));
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-items: start;
  padding: clamp(1.45rem, 2.5vw, 2.25rem) 0;
}

.hero-main {
  max-width: 72ch;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: #f7ad30;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem 0.76rem;
  margin: 0 0 0.58rem;
  padding: 0;
}

.hero-services li {
  display: inline-flex;
  align-items: center;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7ad30;
}

.hero-services li + li::before {
  content: "|";
  margin-right: 0.62rem;
  color: #f7ad30;
}

.hero h1 {
  margin-bottom: 0.55rem;
  max-width: 12em;
  font-size: 3.35rem;
  line-height: 0.94;
}

.hero-main > p {
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.75vw, 1.26rem);
  line-height: 1.52;
}

.hero-main > .hero-subhead {
  margin: 0 0 0.8rem;
  max-width: 34ch;
  color: #f7ad30;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  min-height: var(--control-height);
  padding: 0.78rem 1.35rem;
  font-size: 0.98rem;
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease;
}

.btn-primary {
  z-index: 0;
  background: var(--orange-600);
  color: var(--neutral-100);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.35) 52%, transparent 78%);
  transform: translateX(-125%);
  animation: ctaShimmer 3.9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-700);
  color: var(--neutral-100);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--neutral-100);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  color: var(--neutral-100);
  background: rgba(255, 255, 255, 0.26);
}

.hero-ctas .btn-primary {
  min-width: clamp(10.2rem, 17vw, 13.8rem);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  letter-spacing: 0;
}

.hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
}

.services-grid,
.reviews-grid {
  display: grid;
  gap: var(--space-3);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  min-height: clamp(24rem, 34vw, 30rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.service-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.service-media {
  width: 100%;
  margin: 0 0 var(--space-3);
  aspect-ratio: 1 / 1;
  border: 1px solid #d8d8d8;
  background: linear-gradient(180deg, #163f74, #0a284c);
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p {
  margin-bottom: 0.8rem;
  max-width: 34ch;
}

.card {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: var(--space-4);
  background: var(--neutral-100);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

#services .service-card {
  background: #e67e22;
  border-color: #d86f14;
  color: var(--neutral-100);
}

#services .service-media {
  border-color: rgba(255, 255, 255, 0.36);
}

#services .service-card .text-link {
  color: var(--neutral-100);
}

.section-intro {
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 1.35rem;
}

.text-link {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.area-grid,
.service-link-grid,
.depth-grid,
.area-context-grid {
  display: grid;
  gap: var(--space-3);
}

.area-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.area-card {
  min-height: 12rem;
  text-align: left;
}

.area-card h3 {
  margin-top: 0;
}

.area-card p {
  color: #384150;
}

.area-card p + p {
  font-size: 0.94rem;
}

.detail-hero {
  background: linear-gradient(180deg, #03275f, #071d3f);
  color: var(--neutral-100);
}

.detail-hero-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.detail-copy {
  max-width: 70ch;
}

.detail-copy h1 {
  margin: 0 0 0.75rem;
  line-height: 1;
}

.detail-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.detail-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #0b2d5f;
}

.detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-panel {
  display: grid;
  gap: var(--space-4);
  align-items: start;
  text-align: left;
}

.detail-list,
.town-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
}

.detail-list li,
.town-list li {
  border: 1px solid #cbd7e6;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: #fff;
  font-weight: 700;
}

.depth-grid,
.area-context-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.depth-card h2,
.area-context-grid h2 {
  margin-top: 0;
}

.depth-card .detail-list li {
  background: #f7f9fd;
}

.process-section .container {
  text-align: center;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
  text-align: left;
}

.process-list li {
  min-height: 8rem;
  border: 1px solid #cbd7e6;
  border-radius: 8px;
  padding: var(--space-3);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-weight: 800;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--blue-800);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.area-town-panel {
  background: #fff;
  color: var(--neutral-900);
}

.area-town-panel h2 {
  margin-top: 0;
}

.town-list {
  display: grid;
  gap: 0.55rem;
}

.service-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.service-link-card {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-800);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

#services .container,
#faq .container,
#service-areas .container,
#reviews .container,
#contact .container {
  text-align: center;
}

#reviews .container {
  background: var(--orange-600);
  border-radius: 14px;
  padding: clamp(1.15rem, 2.2vw, 1.9rem);
}

#reviews h2 {
  color: var(--neutral-100);
}

#reviews .card {
  background: var(--neutral-100);
  color: var(--neutral-900);
}

.faq-section {
  --section-divider: rgba(0, 48, 112, 0.26);
  background:
    radial-gradient(120% 140% at 50% -16%, rgba(11, 77, 168, 0.13), transparent 52%),
    linear-gradient(180deg, #f9fbff, #edf3fb);
}

.faq-list {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  text-align: left;
  border-color: #ced8e8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.faq-item.card:hover,
.faq-item.card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  letter-spacing: 0;
  color: #0d2d59;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #0f376e;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding-top: 0.72rem;
}

.faq-answer p {
  margin: 0;
  color: #2b2f38;
  max-width: 72ch;
}

.about-section {
  --section-divider: rgba(255, 255, 255, 0.3);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(12, 77, 169, 0.35), transparent 52%),
    linear-gradient(175deg, rgba(0, 51, 121, 0.97), rgba(0, 31, 74, 0.97));
  color: var(--neutral-100);
}

.about-shell {
  display: block;
  width: 100%;
  margin-inline: auto;
}

.about-intro {
  max-width: 76ch;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(0.9rem, 2vw, 1.6rem);
}

.about-intro h2 {
  margin-bottom: 0.85rem;
  letter-spacing: 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.about-intro p {
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.45vw, 1.19rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.96);
}

.about-intro p + p {
  margin-top: 0.95rem;
}

.reviewer {
  margin-bottom: 0;
  font-weight: 700;
}

.contact-shell {
  max-width: 680px;
  margin-inline: auto;
  text-align: left;
}

.contact-status {
  max-width: 44ch;
  margin: 0 auto var(--space-3);
  padding: 0.75rem 0.95rem;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  text-align: left;
}

.contact-status--success {
  color: #0f4f1d;
  background: #dbf6e0;
  border-color: #7bc18a;
}

.contact-status--error {
  color: #6e2c00;
  background: #ffe8dc;
  border-color: #d58b63;
}

.field-row {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

#contact .field-row {
  justify-items: stretch;
}

.field-row--honeypot {
  position: absolute;
  left: -9999px;
}

#contact label {
  text-align: left;
  font-weight: 600;
}

#contact input,
#contact select,
#contact textarea {
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  min-height: var(--control-height);
  padding: 0.78rem 0.9rem;
  border: 1px solid #b6b6b6;
  border-radius: var(--control-radius);
  font: inherit;
  background: var(--neutral-100);
  color: inherit;
}

textarea {
  resize: vertical;
  min-height: 8.6rem;
}

.site-footer {
  background: linear-gradient(180deg, #00255f, #001b46);
  color: var(--neutral-100);
  padding: var(--space-4) 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-inline: clamp(0.5rem, 1.2vw, 1rem);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--orange-500);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer a {
  color: var(--orange-500);
}

.site-version {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-call-bar {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: var(--space-3);
  z-index: 1400;
  width: min(calc(100% - (var(--content-gutter) * 2)), 920px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3);
  border: 1px solid #cbd7e6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

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

.cookie-banner h2 {
  margin: 0 0 0.2rem;
  color: #0d2d59;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cookie-banner p {
  margin: 0;
  color: #2b2f38;
  font-size: 0.94rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2);
}

.cookie-banner .btn {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
}

.cookie-banner .btn-secondary {
  border-color: #b8c6d8;
  background: #f3f6fa;
  color: var(--blue-800);
}

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

  .btn-primary::before {
    animation: none;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card {
    transition: none;
  }

  .hero-slide {
    transition: none;
  }
}

@media (min-width: 768px) {
  .detail-hero-grid,
  .detail-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  }

  .hero-services li {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 5.25rem;
  }

  .hero-main > .hero-subhead {
    margin-bottom: 0.95rem;
    font-size: 2rem;
  }

  .hero-main > p {
    font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 4.7rem;
  }

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

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  html.js .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    min-width: 7.5rem;
    padding: 0.72rem 1.25rem;
    font-size: 1.04rem;
    letter-spacing: 0;
  }

  html.js .nav-menu {
    display: none;
    order: 4;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-inline: 0;
    gap: var(--space-2);
    padding: var(--space-2) 0;
  }

  html.js .nav-menu a {
    min-width: 10.6rem;
    padding: 0.62rem 1.3rem;
    justify-content: center;
    margin-inline: auto;
  }

  html.js .nav-menu[aria-hidden="false"] {
    display: flex;
  }

  .hero {
    min-height: clamp(22rem, 56svh, 28rem);
  }

  .mobile-call-bar {
    display: flex;
    left: var(--space-3);
    right: var(--space-3);
    bottom: 0.75rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 4.45rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner .btn {
    flex: 1 1 10rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (min-width: 480px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .nav-menu {
    gap: clamp(0.55rem, 1.2vw, 1rem);
  }

  .nav-menu a {
    min-width: clamp(5.35rem, 8.6vw, 6.45rem);
    padding: 0.56rem 0.72rem;
    font-size: 0.97rem;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    gap: clamp(0.8rem, 1.8vw, 1.45rem);
  }

  .nav-menu a {
    min-width: clamp(6.5rem, 8vw, 7.8rem);
    padding: 0.64rem 1.15rem;
    font-size: 1.04rem;
  }

  .section {
    padding: clamp(3rem, 4.2vw, 4.1rem) 0;
  }
}
