:root {
  --cream: #fff5e3;
  --paper: #fffbf3;
  --ink: #263b35;
  --petrol: #154943;
  --petrol-dark: #103a35;
  --ocean-deep: #041f27;
  --ocean: #0f5551;
  --coral: #e7603e;
  --coral-dark: #b8462d;
  --mustard: #f2bd4c;
  --mint: #bfd8c2;
  --line: #dbcdb9;
  --shadow: 0 18px 50px rgb(42 34 24 / 0.14);
  --radius: 28px;
  --focus: #8f2109;
  --content: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--petrol);
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  background: var(--mustard);
  color: #251b14;
}

.wrap {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #16120f;
  font-weight: 850;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.preview-banner {
  padding: 0.55rem 1rem;
  background: var(--mustard);
  color: #34261d;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: #9e341e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead {
  max-width: 34rem;
  font-size: clamp(1.16rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

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

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

.section--petrol {
  background: var(--petrol);
  color: #fff;
}

.section--petrol h2,
.section--petrol h3,
.section--petrol .eyebrow {
  color: #fff;
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-intro > p:not(.eyebrow) {
  max-width: 48rem;
  font-size: 1.14rem;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 30% 140%, rgb(52 145 136 / 0.55), transparent 42%),
    radial-gradient(circle at 86% 35%, rgb(38 122 114 / 0.35), transparent 25%),
    linear-gradient(115deg, var(--ocean-deep), var(--ocean));
  border-bottom: 5px solid var(--mustard);
}

.site-header__bubbles {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-header__bubbles i {
  position: absolute;
  width: var(--bubble-size);
  height: var(--bubble-size);
  opacity: var(--bubble-opacity);
  border: 1.5px solid rgb(224 247 242 / 0.78);
  border-radius: 50%;
  background: radial-gradient(circle at 31% 27%, rgb(255 255 255 / 0.5) 0 7%, transparent 9%);
  box-shadow: inset -2px -3px 7px rgb(93 191 182 / 0.24);
}

.site-header__bubbles i:nth-child(1) { --bubble-size: 34px; --bubble-opacity: 0.25; left: 43%; top: 14%; }
.site-header__bubbles i:nth-child(2) { --bubble-size: 14px; --bubble-opacity: 0.28; left: 49%; top: 69%; }
.site-header__bubbles i:nth-child(3) { --bubble-size: 47px; --bubble-opacity: 0.22; left: 72%; top: 18%; }
.site-header__bubbles i:nth-child(4) { --bubble-size: 18px; --bubble-opacity: 0.3; left: 81%; top: 67%; }
.site-header__bubbles i:nth-child(5) { --bubble-size: 9px; --bubble-opacity: 0.31; left: 62%; top: 8%; }
.site-header__bubbles i:nth-child(6) { --bubble-size: 27px; --bubble-opacity: 0.22; left: 37%; top: 78%; }
.site-header__bubbles i:nth-child(7) { --bubble-size: 12px; --bubble-opacity: 0.26; left: 89%; top: 29%; }
.site-header__bubbles i:nth-child(8) { --bubble-size: 20px; --bubble-opacity: 0.2; left: 56%; top: 38%; }
.site-header__bubbles i:nth-child(9) { --bubble-size: 8px; --bubble-opacity: 0.34; left: 67%; top: 72%; }
.site-header__bubbles i:nth-child(10) { --bubble-size: 11px; --bubble-opacity: 0.27; left: 33%; top: 19%; }
.site-header__bubbles i:nth-child(11) { --bubble-size: 29px; --bubble-opacity: 0.2; left: 77%; top: 48%; }
.site-header__bubbles i:nth-child(12) { --bubble-size: 8px; --bubble-opacity: 0.32; left: 93%; top: 73%; }
.site-header__bubbles i:nth-child(13) { --bubble-size: 16px; --bubble-opacity: 0.24; left: 52%; top: 4%; }
.site-header__bubbles i:nth-child(14) { --bubble-size: 8px; --bubble-opacity: 0.3; left: 40%; top: 49%; }
.site-header__bubbles i:nth-child(15) { --bubble-size: 21px; --bubble-opacity: 0.2; left: 84%; top: 9%; }
.site-header__bubbles i:nth-child(16) { --bubble-size: 13px; --bubble-opacity: 0.26; left: 59%; top: 83%; }
.site-header__bubbles i:nth-child(17) { --bubble-size: 18px; --bubble-opacity: 0.21; left: 35%; top: 59%; }
.site-header__bubbles i:nth-child(18) { --bubble-size: 12px; --bubble-opacity: 0.29; left: 69%; top: 4%; }
.site-header__bubbles i:nth-child(19) { --bubble-size: 9px; --bubble-opacity: 0.28; left: 46%; top: 38%; }
.site-header__bubbles i:nth-child(20) { --bubble-size: 24px; --bubble-opacity: 0.19; left: 91%; top: 45%; }
.site-header__bubbles i:nth-child(21) { --bubble-size: 10px; --bubble-opacity: 0.3; left: 74%; top: 80%; }
.site-header__bubbles i:nth-child(22) { --bubble-size: 26px; --bubble-opacity: 0.18; left: 54%; top: 61%; }
.site-header__bubbles i:nth-child(23) { --bubble-size: 15px; --bubble-opacity: 0.24; left: 87%; top: 84%; }
.site-header__bubbles i:nth-child(24) { --bubble-size: 7px; --bubble-opacity: 0.34; left: 64%; top: 51%; }

.site-header__inner {
  position: relative;
  z-index: 2;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}

.brand__mark {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  border: 3px solid var(--mustard);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.3);
}

.brand__mark img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  object-position: center;
}

.brand__copy {
  min-width: 0;
  display: grid;
  gap: 0.3rem;
  line-height: 1;
}

.brand__copy strong {
  white-space: nowrap;
  font-size: clamp(1.7rem, 2.25vw, 2.15rem);
  font-weight: 790;
  letter-spacing: -0.04em;
}

.brand__copy span {
  width: fit-content;
  padding: 0.28rem 0.58rem;
  background: var(--mustard);
  color: #352812;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #fff;
}

.site-header :focus-visible {
  outline-color: var(--mustard);
}

.desktop-nav a {
  padding: 0.88rem 0.76rem;
  border-radius: 999px;
  font-size: 1.075rem;
  font-weight: 820;
  line-height: 1.1;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgb(255 255 255 / 0.1);
}

.desktop-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px var(--mustard);
}

.desktop-nav .desktop-nav__action {
  min-height: 50px;
  margin-left: 0.55rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.05rem;
  background: var(--mustard);
  color: #2d2617;
}

.menu-button {
  width: 54px;
  height: 54px;
  display: none;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: rgb(255 255 255 / 0.05);
  color: var(--mustard);
  border: 2px solid var(--mustard);
  border-radius: 16px;
  cursor: pointer;
}

.menu-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.menu-button__close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-button__open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-button__close {
  display: block;
}

.mobile-nav {
  display: none;
  background: var(--ocean-deep);
  color: #fff;
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.mobile-nav__inner {
  display: grid;
  padding-block: 0.8rem 1.2rem;
}

.mobile-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav a[aria-current="page"] {
  background: rgb(255 255 255 / 0.08);
}

.mobile-nav .mobile-nav__action {
  margin-top: 0.8rem;
  justify-content: center;
  background: var(--mustard);
  color: #2d2617;
  border: 0;
  border-radius: 999px;
}

/* Buttons and links */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 880;
  text-decoration: none;
}

.button svg,
.text-action svg,
.route-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--primary {
  background: var(--coral);
  color: #1b1815;
  border-color: var(--coral);
  box-shadow: 0 9px 0 var(--coral-dark);
}

.button--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 7px 0 var(--coral-dark);
}

.button--secondary {
  background: var(--paper);
  color: var(--petrol);
  border-color: var(--petrol);
}

.button--dark {
  background: var(--petrol);
  color: #fff;
  border-color: var(--petrol);
  box-shadow: 0 9px 0 var(--petrol-dark);
}

.button[aria-disabled="true"],
button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.text-action,
.route-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

/* Shared page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 5% 15%, rgb(239 144 119 / 0.24), transparent 22rem), radial-gradient(circle at 95% 80%, rgb(242 189 76 / 0.28), transparent 24rem), var(--cream);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  left: -14rem;
  bottom: -17rem;
  border: 2px dashed var(--coral);
  border-radius: 50%;
}

.page-hero__grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.page-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.9rem, 7.5vw, 6.9rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs span::before {
  content: "›";
  margin-right: 0.45rem;
  color: var(--coral);
}

.page-hero__visual {
  min-height: 500px;
  position: relative;
}

.page-hero__visual .picture {
  position: absolute;
  inset: 3% 4% 5% 7%;
  overflow: hidden;
  border-radius: 38px 190px 38px 38px;
  box-shadow: 24px 26px 0 var(--mint);
}

.picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .page-hero__visual .picture img {
  object-position: 50% 42%;
}

.image-status {
  position: absolute;
  z-index: 3;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: 16rem;
  padding: 0.55rem 0.7rem;
  background: rgb(255 248 233 / 0.94);
  color: #2a201b;
  border-radius: 8px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.round-badge {
  position: absolute;
  z-index: 4;
  right: -1%;
  bottom: 4%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--mustard);
  border: 7px solid var(--cream);
  border-radius: 50%;
  color: #34261d;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transform: rotate(6deg);
}

/* Lange Ausbildungsüberschrift und externer Ausbildungshinweis */
.training-page .page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.1vw, 4.9rem);
}

.training-page .round-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  line-height: 1.05;
  letter-spacing: 0.035em;
  transform: none;
}

@media (max-width: 920px) {
  .training-page .page-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
  }
}

/* Lange technische Begriffe bleiben vollständig vor der Bildfläche. */
.hero-long-title .page-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-long-title .page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 4.8vw, 4.8rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 920px) {
  .hero-long-title .page-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.2rem);
  }

  .hero-long-title .page-hero__grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage */
.home-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgb(239 144 119 / 0.25), transparent 25rem), radial-gradient(circle at 84% 75%, rgb(242 189 76 / 0.23), transparent 24rem), var(--cream);
}

.home-hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.home-hero__copy {
  position: relative;
  z-index: 3;
}

.home-hero h1 {
  max-width: 8ch;
}

.hero-collage {
  min-height: 560px;
  position: relative;
}

.hero-collage .picture {
  position: absolute;
  overflow: hidden;
}

.hero-collage__main {
  inset: 0 14% 8% 5%;
  border-radius: 44% 18px 44% 18px;
  box-shadow: 22px 24px 0 var(--mustard);
}

.hero-collage__small-one {
  width: 36%;
  height: 38%;
  right: 0;
  top: 4%;
  border: 9px solid var(--paper);
  border-radius: 50%;
}

.hero-collage__small-two {
  width: 31%;
  height: 31%;
  right: 4%;
  bottom: 0;
  border: 8px solid var(--paper);
  border-radius: 30px;
  transform: rotate(4deg);
}

.hero-collage__stamp {
  position: absolute;
  z-index: 5;
  right: 2%;
  top: 44%;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.85rem;
  background: var(--coral);
  color: #1b1815;
  border: 5px solid var(--paper);
  border-radius: 50%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.hero-collage__stamp span {
  display: block;
  width: 100%;
  text-align: center;
  text-wrap: balance;
}

.quick-strip {
  position: relative;
  z-index: 4;
  margin-top: -1.5rem;
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--petrol);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgb(21 73 67 / 0.18);
}

.quick-strip__item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
}

.quick-strip__item + .quick-strip__item {
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.quick-strip__item b {
  font-size: 1.05rem;
}

.quick-strip__item span {
  color: var(--mustard);
  font-weight: 900;
}

.service-cards {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 1rem;
}

.service-card {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.25rem;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
}

.service-card:first-child {
  border-radius: 90px 28px 28px 28px;
}

.service-card .picture {
  position: absolute;
  inset: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgb(25 20 16 / 0.88));
}

.service-card__copy {
  position: relative;
  z-index: 3;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  margin-bottom: 0;
  opacity: 0.88;
}

.service-card__arrow {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--mustard);
  color: #2c221a;
  border-radius: 50%;
}

.service-card__arrow svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: #1b1815;
}

.feature-band__grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding-block: 3.3rem;
}

.feature-band h2,
.feature-band .eyebrow {
  max-width: 11ch;
  color: #1b1815;
}

.feature-band__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.feature-band__topics span {
  padding: 0.65rem 0.9rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 850;
}

.equipment-stage {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 92% 14%, rgb(242 189 76 / 0.3), transparent 17rem), var(--cream);
}

.equipment-stage__grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.equipment-stage__media {
  min-height: 560px;
  position: relative;
}

.equipment-stage__media .picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 38px 190px 38px 38px;
  box-shadow: 26px 28px 0 var(--mint);
}

.equipment-stage__copy h2 {
  max-width: 8ch;
}

.ssi-connection {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgb(231 96 62 / 0.16), transparent 18rem),
    linear-gradient(135deg, #eef3e9, var(--paper));
}

.ssi-connection__grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.ssi-identity {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  background: #fff;
  border: 3px solid #11151a;
  border-top: 12px solid #ef1b10;
  border-radius: 28px 90px 28px 28px;
  box-shadow: 16px 18px 0 var(--mint);
}

.ssi-identity > span {
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ssi-identity img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ssi-identity a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--petrol-dark);
  font-weight: 850;
}

.ssi-identity a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ssi-connection__copy h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.ssi-connection__copy > p:not(.eyebrow) {
  max-width: 63ch;
}

.ssi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block: 1.6rem;
}

.ssi-tags span {
  padding: 0.55rem 0.8rem;
  background: var(--petrol);
  color: #fff;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.ssi-separation {
  padding: 1rem 1.1rem;
  background: rgb(242 189 76 / 0.3);
  border-left: 5px solid var(--mustard);
  border-radius: 0 16px 16px 0;
}

.process-preview {
  position: relative;
  overflow: hidden;
  background: var(--petrol);
  color: #fff;
}

.process-preview h2,
.process-preview h3,
.process-preview .eyebrow {
  color: #fff;
}

.process-preview__line,
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
}

.process-line {
  grid-template-columns: repeat(4, 1fr);
}

.process-preview__line::before,
.process-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 3px;
  background: rgb(255 255 255 / 0.35);
}

.process-preview__line li,
.process-line li {
  position: relative;
  z-index: 2;
}

.process-number {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: var(--mustard);
  color: #34261d;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.process-preview p,
.process-line p {
  max-width: 15rem;
  color: rgb(255 255 255 / 0.77);
}

.zarrenthin-strip {
  background: var(--mustard);
  color: #34261d;
}

.zarrenthin-strip__grid {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.zarrenthin-strip__icon {
  font-size: 3rem;
  font-weight: 900;
}

.zarrenthin-strip h2 {
  margin-bottom: 0.4rem;
  color: #34261d;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

/* Service overview */
.service-routes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-route {
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 2px solid var(--line);
}

.service-route:last-child {
  border-bottom: 2px solid var(--line);
}

.service-route:nth-child(even) .service-route__media {
  order: 2;
  border-radius: 150px 34px 34px 34px;
}

.service-route__media {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 34px 150px 34px 34px;
}

.service-route__media .picture {
  position: absolute;
  inset: 0;
}

.service-route__number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: var(--mustard);
  border-radius: 50%;
  color: #34261d;
  font-size: 1.25rem;
  font-weight: 900;
}

.service-route__copy h2 {
  max-width: 9ch;
}

.service-route__copy p {
  max-width: 33rem;
  font-size: 1.08rem;
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.audience-chips span {
  padding: 0.8rem 1rem;
  border: 2px solid rgb(255 255 255 / 0.55);
  border-radius: 999px;
  font-weight: 800;
}

/* Service detail */
.fact-ribbon {
  background: var(--mustard);
  color: #34261d;
}

.fact-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.fact + .fact {
  border-left: 1px solid rgb(52 38 29 / 0.28);
}

.fact strong {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.content-split {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.content-split__title h2 {
  position: sticky;
  top: 2rem;
  max-width: 8ch;
}

.content-split__body {
  max-width: 46rem;
  font-size: 1.08rem;
}

.scope-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.scope-list li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--petrol);
  border-radius: 50%;
  font-weight: 900;
}

.content-note {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  background: var(--mint);
  border-left: 8px solid var(--petrol);
}

.question-list {
  max-width: 920px;
  margin-top: 2.5rem;
  border-top: 2px solid var(--petrol);
}

.question-list details {
  border-bottom: 2px solid var(--petrol);
}

.question-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 1.17rem;
  font-weight: 850;
  list-style: none;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 2rem;
}

.question-list details[open] summary::after {
  content: "−";
}

.question-list details p {
  max-width: 48rem;
  padding: 0 3rem 1.4rem 0;
}

.contact-cta {
  background: var(--coral);
  color: #1b1815;
}

.contact-cta__grid {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.contact-cta h2,
.contact-cta .eyebrow {
  max-width: 10ch;
  color: #1b1815;
}

.contact-cta__actions {
  display: grid;
  gap: 0.8rem;
}

/* Equipment and about */
.choice-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.choice-panel {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 30px 110px 30px 30px;
  color: #fff;
  text-decoration: none;
}

.choice-panel:nth-child(even) {
  border-radius: 110px 30px 30px 30px;
}

.choice-panel .picture {
  position: absolute;
  inset: 0;
}

.choice-panel::after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: linear-gradient(transparent, rgb(16 32 29 / 0.9));
}

.choice-panel__copy {
  position: relative;
  z-index: 2;
}

.choice-panel h2,
.choice-panel .eyebrow {
  color: #fff;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.about-value {
  min-height: 250px;
  padding: 1.5rem;
  border-top: 6px solid var(--coral);
  background: var(--cream);
}

.about-value:nth-child(2) {
  border-color: var(--mustard);
}

.about-value:nth-child(3) {
  border-color: var(--petrol);
}

/* News */
.news-feature {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--mustard);
  border-radius: 44px 170px 44px 44px;
}

.news-feature__media {
  position: relative;
  min-height: 430px;
}

.news-feature__media .picture {
  position: absolute;
  inset: 0;
}

.news-feature__copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #34261d;
}

.news-feature__copy h2,
.news-feature__copy .eyebrow {
  color: #34261d;
}

.news-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 150px 0.7fr 1.3fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: 1.4rem;
  border-bottom: 2px solid var(--line);
}

.news-row__thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 18px 54px 18px 18px;
}

.news-row__thumb .picture {
  position: absolute;
  inset: 0;
}

.news-row__meta {
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contact */
.contact-choices {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgb(255 255 255 / 0.5);
}

.contact-choice {
  min-height: 108px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  border-bottom: 2px solid rgb(255 255 255 / 0.5);
}

.contact-choice--preferred {
  background: linear-gradient(90deg, rgb(242 189 76 / 0.18), transparent 60%);
}

.contact-choice__index {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--mustard);
  color: #34261d;
  border-radius: 50%;
  font-weight: 900;
}

.contact-choice strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.contact-choice small {
  color: rgb(255 255 255 / 0.72);
}

.contact-choice a,
.contact-choice span[aria-disabled="true"] {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.contact-choice span[aria-disabled="true"] {
  opacity: 0.68;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.form-intro h2 {
  max-width: 8ch;
}

.contact-form {
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background: var(--paper);
  border: 2px solid var(--petrol);
  border-radius: 30px 100px 30px 30px;
  box-shadow: 16px 18px 0 var(--mint);
}

.form-feedback {
  grid-column: 2;
  margin-bottom: -1rem;
  padding: 1rem 1.2rem;
  background: #ffe0d7;
  border-left: 8px solid var(--coral-dark);
  font-weight: 800;
}

.form-feedback--success {
  background: var(--mint);
  border-left-color: var(--petrol);
}

.form-status {
  margin-bottom: 1.2rem;
  padding: 0.75rem 0.9rem;
  background: var(--mustard);
  color: #34261d;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label,
.checkbox label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 0.9rem;
  background: var(--cream);
  border: 2px solid var(--petrol);
  border-radius: 10px;
  color: var(--ink);
}

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

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  opacity: 0.75;
}

.field-hint {
  font-size: 0.82rem;
}

.checkbox {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.location-grid {
  min-height: 280px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.location-placeholder,
.location-card {
  padding: 1.5rem;
  border: 3px dashed rgb(52 38 29 / 0.5);
  border-radius: 28px;
}

.location-hours {
  width: min(100%, 390px);
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 2px solid rgb(52 38 29 / 0.28);
}

.location-hours p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.location-hours small {
  color: rgb(52 38 29 / 0.72);
}

.location-card {
  display: grid;
  gap: 0.5rem;
  background: rgb(255 248 233 / 0.55);
  border-style: solid;
  font-style: normal;
}

.location-card strong {
  margin-bottom: 0.35rem;
  color: var(--petrol);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.location-card a {
  width: fit-content;
  color: var(--petrol-dark);
  font-weight: 800;
}

.location-card .location-card__primary {
  margin-top: 0.7rem;
  padding: 0.75rem 1rem;
  background: var(--petrol);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

.location-card__secondary {
  margin-top: 0.4rem;
  color: rgb(52 38 29 / 0.72);
  font-size: 0.9rem;
}

.location-card__secondary a {
  display: inline;
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.route-copy address {
  margin: 1.4rem 0;
  color: var(--ink);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
}

.route-copy address strong {
  color: var(--petrol);
  font-size: 1.25rem;
}

.route-hours {
  margin-block: 1.5rem 1.75rem;
}

.route-hours h3 {
  margin: 0;
  color: var(--petrol);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-hours .location-hours {
  margin-top: 0.75rem;
}

.map-consent {
  min-height: 440px;
  position: relative;
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgb(21 73 67 / 0.96), rgb(10 54 51 / 0.9)),
    repeating-linear-gradient(35deg, transparent 0 42px, rgb(255 255 255 / 0.08) 43px 45px);
  color: #fff;
  border: 3px solid var(--petrol);
  border-radius: 34px 80px 34px 34px;
  box-shadow: 14px 16px 0 var(--mint);
}

.map-consent__prompt {
  width: min(100%, 570px);
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.map-consent__prompt .eyebrow {
  color: var(--mustard);
}

.map-consent__prompt h3 {
  margin: 0.5rem 0 1rem;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.map-consent__prompt p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.82);
}

.map-consent__pin {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: var(--mustard);
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 1;
}

.map-frame {
  width: 100%;
  min-height: 440px;
  border: 0;
}

.map-consent--loaded {
  background: var(--paper);
}

.price-status {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  background: #fff0c7;
  color: #5d3a00;
  border-left: 6px solid var(--mustard);
  border-radius: 0 16px 16px 0;
}

.price-status strong {
  flex: 0 0 auto;
}

.price-table-wrap {
  overflow-x: auto;
  border: 2px solid rgb(21 73 67 / 0.2);
  border-radius: 24px;
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(21 73 67 / 0.15);
  text-align: left;
}

.price-table thead th {
  background: var(--petrol);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tbody th {
  color: var(--ink);
  font-weight: 650;
}

.price-table td {
  width: 8rem;
  color: var(--petrol);
  font-size: 1.05rem;
  font-weight: 850;
  white-space: nowrap;
}

.price-table tbody tr:nth-child(even) {
  background: rgb(184 229 207 / 0.16);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-footnote {
  margin-top: 1rem;
  color: rgb(52 38 29 / 0.72);
  font-size: 0.9rem;
}

.repair-price-groups {
  display: grid;
  gap: 1rem;
}

.price-group {
  overflow: hidden;
  border: 2px solid rgb(21 73 67 / 0.2);
  border-radius: 22px;
  background: #fff;
}

.price-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  color: var(--petrol);
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
}

.price-group > summary::marker {
  color: var(--rust);
}

.price-group > summary small {
  color: rgb(21 73 67 / 0.65);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.price-group[open] > summary {
  background: rgb(184 229 207 / 0.22);
}

.price-group .price-table-wrap {
  border: 0;
  border-top: 1px solid rgb(21 73 67 / 0.15);
  border-radius: 0;
}

.price-table--repairs td {
  width: auto;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
  white-space: normal;
}

.price-table--repairs td:last-child {
  width: 10rem;
  color: var(--petrol);
  font-size: 1.02rem;
  font-weight: 850;
  white-space: nowrap;
}

.price-notes {
  display: grid;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: rgb(52 38 29 / 0.76);
  font-size: 0.9rem;
}

/* Legal and 404 */
.prose {
  width: min(800px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.prose h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-warning {
  padding: 1rem 1.2rem;
  background: var(--mustard);
  border-left: 8px solid var(--coral-dark);
}

.legal-page a {
  overflow-wrap: anywhere;
}

.legal-open {
  display: block;
  padding: 0.9rem 1rem;
  background: rgb(242 189 76 / 0.2);
  border: 2px dashed rgb(52 38 29 / 0.42);
  border-radius: 14px;
}

.legal-source-note {
  margin-top: 3rem;
  padding-top: 1.2rem;
  color: rgb(52 38 29 / 0.72);
  border-top: 2px solid rgb(52 38 29 / 0.22);
  font-size: 0.9rem;
}

.not-found {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding-block: 4rem;
  background: radial-gradient(circle at 70% 20%, rgb(242 189 76 / 0.35), transparent 20rem), var(--cream);
}

.not-found__inner {
  max-width: 760px;
  text-align: center;
}

.not-found__code {
  display: block;
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 950;
  line-height: 0.8;
}

/* Footer */
.site-footer {
  overflow: hidden;
  background: var(--ocean-deep);
  color: #fff;
}

.footer-brand-bar {
  min-height: 176px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.6rem;
  background: var(--paper);
  color: var(--petrol-dark);
  border-bottom: 8px solid var(--mustard);
}

.footer-brand-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
  background: var(--paper);
  border-bottom: 8px solid var(--mustard);
}

.footer-brand-bar > * {
  position: relative;
  z-index: 1;
}

.footer-brand-bar address {
  color: var(--petrol-dark);
  font-style: normal;
  font-weight: 720;
  line-height: 1.6;
  text-align: right;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.82fr 0.82fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 3.5rem;
}

.site-footer__grid--compact {
  width: min(100%, 760px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  padding-block: 2.5rem;
}

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

.footer-brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.footer-brand__mark {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  border: 3px solid var(--mustard);
  border-radius: 50%;
  box-shadow: 9px 10px 0 var(--mint);
}

.footer-brand strong {
  display: block;
  color: var(--petrol-dark);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.footer-brand__copy small {
  display: block;
  margin-top: 0.55rem;
  color: rgb(10 54 51 / 0.72);
  font-weight: 700;
}

.site-footer p {
  max-width: 30rem;
  color: rgb(255 255 255 / 0.75);
}

.footer-address {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.86);
  font-style: normal;
}

.footer-panel {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-panel > a {
  width: fit-content;
}

.footer-primary-link {
  display: grid;
  gap: 0.12rem;
  padding: 0.8rem 1rem;
  background: var(--mustard);
  color: #34261d !important;
  border-radius: 16px;
  text-decoration: none;
}

.footer-primary-link span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-primary-link strong {
  font-size: 1.1rem;
}

.footer-secondary-contact {
  margin-top: 0.3rem;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.86rem;
}

.footer-hours p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}

.footer-hours p span {
  color: rgb(255 255 255 / 0.7);
}

.footer-hours small {
  color: rgb(255 255 255 / 0.68);
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.site-footer h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  font-weight: 720;
}

.footer-status {
  font-size: 0.82rem;
}

.site-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.25);
  font-size: 0.82rem;
}

@media (max-width: 1170px) {
  .site-header__inner {
    min-height: 126px;
  }

  .brand__mark {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .brand__mark img {
    width: 88px;
    height: 88px;
  }

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

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

  .desktop-nav a {
    padding-inline: 0.62rem;
    font-size: 1rem;
  }
}

@media (max-width: 1200px) and (min-width: 921px) {
  .page-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .has-js .menu-button {
    display: grid;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .site-header__inner {
    min-height: 118px;
  }
}

@media (max-width: 920px) {
  .page-hero__grid,
  .home-hero__grid,
  .feature-band__grid,
  .equipment-stage__grid,
  .ssi-connection__grid,
  .content-split,
  .form-grid,
  .location-grid,
  .route-grid,
  .contact-cta__grid {
    grid-template-columns: 1fr;
  }

  .form-feedback {
    grid-column: 1;
  }

  .page-hero__grid,
  .home-hero__grid {
    padding-top: 3rem;
  }

  .page-hero__visual,
  .hero-collage {
    min-height: 500px;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:first-child {
    grid-column: 1 / -1;
  }

  .content-split__title h2 {
    position: static;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .process-preview__line::before,
  .process-line::before {
    display: none;
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .service-route,
  .fact-ribbon__grid,
  .news-row {
    grid-template-columns: 1fr;
  }

  .service-route:nth-child(even) .service-route__media {
    order: 0;
  }

  .service-route__media {
    min-height: 300px;
    border-radius: 28px 100px 28px 28px;
  }

  .fact + .fact {
    border-top: 1px solid rgb(52 38 29 / 0.28);
    border-left: 0;
  }

  .choice-stage,
  .about-values {
    grid-template-columns: 1fr;
  }

  .news-row {
    gap: 0.7rem;
  }

  .news-row__thumb {
    width: min(100%, 300px);
  }

  .contact-choice {
    grid-template-columns: 58px 1fr;
    padding-block: 1rem;
  }

  .contact-choice a,
  .contact-choice span[aria-disabled="true"] {
    grid-column: 1 / -1;
  }

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

  .field--wide,
  .checkbox {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 1.2rem, var(--content));
  }

  .site-header__inner {
    min-height: 100px;
    gap: 0.55rem;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand__mark {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    border-width: 2px;
  }

  .brand__mark img {
    width: 68px;
    height: 68px;
  }

  .brand__copy strong {
    max-width: 9.5rem;
    white-space: normal;
    font-size: 1.14rem;
    line-height: 1.02;
  }

  .brand__copy span {
    display: none;
  }

  .page-hero__grid {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .page-hero__visual,
  .hero-collage {
    min-height: 400px;
  }

  .page-hero__visual .picture {
    inset: 0 4% 7% 0;
    border-radius: 28px 100px 28px 28px;
  }

  .round-badge {
    width: 104px;
    height: 104px;
    right: 0;
    font-size: 0.62rem;
  }

  .hero-collage__main {
    inset: 0 10% 8% 0;
  }

  .hero-collage__small-one {
    width: 34%;
    height: 33%;
  }

  .hero-collage__small-two {
    width: 33%;
    height: 28%;
  }

  .hero-collage__stamp {
    width: 92px;
    height: 92px;
    font-size: 0.6rem;
  }

  .quick-strip__grid,
  .service-cards,
  .process-preview__line,
  .process-line,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-brand-bar address {
    text-align: left;
  }

  .footer-brand img {
    width: 84px;
    height: 84px;
  }

  .footer-brand__mark {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    border-width: 2px;
  }

  .footer-brand__copy strong {
    font-size: 1.55rem;
  }

  .map-consent,
  .map-frame {
    min-height: 390px;
  }

  .map-consent {
    border-radius: 26px 72px 26px 26px;
    box-shadow: 9px 11px 0 var(--mint);
  }

  .price-status {
    display: grid;
  }

  .price-table th,
  .price-table td {
    padding: 0.85rem 0.75rem;
  }

  .price-group > summary {
    align-items: flex-start;
    padding: 1rem;
  }

  .quick-strip__item + .quick-strip__item {
    border-top: 1px solid rgb(255 255 255 / 0.2);
    border-left: 0;
  }

  .service-card:first-child {
    grid-column: auto;
  }

  .equipment-stage__media {
    min-height: 410px;
  }

  .ssi-identity {
    padding: 1.5rem;
    border-radius: 24px 68px 24px 24px;
    box-shadow: 9px 11px 0 var(--mint);
  }

  .zarrenthin-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .news-feature {
    border-radius: 28px 90px 28px 28px;
  }

  .contact-form {
    border-radius: 24px 70px 24px 24px;
    box-shadow: 9px 11px 0 var(--mint);
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }
}

@media (max-width: 380px) {
  .brand__mark {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .brand__mark img {
    width: 60px;
    height: 60px;
  }

  .brand__copy strong {
    max-width: 8.2rem;
    font-size: 0.98rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .preview-banner,
  .site-header,
  .site-footer,
  .actions,
  .contact-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
