:root {
  --bg: #f1f7fb;
  --surface: #f8fcff;
  --surface-strong: #ffffff;
  --text: #223648;
  --muted: #5f7488;
  --line: #d4e3ef;
  --accent: #6e9ec4;
  --accent-dark: #35597a;
  --max-width: 1120px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #dff0fb 0%, #eef7fc 18%, #f7fbfe 42%, #ffffff 100%);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(135deg, rgba(10, 25, 39, 0.98) 0%, rgba(20, 45, 67, 0.97) 36%, rgba(31, 60, 86, 0.96) 62%, rgba(13, 31, 47, 0.98) 100%),
    radial-gradient(circle at 12% 14%, rgba(138, 181, 214, 0.12), transparent 36%),
    radial-gradient(circle at 86% -8%, rgba(72, 118, 158, 0.15), transparent 34%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 4.6rem;
  height: auto;
  flex: 0 0 4.6rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Libre Baskerville", serif;
  font-size: 1.44rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #f4f9fd;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.brand-copy span {
  color: rgba(191, 217, 239, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.site-nav a:not(.button) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.2rem 0;
  color: rgba(235, 244, 250, 0.86);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a.is-active:not(.button) {
  color: #ffffff;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(130, 175, 211, 0.15), rgba(217, 236, 251, 0.95), rgba(130, 175, 211, 0.15));
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover:not(.button),
.site-nav a:focus-visible:not(.button) {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav a:hover:not(.button)::after,
.site-nav a:focus-visible:not(.button)::after,
.site-nav a.is-active:not(.button)::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: #f4f9fd;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(53, 89, 122, 0.16);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(53, 89, 122, 0.2);
}

.button-small {
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  padding-block: 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  gap: 0.55rem;
}

.button-small:hover,
.button-small:focus-visible {
  background: #244562;
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 0 0 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28rem;
  background:
    linear-gradient(180deg, rgba(126, 184, 224, 0.18), rgba(126, 184, 224, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 252, 255, 0.88) 0%,
    rgba(248, 252, 255, 0.8) 22%,
    rgba(255, 255, 255, 0.34) 58%,
    rgba(249, 252, 255, 0.52) 100%
  );
  box-shadow: 0 30px 70px rgba(53, 89, 122, 0.14);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 3.35rem 2.5rem 2.1rem max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
  margin-right: -5.75rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 -6.5rem 0 -3rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(250, 252, 255, 0.9) 22%,
    rgba(255, 255, 255, 0.78) 58%,
    rgba(250, 252, 255, 0.72) 78%,
    rgba(249, 252, 255, 0.48) 100%
  );
  clip-path: polygon(0 0, 85% 0, 100% 52%, 86% 100%, 0 100%);
  box-shadow: 0 20px 50px rgba(53, 89, 122, 0.08);
  z-index: -2;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0 -2rem 0 auto;
  width: 18rem;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.66) 0%,
    rgba(246, 250, 254, 0.44) 22%,
    rgba(255, 255, 255, 0.12) 56%,
    rgba(248, 252, 255, 0.08) 78%,
    rgba(248, 252, 255, 0.03) 100%
  );
  clip-path: polygon(18% 0, 100% 0, 62% 100%, 0 100%);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-divider {
  display: inline-flex;
  width: 3.5rem;
  height: 2px;
  margin-bottom: 1.35rem;
  background: linear-gradient(90deg, rgba(110, 158, 196, 0.95), rgba(110, 158, 196, 0.18));
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.3;
}

h3 {
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero-text,
.intro-copy p,
.service-item p,
.contact-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero h1 {
  font-size: clamp(1.95rem, 3.8vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--accent-dark);
}

.hero-button {
  gap: 0.65rem;
  min-height: 3.1rem;
  padding-inline: 1rem;
  font-size: 0.96rem;
  border-radius: 14px;
  box-shadow: none;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #244562;
  box-shadow: none;
}

.button-icon,
.button-arrow,
.hero-phone-icon,
.trust-icon,
.hero-badge-icon,
.hero-highlight-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.button-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.button-icon-quote {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h3'/%3E%3Cpath d='M8 18h6'/%3E%3C/svg%3E");
}

.button-icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.button-arrow {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

a[href^="tel:"]::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--accent-dark);
  font-size: 0.95rem;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 1rem;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible {
  color: var(--accent-dark);
  transform: translateX(2px);
}

a[href^="tel:"]:hover::before,
a[href^="tel:"]:focus-visible::before {
  transform: translateX(1px) scale(1.08);
  filter: brightness(1.08);
}

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.mail-link::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 1rem;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.mail-link:hover,
.mail-link:focus-visible {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.mail-link:hover::before,
.mail-link:focus-visible::before {
  transform: translateX(1px) scale(1.08);
  filter: brightness(1.08);
}

.address-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.address-line::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M9 12h.01'/%3E%3Cpath d='M9 15h.01'/%3E%3Cpath d='M15 9h.01'/%3E%3Cpath d='M15 12h.01'/%3E%3Cpath d='M15 15h.01'/%3E%3Cpath d='M11 21v-4h2v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 1rem;
}

.phone-landline::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.33 1.76.63 2.6a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.48-1.29a2 2 0 0 1 2.11-.45c.84.3 1.71.51 2.6.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.phone-mobile::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2' ry='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

a.hero-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--text);
}

a.hero-phone-card::before {
  display: none;
  content: none;
  width: 0;
  height: 0;
  flex: 0 0 0;
}

.hero-phone-icon {
  width: 3.15rem;
  height: 3.15rem;
  flex: 0 0 3.15rem;
  border-radius: 50%;
  background-color: rgba(217, 233, 247, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203446' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.33 1.76.63 2.6a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.48-1.29a2 2 0 0 1 2.11-.45c.84.3 1.71.51 2.6.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: background-color 180ms ease, filter 180ms ease;
}

a.hero-phone-card:hover .hero-phone-icon,
a.hero-phone-card:focus-visible .hero-phone-icon {
  background-color: rgba(144, 183, 214, 0.98);
  filter: brightness(0.96);
}

.hero-phone-copy {
  display: grid;
  gap: 0.15rem;
  line-height: 1.2;
}

.hero-phone-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-phone-copy strong {
  font-size: 0.92rem;
  color: var(--accent-dark);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-icon-shield {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v6c0 5 3.4 8.4 7 9 3.6-.6 7-4 7-9V6l-7-3Z'/%3E%3Cpath d='m9.5 12 1.7 1.7 3.6-3.9'/%3E%3C/svg%3E");
}

.trust-icon-craft {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v4'/%3E%3Cpath d='m17.66 5.34-2.83 2.83'/%3E%3Cpath d='M21 12h-4'/%3E%3Cpath d='m17.66 18.66-2.83-2.83'/%3E%3Cpath d='M12 21v-4'/%3E%3Cpath d='m8.17 15.83-2.83 2.83'/%3E%3Cpath d='M3 12h4'/%3E%3Cpath d='m8.17 8.17-2.83-2.83'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E");
}

.trust-icon-local {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335597a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.25 6-11a6 6 0 1 0-12 0c0 5.75 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 26% 100%, 0 47%, 8% 0);
}

.hero-badge {
  position: absolute;
  right: 2.05rem;
  bottom: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  max-width: 18.5rem;
  padding: 1rem 1.05rem;
  border-radius: 0.85rem;
  background:
    linear-gradient(152deg, rgba(10, 26, 40, 0.9) 0%, rgba(21, 47, 69, 0.86) 40%, rgba(34, 65, 92, 0.82) 66%, rgba(13, 30, 46, 0.9) 100%),
    radial-gradient(circle at 18% 16%, rgba(151, 193, 223, 0.13), transparent 36%),
    radial-gradient(circle at 86% 82%, rgba(74, 116, 151, 0.12), transparent 38%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(8, 29, 51, 0.34);
}

.hero-badge-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fc1e4' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8.8' r='5.1'/%3E%3Ccircle cx='12' cy='8.8' r='2.4' fill='%2382afd3' fill-opacity='.16'/%3E%3Cpath d='M9.2 13.1 8.2 21l3.8-2 3.8 2-1-7.9'/%3E%3Cpath d='m10.9 8.8.8.8 1.6-1.7'/%3E%3C/svg%3E");
}

.hero-badge-copy strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero-badge-line {
  display: inline-flex;
  width: 5.5rem;
  height: 2px;
  margin: 0.75rem 0 0.85rem;
  background: linear-gradient(90deg, rgba(130, 175, 211, 0.95), rgba(130, 175, 211, 0.18));
  border-radius: 999px;
}

.hero-badge-copy p {
  margin: 0;
  color: rgba(235, 244, 250, 0.88);
  line-height: 1.4;
  font-size: 0.88rem;
}

.hero-highlights {
  width: 100%;
  background:
    linear-gradient(145deg, rgba(11, 27, 42, 0.99) 0%, rgba(22, 47, 70, 0.975) 30%, rgba(35, 66, 94, 0.965) 58%, rgba(15, 34, 52, 0.99) 100%),
    radial-gradient(circle at 16% 18%, rgba(159, 197, 225, 0.11), transparent 38%),
    radial-gradient(circle at 50% 0%, rgba(86, 129, 167, 0.08), transparent 36%),
    radial-gradient(circle at 84% 80%, rgba(98, 141, 178, 0.1), transparent 36%);
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(32, 52, 70, 0.14);
}

.hero-highlights-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.hero-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem 0.95rem;
}

.hero-highlight h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.hero-highlight p {
  margin: 0.22rem 0 0;
  color: rgba(235, 244, 250, 0.8);
  line-height: 1.4;
  font-size: 0.88rem;
}

.hero-highlight-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  border-radius: 50%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 1.02rem, cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-highlight-home {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203446' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 10 9-7 9 7'/%3E%3Cpath d='M5 9.8V21h14V9.8'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(217, 233, 247, 0.92) 0%, rgba(217, 233, 247, 0.92) 100%);
}

.hero-highlight-commercial {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203446' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V9h6v12'/%3E%3Cpath d='M11 21V5h8v16'/%3E%3Cpath d='M8 12h.01'/%3E%3Cpath d='M8 15h.01'/%3E%3Cpath d='M15 9h.01'/%3E%3Cpath d='M15 12h.01'/%3E%3Cpath d='M15 15h.01'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(217, 233, 247, 0.92) 0%, rgba(217, 233, 247, 0.92) 100%);
}

.hero-highlight-tools {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203446' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m14.7 6.3 3 3'/%3E%3Cpath d='M5 19 17.4 6.6a2.1 2.1 0 1 1 3 3L8 22H5Z'/%3E%3Cpath d='m12 8-8 8'/%3E%3Cpath d='M14 19h5'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(217, 233, 247, 0.92) 0%, rgba(217, 233, 247, 0.92) 100%);
}

.hero-highlight-quality {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23203446' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v6c0 5 3.4 8.4 7 9 3.6-.6 7-4 7-9V6l-7-3Z'/%3E%3Cpath d='m9.5 12 1.7 1.7 3.6-3.9'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(217, 233, 247, 0.92) 0%, rgba(217, 233, 247, 0.92) 100%);
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero-compact {
  padding-bottom: 0.35rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-text-only .page-hero-grid {
  grid-template-columns: 1fr;
}

.page-hero-text-only .page-hero-copy {
  width: 80%;
  max-width: none;
}

.page-hero-text-only .hero-text {
  max-width: none;
}

.page-hero-copy {
  max-width: 35rem;
}

.page-hero-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(53, 89, 122, 0.16);
}

.section {
  padding: 3.5rem 0;
}

.intro {
  padding: 2.4rem 0;
}

.services {
  padding: 1.25rem 0 1.6rem;
  background:
    linear-gradient(150deg, rgba(14, 33, 50, 0.98) 0%, rgba(29, 57, 82, 0.97) 28%, rgba(43, 73, 101, 0.955) 58%, rgba(19, 40, 59, 0.98) 100%),
    radial-gradient(circle at 14% 16%, rgba(178, 209, 231, 0.11), transparent 38%),
    radial-gradient(circle at 56% 6%, rgba(99, 141, 177, 0.08), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(117, 158, 191, 0.1), transparent 36%);
}

.services-shell {
  padding: 0.95rem 0 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.services-heading {
  margin-bottom: 0.8rem;
}

.services-heading .eyebrow {
  margin-bottom: 0.5rem;
  color: #4ea2ff;
}

.services-heading h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.services-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.service-panel {
  position: relative;
  --service-panel-pad-x: 1.2rem;
  --service-panel-pad-bottom: 0.95rem;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-height: 100%;
  padding: 1.15rem var(--service-panel-pad-x) var(--service-panel-pad-bottom);
  border: 1px solid rgba(103, 146, 182, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(13, 34, 51, 0.9) 0%, rgba(25, 52, 76, 0.86) 36%, rgba(39, 69, 96, 0.82) 68%, rgba(16, 37, 55, 0.9) 100%),
    radial-gradient(circle at 14% 14%, rgba(179, 210, 231, 0.08), transparent 36%),
    radial-gradient(circle at 88% 90%, rgba(84, 126, 162, 0.06), transparent 32%);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-panel-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-panel-icon-reroofs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ea2ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 10 9-7 9 7'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-5h6v5'/%3E%3C/svg%3E");
}

.service-panel-icon-repairs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ea2ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m14.7 6.3 3 3'/%3E%3Cpath d='M5 19 17.4 6.6a2.1 2.1 0 1 1 3 3L8 22H5Z'/%3E%3Cpath d='m12 8-8 8'/%3E%3Cpath d='M14 19h5'/%3E%3C/svg%3E");
}

.service-panel-icon-flat {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ea2ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17h18'/%3E%3Cpath d='M5 17V9h14v8'/%3E%3Cpath d='M8 9V6h8v3'/%3E%3C/svg%3E");
}

.service-panel-icon-lead {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ea2ff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M7 20 9 6h6l2 14'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E");
}

.service-panel h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 220ms ease, color 220ms ease;
}

.service-panel p {
  margin: 0;
  color: rgba(235, 244, 250, 0.88);
  font-size: 0.77rem;
  line-height: 1.55;
}

.service-panel-image {
  margin-top: 0.55rem;
  margin-right: calc(var(--service-panel-pad-x) * -1);
  margin-bottom: calc(var(--service-panel-pad-bottom) * -1);
  margin-left: calc(var(--service-panel-pad-x) * -1);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.service-panel-image img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transition: transform 300ms ease, filter 300ms ease;
}

.service-panel:hover,
.service-panel:focus-within {
  transform: translateY(-4px);
  border-color: rgba(145, 190, 224, 0.48);
  background:
    linear-gradient(160deg, rgba(18, 43, 64, 0.94) 0%, rgba(31, 62, 88, 0.9) 34%, rgba(47, 81, 111, 0.86) 64%, rgba(21, 46, 68, 0.94) 100%),
    radial-gradient(circle at 14% 14%, rgba(199, 223, 241, 0.1), transparent 36%),
    radial-gradient(circle at 88% 90%, rgba(98, 141, 177, 0.07), transparent 32%);
  box-shadow: 0 16px 30px rgba(14, 31, 49, 0.22);
}

.service-panel:hover::before,
.service-panel:focus-within::before {
  opacity: 1;
}

.service-panel:hover .service-panel-icon,
.service-panel:focus-within .service-panel-icon {
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(78, 162, 255, 0.2));
}

.service-panel:hover h3,
.service-panel:focus-within h3 {
  transform: translateX(2px);
  color: #f4f9fd;
}

.service-panel:hover .service-panel-image img,
.service-panel:focus-within .service-panel-image img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.section-heading {
  max-width: 34rem;
}

.section-heading.compact {
  margin-bottom: 1.75rem;
}

.intro {
  border-top: 0;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.intro-copy p:first-child,
.contact-copy p {
  margin-top: 0;
}

.contact-copy h2 {
  margin-bottom: 0.65rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-detail {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(53, 89, 122, 0.08);
}

.service-detail-head {
  margin-bottom: 0.65rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.2rem;
  align-items: start;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.service-list li {
  display: grid;
  grid-template-columns: 0.85rem 1fr;
  column-gap: 0.85rem;
  align-items: start;
  padding: 0;
  color: var(--muted);
  line-height: 1.5;
  transition: color 180ms ease, transform 180ms ease;
}

.service-list li::before {
  content: "";
  position: relative;
  top: 0.34rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(53, 89, 122, 0.4);
  background:
    radial-gradient(circle at center, rgba(53, 89, 122, 0.88) 0 32%, transparent 36%);
}

.service-list li:hover {
  color: var(--text);
  transform: translateX(2px);
}

.service-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(53, 89, 122, 0.12);
}

.service-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.contact-page-section {
  padding-top: 1.5rem;
}

.service-page-section {
  padding-top: 0.6rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-page-copy,
.enquiry-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(53, 89, 122, 0.08);
}

.contact-page-copy h1,
.enquiry-card h2 {
  margin-bottom: 0.55rem;
}

.contact-page-copy h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.contact-page-intro,
.enquiry-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34rem;
}

.contact-page-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-page-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-page-list strong {
  color: var(--text);
}

.contact-separator {
  display: inline-block;
  margin: 0 0.45rem;
  color: rgba(53, 89, 122, 0.5);
}

.enquiry-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
}

.enquiry-form span {
  color: var(--text);
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(53, 89, 122, 0.16);
  border-radius: 14px;
  background: rgba(248, 252, 255, 0.92);
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.enquiry-form .button {
  justify-self: start;
  width: auto;
  padding-inline: 1.6rem;
  border-radius: 14px;
}

.enquiry-form .button:hover,
.enquiry-form .button:focus-visible {
  background: #244562;
  box-shadow: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: rgba(53, 89, 122, 0.4);
  box-shadow: 0 0 0 4px rgba(110, 158, 196, 0.12);
  background: #ffffff;
}

.service-item,
.contact-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(53, 89, 122, 0.08);
}

.service-item h3 {
  margin-bottom: 0.7rem;
  transition: color 180ms ease, transform 180ms ease;
}

.service-item p {
  margin: 0;
  transition: color 180ms ease;
}

.service-item {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.22rem;
  background: linear-gradient(180deg, rgba(110, 158, 196, 0.2) 0%, rgba(53, 89, 122, 0.6) 100%);
  transition: width 220ms ease, background 220ms ease;
}

.service-item::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 158, 196, 0.16), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  transform: scale(0.8);
}

.service-item:hover,
.service-item:focus-within {
  transform: translateY(-5px);
  border-color: rgba(110, 158, 196, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.94));
  box-shadow: 0 24px 42px rgba(53, 89, 122, 0.14);
}

.service-item:hover::before,
.service-item:focus-within::before {
  width: 0.38rem;
  background: linear-gradient(180deg, #82afd3 0%, #35597a 100%);
}

.service-item:hover::after,
.service-item:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.service-item:hover h3,
.service-item:focus-within h3 {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.service-item:hover p,
.service-item:focus-within p {
  color: var(--text);
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.94));
}

.contact-card a {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-card p {
  margin: 0;
  line-height: 1.35;
}

.site-footer {
  margin-top: 1.1rem;
  padding: 0.35rem 0 0.85rem;
  background:
    linear-gradient(145deg, rgba(9, 24, 39, 0.99) 0%, rgba(20, 44, 66, 0.98) 32%, rgba(33, 63, 89, 0.965) 60%, rgba(12, 30, 46, 0.99) 100%),
    radial-gradient(circle at 12% 14%, rgba(142, 183, 214, 0.11), transparent 36%),
    radial-gradient(circle at 84% 0%, rgba(73, 118, 156, 0.13), transparent 34%);
  color: rgba(235, 244, 250, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem 1rem;
  padding-top: 0.65rem;
}

.site-footer p {
  color: rgba(235, 244, 250, 0.74);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-primary {
  grid-column: 1;
  font-weight: 600;
}

.footer-meta {
  grid-column: 1;
  color: rgba(235, 244, 250, 0.82);
}

.footer-meta-separator {
  display: inline-block;
  margin: 0 0.35rem;
}

.footer-secondary {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  color: rgba(217, 236, 251, 0.82);
}

.site-footer a {
  color: #d9ecfb;
}

@media (max-width: 900px) {
  .hero-panel,
  .page-hero-grid,
  .intro-grid,
  .contact-grid,
  .services-grid,
  .services-panels,
  .contact-page-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .page-hero-copy,
  .page-hero-media,
  .section-heading,
  .intro-copy,
  .contact-copy,
  .contact-card,
  .contact-page-copy,
  .enquiry-card {
    grid-column: 1 / -1;
  }

  .hero-copy {
    padding: 2.9rem 2rem 1.95rem;
    margin-right: 0;
  }

  .hero-copy::before {
    inset: 0;
    clip-path: none;
    background: linear-gradient(
      180deg,
      rgba(238, 245, 251, 0.95) 0%,
      rgba(228, 238, 247, 0.88) 18%,
      rgba(212, 225, 237, 0.66) 54%,
      rgba(200, 215, 228, 0.48) 78%,
      rgba(190, 206, 221, 0.3) 100%
    );
  }

  .hero-panel {
    background: linear-gradient(
      180deg,
      rgba(236, 244, 250, 0.94) 0%,
      rgba(226, 237, 246, 0.87) 24%,
      rgba(210, 223, 236, 0.66) 58%,
      rgba(196, 211, 226, 0.5) 100%
    );
  }

  .hero-copy::after {
    right: -3rem;
    width: 14rem;
    background: linear-gradient(
      180deg,
      rgba(235, 243, 250, 0.62) 0%,
      rgba(220, 232, 242, 0.42) 22%,
      rgba(203, 218, 231, 0.16) 56%,
      rgba(195, 211, 225, 0.08) 78%,
      rgba(188, 204, 219, 0.03) 100%
    );
  }

  .hero-media img {
    min-height: 350px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-badge {
    right: 1.5rem;
    bottom: 1.1rem;
  }

  .services-shell {
    padding: 1.45rem;
  }

  .service-panel {
    --service-panel-pad-x: 1.1rem;
    --service-panel-pad-bottom: 0.85rem;
    padding: 1.05rem var(--service-panel-pad-x) var(--service-panel-pad-bottom);
  }

  .service-panel-image img {
    height: 205px;
  }

  .hero-highlights-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-highlight:nth-child(odd) {
    border-left: 0;
  }

}

@media (max-width: 760px) {
  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }

  h1 {
    line-height: 1.42;
  }

  h2 {
    line-height: 1.56;
  }

  h3 {
    line-height: 1.64;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    background:
      linear-gradient(145deg, rgba(9, 24, 39, 0.99) 0%, rgba(20, 44, 66, 0.98) 30%, rgba(34, 63, 90, 0.965) 60%, rgba(12, 30, 46, 0.99) 100%),
      radial-gradient(circle at 12% 14%, rgba(145, 187, 218, 0.11), transparent 36%),
      radial-gradient(circle at 86% -2%, rgba(73, 117, 154, 0.13), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-panel,
  .page-hero-grid,
  .intro-grid,
  .contact-grid,
  .services-grid,
  .contact-page-grid,
  .service-detail-grid,
  .service-images,
  .hero-highlights-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9.5vw, 2.35rem);
    line-height: 1.08;
  }

  .page-hero {
    padding: 2.4rem 0 1.15rem;
  }

  .page-hero-text-only .page-hero-copy {
    width: 100%;
  }

  .page-hero-text-only .hero-text {
    margin-bottom: 0;
  }

  .section {
    padding: 2.8rem 0;
  }

  .service-page-section {
    padding-top: 0;
  }

  .intro {
    padding: 2rem 0;
  }

  .services {
    padding-top: 1.25rem;
  }

  .services-shell {
    padding: 1rem;
  }

  .services-panels {
    gap: 0.75rem;
  }

  .service-panel {
    --service-panel-pad-x: 1rem;
    --service-panel-pad-bottom: 0.7rem;
    padding: 1rem var(--service-panel-pad-x) var(--service-panel-pad-bottom);
    border-color: rgba(16, 37, 56, 0.7);
  }

  .service-panel p {
    min-height: auto;
  }

  .service-panel-image img {
    height: 182px;
  }

  .hero-copy {
    padding: 2.2rem 1.3rem 1.55rem;
  }

  .hero-copy::before {
    background: linear-gradient(
      180deg,
      rgba(238, 245, 251, 0.95) 0%,
      rgba(227, 238, 247, 0.86) 18%,
      rgba(210, 224, 237, 0.62) 56%,
      rgba(196, 212, 226, 0.42) 80%,
      rgba(186, 203, 219, 0.24) 100%
    );
  }

  .hero-panel {
    background: linear-gradient(
      180deg,
      rgba(236, 244, 250, 0.94) 0%,
      rgba(225, 236, 246, 0.85) 24%,
      rgba(208, 222, 235, 0.62) 58%,
      rgba(193, 209, 224, 0.44) 100%
    );
  }

  .hero-copy::after {
    display: none;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  a.hero-phone-card {
    display: flex;
    width: auto;
    align-self: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    margin-left: 0;
    transform: none;
  }

  a.hero-phone-card::before {
    content: none;
    display: none;
    width: 0;
    height: 0;
    flex: 0 0 0;
  }

  .hero-phone-icon {
    margin: 0;
    flex: 0 0 3.15rem;
  }

  .hero-button {
    width: auto;
    max-width: 100%;
    min-height: 2.7rem;
    padding-inline: 0.8rem;
    font-size: 0.88rem;
    justify-content: center;
  }

  a.hero-phone-card {
    padding-left: 0;
  }

  .hero-phone-copy {
    justify-self: start;
    margin: 0;
  }

  .hero-trust {
    gap: 0.65rem 1rem;
    font-size: 0.92rem;
  }

  .hero-media img {
    min-height: 235px;
    clip-path: none;
  }

  .page-hero-media img {
    min-height: 260px;
  }

  .hero-badge {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    width: min(15.5rem, calc(100vw - 2rem));
    max-width: 15.5rem;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    padding: 0.8rem 0.8rem;
  }

  .hero-badge-copy {
    width: 100%;
    min-width: 0;
  }

  .service-images img {
    height: 240px;
  }

  .footer-inner {
    display: grid;
    justify-content: start;
    grid-template-columns: 1fr;
  }

  .footer-primary,
  .footer-meta,
  .footer-secondary {
    grid-column: 1;
  }

  .footer-meta {
    display: grid;
    gap: 0.1rem;
    justify-items: start;
    text-align: left;
  }

  .footer-meta-separator {
    display: none;
  }

  .footer-company-no,
  .footer-vat-no {
    display: block;
    width: 100%;
    text-align: left;
  }

  .footer-secondary {
    grid-row: auto;
    justify-self: start;
  }
}


