/* Schmolke Baggerarbeiten – Hauptstylesheet */

:root {
  --base: #1c295d;
  --base-dark: #141e49;
  --accent: #2b98e6;
  --accent-dark: #1e7cc4;
  --btn-bg: #1e7cc4;
  --btn-bg-hover: #16639e;

  --text: #626262;
  --muted: rgba(34, 34, 34, 0.5);
  --line: #e5e5e5;
  --line-strong: #cfcfcf;
  --line-dark: rgba(255, 255, 255, 0.14);
  --bg: #ffffff;
  --bg-alt: #f5f5f5;

  --radius: 6px;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
  --font-mono: "Nunito Sans", "Segoe UI", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--base);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.container {
  width: min(1220px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 7.5vw, 6.5rem);
}

.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.section--dark {
  background: var(--base);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

.section--dark .section-head2__label {
  color: var(--accent);
}

.section--dark .section-head2__label::after {
  background: var(--accent);
}

.section-head2 {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head2__label {
  position: relative;
  padding-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--base);
}

.section-head2__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 4px;
  background: var(--accent);
}

.section-head2 h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.9rem;
}

.section-head2 p {
  font-size: 1.02rem;
  max-width: 760px;
}

.section--dark .section-head2 p {
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--accent {
  background: var(--btn-bg, #b97a17);
  border-color: var(--btn-bg, #b97a17);
  color: #ffffff;
}

.btn--accent:hover {
  background: var(--btn-bg-hover, #9a6410);
  border-color: var(--btn-bg-hover, #9a6410);
}

.btn--dark {
  background: var(--base);
  border-color: var(--base);
  color: #ffffff;
}

.btn--dark:hover {
  background: var(--base-dark);
  border-color: var(--base-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--base);
  color: var(--base);
}

.btn--outline:hover {
  background: var(--base);
  border-color: var(--base);
  color: #ffffff;
}

.btn--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.btn--light:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--base);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.76rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Topbar ---------- */

.topbar {
  background: var(--base-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.topbar__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.topbar__info a,
.topbar__info span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__info svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.topbar__info a:hover {
  color: var(--accent);
}

.topbar__cta {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}

.topbar__cta:hover {
  color: var(--accent);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--base-dark);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px -30px rgba(8, 12, 30, 0.55);
}

.header__bar {
  display: flex;
  align-items: stretch;
}

.header__brand {
  display: flex;
  align-items: center;
  padding: 0.55rem clamp(3.2rem, 4.5vw, 4.6rem) 0.55rem clamp(1.6rem, 2.6vw, 2.8rem);
  background: var(--base);
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.header__brand .logo__img {
  height: 92px;
}

.header__main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0 clamp(2.2rem, 5vw, 4.2rem);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header__phone svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.header__phone small {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.header__phone strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.18s ease;
}

.header__phone:hover strong {
  color: var(--accent);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__img {
  height: 92px;
  width: auto;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--base);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--base);
  text-transform: uppercase;
}

.logo__text small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav > ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.95rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav > ul > li > a:hover::after,
.nav > ul > li > a.is-active::after {
  transform: scaleX(1);
}

/* Untermenü */

.nav__item--has-children {
  display: flex;
  align-items: stretch;
}

.nav__parent {
  display: inline-flex;
  align-items: center;
}

.nav__sub-toggle {
  display: grid;
  place-items: center;
  align-self: center;
  width: 22px;
  height: 22px;
  margin-left: -0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.nav__sub-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.18s ease;
}

.nav__contact {
  display: none;
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 210;
  display: none;
  background: #ffffff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 34px 54px -34px rgba(28, 41, 93, 0.55);
}

.nav__sub--mega {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 2.5rem));
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem 1.5rem;
  padding: 1.35rem 1.5rem 1.15rem;
  border-radius: 0 0 12px 12px;
  animation: megaIn 0.22s ease;
}

@keyframes megaIn {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.nav__item--has-children:hover .nav__sub--mega,
.nav__item--has-children:focus-within .nav__sub--mega,
.nav__item--has-children.is-open .nav__sub--mega {
  display: grid;
}

.nav__item--has-children:hover .nav__sub-toggle svg,
.nav__item--has-children.is-open .nav__sub-toggle svg {
  transform: rotate(180deg);
}

.nav__mega-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.nav__mega-item a:hover {
  background: var(--bg-alt);
}

.nav__mega-img {
  width: 78px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__mega-body {
  display: block;
  min-width: 0;
}

.nav__mega-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--base);
  transition: color 0.18s ease;
}

.nav__mega-item a:hover .nav__mega-body strong {
  color: var(--accent-dark);
}

.nav__mega-body small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.76rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.nav__mega-item a.is-active .nav__mega-body strong {
  color: var(--accent-dark);
}

.nav__mega-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.55rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.nav__mega-cta > span {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav__mega-actions {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.mega-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--base);
}

.mega-phone svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
}

.mega-phone:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--base-dark);
  color: rgba(255, 255, 255, 0.85);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__slide.is-active img {
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}

.hero__content > *,
.hero__card {
  animation: heroRise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero__content > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero__content > *:nth-child(2) {
  animation-delay: 0.18s;
}

.hero__content > *:nth-child(3) {
  animation-delay: 0.26s;
}

.hero__content > *:nth-child(4) {
  animation-delay: 0.34s;
}

.hero__card {
  animation-delay: 0.3s;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__slide figcaption {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.25rem;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  background: rgba(13, 19, 44, 0.85);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__slide figcaption::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
}

@media (min-width: 1025px) {
  .hero__slide figcaption {
    display: inline-flex;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(98deg, rgba(13, 19, 44, 0.96) 0%, rgba(13, 19, 44, 0.86) 46%, rgba(13, 19, 44, 0.42) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(4rem, 8vw, 7rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}

.hero p {
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.hero__card {
  position: relative;
  overflow: hidden;
  background: rgba(13, 19, 44, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 70px -44px rgba(0, 0, 0, 0.85);
}

.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(43, 152, 230, 0));
}

.hero__card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf7a;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-block: 1.1rem;
  color: #ffffff;
}

.hero__phone svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.hero__phone:hover svg {
  transform: rotate(-8deg) scale(1.06);
}

.hero__phone small {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__phone strong {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.hero__phone:hover strong {
  color: var(--accent);
}

.hero__cta {
  width: 100%;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__list a,
.hero__list .hero__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0.6rem;
  margin-inline: -0.6rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.18s ease, color 0.18s ease;
}

.hero__list a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.hero__list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hero__list small {
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.hero__value {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-word;
}

.hero__nav {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
}

.hero__counter {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.hero__dots button {
  width: 26px;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.18s ease;
}

.hero__dots button.is-active {
  background: var(--accent);
}

.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
}

@keyframes heroProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3;
  display: block;
  width: 2px;
  height: 46px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.hero__scroll::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 2.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    transform: translateY(34px);
    opacity: 1;
  }
  100% {
    transform: translateY(38px);
    opacity: 0;
  }
}

/* ---------- Facts ---------- */

.facts {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.facts__item {
  padding: 1.4rem 0;
}

.facts__item:first-child {
  border-left: 0;
}

.facts__item b {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--base);
  line-height: 1.25;
}

.facts__item span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Cards / Leistungen ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

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

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -36px rgba(28, 41, 93, 0.45);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card__media img {
  transform: scale(1.035);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.5rem;
}

.card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.card__body p {
  font-size: 0.93rem;
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--base);
}

.card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}

.card__link:hover {
  color: var(--accent-dark);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* ---------- Checkliste ---------- */

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.96rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e7cc4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.section--dark .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235fb4ec' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Über mich ---------- */

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.about__eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.about__content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.about__content p {
  margin-bottom: 1rem;
}

.about__content .checklist {
  margin-top: 1.5rem;
}

/* ---------- Ablauf ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(43, 152, 230, 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}

.steps.reveal.is-visible::before {
  transform: scaleX(1);
}

.step {
  padding-top: 1.3rem;
}

.step__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}

.step h3 {
  font-size: 1.02rem;
  margin-block: 0.65rem 0.5rem;
}

.step p {
  font-size: 0.9rem;
}

.section--dark .step {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.section--dark .step__num {
  color: #6cb8ee;
}

.section--dark .step p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- USP ---------- */

.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(43, 152, 230, 0.12);
  border-radius: 10px;
  color: var(--accent-dark);
}

.usp__icon svg {
  width: 22px;
  height: 22px;
}

.section--dark .usp__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #6cb8ee;
}

.usp h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.usp p {
  font-size: 0.9rem;
}

.section--dark .usp p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- CTA ---------- */

.cta {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.75rem;
}

.cta .btn-row {
  justify-content: center;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

a.contact-item:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 40px -34px rgba(28, 41, 93, 0.55);
}

.contact-item__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(43, 152, 230, 0.12);
  border-radius: 10px;
  color: var(--accent-dark);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--base);
}

.form-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 30px 60px -50px rgba(28, 41, 93, 0.55);
}

.form-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--base);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--base);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23262b30' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(38, 43, 48, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--base);
  box-shadow: 0 0 0 3px rgba(43, 152, 230, 0.3);
}

.field input.is-error,
.field select.is-error,
.field textarea.is-error {
  border-color: #b3382c;
}

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
  cursor: pointer;
}

.check input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent-dark);
  cursor: pointer;
}

.check a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.3em;
}

.form-status.is-success {
  color: #2e7d4f;
}

.form-status.is-error {
  color: #b3382c;
}

/* ---------- Galerie ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chips button {
  padding: 0.5rem 1.05rem;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--base);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.chips button:hover {
  border-color: var(--base);
}

.chips button.is-active {
  background: var(--base);
  border-color: var(--base);
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(13, 19, 44, 0.9), rgba(13, 19, 44, 0));
  color: #ffffff;
}

.gallery-item__overlay b {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-item__overlay span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-item.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(11, 16, 38, 0.95);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lightbox__img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
  border: 1px solid var(--line-dark);
  background: var(--base-dark);
}

.lightbox__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
}

.lightbox__caption b {
  font-family: var(--font-head);
  font-size: 1rem;
}

.lightbox__caption span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.lightbox__controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lightbox__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lightbox__btn svg {
  width: 18px;
  height: 18px;
}

.lightbox__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--base);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

/* ---------- Unterseiten ---------- */

.page-hero {
  background: var(--base);
  color: rgba(255, 255, 255, 0.85);
}

.page-hero__inner {
  padding-block: clamp(3rem, 6vw, 4.75rem);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.page-hero h1::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 1.15rem;
  background: var(--accent);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin-inline: 0.45rem;
  color: rgba(255, 255, 255, 0.38);
}

.content-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.content-block:first-child {
  padding-top: 0;
}

.content-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.content-block--text {
  grid-template-columns: 1fr;
}

.content-block--flip .content-block__body {
  order: 2;
}

.content-block--flip .content-block__media {
  order: 1;
}

.content-block__body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 1rem;
}

.content-block__body p {
  margin-bottom: 1rem;
}

.content-block__body .checklist {
  margin-top: 1.4rem;
}

.content-block__media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.content-block__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Info-Box / Legal ---------- */

.info-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
}

.info-box h3 {
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
}

.info-box p {
  font-size: 0.94rem;
}

.info-box p + p {
  margin-top: 0.6rem;
}

.info-box a {
  color: var(--base);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.legal h2 {
  font-size: 1.2rem;
  margin-block: 2rem 0.75rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 1rem;
  margin-block: 1.5rem 0.5rem;
}

.legal p,
.legal li {
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
}

.legal ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.legal a {
  color: var(--base);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal .notice {
  background: rgba(226, 163, 60, 0.18);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal address {
  font-style: normal;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--base-dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo {
  height: 96px;
  width: auto;
}

.footer__claim {
  max-width: 330px;
  font-size: 0.9rem;
}

.footer__col h4 {
  margin-bottom: 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col a,
.footer__col span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.footer__credit svg {
  width: 12px;
  height: 12px;
  color: #ff7a7a;
  flex-shrink: 0;
}

.footer__credit:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.footer__bottom a:hover {
  color: var(--accent);
}

/* ---------- To top ---------- */

.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--base);
  border: 1px solid var(--base);
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.to-top svg {
  width: 17px;
  height: 17px;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--base);
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduzierte Bewegung ---------- */

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

  .hero__slide.is-active img {
    animation: none;
  }

  .hero__content > *,
  .hero__card {
    animation: none;
  }

  .hero__scroll::after {
    animation: none;
  }

  .hero__status-dot {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--base-dark);
    padding: clamp(5.5rem, 16vh, 8.5rem) clamp(1.4rem, 6vw, 2.5rem) 2rem;
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav > ul {
    display: block;
    height: auto;
  }

  .nav > ul > li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    height: auto;
    border-bottom: 0;
    font-size: clamp(1.15rem, 4.6vw, 1.5rem);
    letter-spacing: 0.03em;
    color: #ffffff;
  }

  .nav a:hover {
    background: transparent;
    color: var(--accent);
  }

  .nav__sub-toggle {
    color: var(--base);
  }

  .nav a.is-active {
    color: #6cb8ee;
  }

  .nav > ul > li > a::after {
    display: none;
  }

  .nav__parent {
    display: flex;
  }

  .nav__parent svg {
    display: none;
  }

  .nav__sub-toggle {
    position: absolute;
    top: 0.75rem;
    right: 0;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: #ffffff;
  }

  .nav__sub-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.18s ease;
  }

  .nav__item--has-children.is-open .nav__sub-toggle svg {
    transform: rotate(180deg);
  }

  .nav__sub {
    position: static;
    display: none;
    min-width: 0;
    padding: 0.2rem 0 1rem 1.1rem;
    border: 0;
    border-left: 3px solid rgba(43, 152, 230, 0.65);
    box-shadow: none;
    margin-bottom: 0.4rem;
    background: transparent;
  }

  .nav__item--has-children.is-open .nav__sub {
    display: block;
  }

  .nav__sub--mega {
    left: auto;
    transform: none;
    width: auto;
    grid-template-columns: 1fr;
    border-radius: 0;
    animation: none;
  }

  .nav__mega-img,
  .nav__mega-body small,
  .nav__mega-cta {
    display: none;
  }

  .nav__mega-body strong {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
  }

  .nav__mega-item a.is-active .nav__mega-body strong {
    color: #6cb8ee;
  }

  .nav__mega-item a {
    padding: 0.65rem 0;
    border-radius: 0;
  }

  .nav__mega-item a:hover {
    background: transparent;
  }

  .nav__contact {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-top: auto;
    padding-top: 2.4rem;
  }

  .nav__contact .btn {
    width: 100%;
    padding: 1.1rem;
  }

  .nav__contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
  }

  .nav__contact-phone svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
  }

  .nav__contact-mail,
  .nav__contact-hours {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav__contact-mail {
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
  }

  .nav.is-open > ul > li {
    animation: navItemIn 0.35s ease both;
  }

  .nav.is-open > ul > li:nth-child(1) {
    animation-delay: 0.04s;
  }

  .nav.is-open > ul > li:nth-child(2) {
    animation-delay: 0.1s;
  }

  .nav.is-open > ul > li:nth-child(3) {
    animation-delay: 0.16s;
  }

  .nav.is-open > ul > li:nth-child(4) {
    animation-delay: 0.22s;
  }

  .nav.is-open .nav__contact {
    animation: navItemIn 0.4s ease 0.28s both;
  }

  @keyframes navItemIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .nav-toggle {
    display: flex;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
  }

  .hero__scroll {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__main {
    position: static;
    align-items: center;
    padding-left: 1.1rem;
    padding-right: 2.1rem;
    gap: 1rem;
  }

  .header__brand {
    padding-right: 2.6rem;
  }

  .header__brand .logo__img,
  .logo__img {
    height: 54px;
  }

  .header__phone small {
    display: none;
  }

  .header__phone strong {
    white-space: nowrap;
    font-size: 0.94rem;
  }

  .header__actions {
    gap: 0.75rem;
  }

  .nav > ul {
    height: auto;
  }

  .nav a {
    height: auto;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .section-head2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .facts__item {
    border-top: 1px solid var(--line);
  }

  .facts__item:nth-child(1),
  .facts__item:nth-child(2) {
    border-top: 0;
  }

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

  .grid-3,
  .grid-4,
  .usps,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .contact-grid,
  .content-block,
  .content-block--flip {
    grid-template-columns: 1fr;
  }

  .content-block--flip .content-block__body,
  .content-block--flip .content-block__media {
    order: initial;
  }

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

@media (max-width: 640px) {
  .topbar__hours {
    display: none;
  }

  .logo__img {
    height: 46px;
  }

  .header__phone strong {
    font-size: 0.88rem;
  }

  .footer__logo {
    height: 76px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .usps,
  .steps,
  .gallery-grid,
  .form-row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .facts__item,
  .facts__item:nth-child(2) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .facts__item:first-child {
    border-top: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__media::after {
    display: none;
  }
}
