:root {
  --ink: #16211c;
  --muted: #5d6a63;
  --paper: #f8f4ea;
  --surface: #ffffff;
  --line: rgba(211, 162, 69, 0.2);
  --green: #27c7df;
  --green-dark: #0a2e35;
  --clay: #b9822f;
  --gold: #d3a245;
  --gold-light: #f1c66d;
  --logo-blue: #27c7df;
  --logo-blue-dark: #0c5361;
  --shadow: 0 20px 55px rgba(20, 30, 24, 0.15);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.quick-contact {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  top: 50%;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.modal-open .quick-contact,
body.nav-open .quick-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(241, 198, 109, 0.42);
  border-radius: 8px;
  color: var(--logo-blue);
  background:
    radial-gradient(circle at 22% 16%, rgba(39, 199, 223, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(7, 19, 22, 0.94), rgba(16, 26, 21, 0.94));
  box-shadow:
    0 12px 26px rgba(4, 10, 7, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    width 240ms var(--ease-out),
    border-color 200ms ease,
    color 200ms ease,
    background 200ms ease,
    transform 200ms ease;
}

.quick-contact-link span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    max-width 240ms var(--ease-out),
    opacity 170ms ease;
}

.quick-contact-link:hover,
.quick-contact-link:focus,
.quick-contact-link:focus-visible {
  width: 118px;
  gap: 8px;
  color: var(--gold-light);
  border-color: var(--logo-blue);
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 199, 223, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(7, 19, 22, 0.96), rgba(16, 26, 21, 0.96));
  transform: translateX(-4px);
}

.quick-contact-whatsapp:hover,
.quick-contact-whatsapp:focus,
.quick-contact-whatsapp:focus-visible {
  width: 148px;
}

.quick-contact-link:hover span,
.quick-contact-link:focus span,
.quick-contact-link:focus-visible span {
  max-width: 90px;
  opacity: 1;
}

.quick-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.quick-icon-whatsapp {
  width: 25px;
  height: 25px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 44px);
  color: #fff;
  transition:
    background 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    color 520ms ease,
    box-shadow 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    backdrop-filter 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 520ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  color: #fff;
  background: rgba(13, 24, 19, 0.82);
  box-shadow: 0 18px 45px rgba(4, 10, 7, 0.2);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 34px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 24, 19, 0.38), rgba(13, 24, 19, 0));
  filter: blur(12px);
  opacity: 0;
  content: "";
  transition: opacity 820ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header.is-scrolled::after,
.site-header.nav-visible::after {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 86px;
  height: 76px;
  min-width: 0;
}

.brand-logo {
  width: 104px;
  height: 104px;
  border-radius: 0;
  object-fit: contain;
  transform: translate(-10px, 6px);
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  font-size: 0.78rem;
  color: currentColor;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 220ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--logo-blue);
  box-shadow: 0 0 16px rgba(39, 199, 223, 0.42);
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--logo-blue);
}

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

.site-nav a:focus-visible {
  outline: 2px solid var(--logo-blue);
  outline-offset: 7px;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.nav-visible .site-nav a:hover,
.site-header.nav-visible .site-nav a.is-active {
  background: transparent;
  color: var(--logo-blue);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 80px) 72px;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-garten-pflasterreinigung.png");
  background-size: cover;
  background-position: center;
  filter: blur(3.5px) saturate(0.98);
  transform: scale(1.045);
  animation: heroDrift 18s var(--ease-out) infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 25, 18, 0.9) 0%, rgba(12, 25, 18, 0.66) 42%, rgba(12, 25, 18, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 25, 18, 0.45), rgba(12, 25, 18, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextIn 780ms var(--ease-out) forwards;
}

.hero-content .eyebrow {
  animation-delay: 120ms;
}

.hero-content h1 {
  transform: translateX(-58px);
  animation-name: heroTitleIn;
  animation-duration: 920ms;
  animation-delay: 260ms;
}

.hero-copy {
  animation-delay: 420ms;
}

.hero-actions {
  animation-delay: 560ms;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroDrift {
  to {
    transform: scale(1.075) translate3d(-1.1%, -0.8%, 0);
  }
}

@keyframes footerIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes facadeSlideIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes facadeTextIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes rollrasenStepIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  transition:
    opacity 760ms var(--ease-out),
    filter 760ms var(--ease-out),
    transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-reveal="left"] {
  transform: translateX(-58px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="scale"] {
  transform: translateY(22px) scale(0.965);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

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

  .hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-bg {
    animation: none;
  }

  .site-footer > * {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-nav a,
  .site-nav a::after,
  .site-header,
  .site-header::after,
  .btn,
  .service-card,
  .steps article,
  .split-pane::before,
  .split-pane span,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .footer-contact-link {
    transition: none;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.btn::after {
  position: absolute;
  inset: -120% -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.32), transparent 65%);
  transform: translateX(-80%) rotate(8deg);
  content: "";
  transition: transform 680ms var(--ease-out);
}

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

.btn:hover::after {
  transform: translateX(80%) rotate(8deg);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  color: #051316;
  background: linear-gradient(135deg, var(--logo-blue), #7be8f2);
  box-shadow: 0 18px 36px rgba(39, 199, 223, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7be8f2, var(--gold-light));
}

.btn-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.btn-secondary {
  border-color: rgba(241, 198, 109, 0.72);
  color: #fff;
  background: rgba(39, 199, 223, 0.1);
}

.btn-secondary:hover {
  border-color: var(--logo-blue);
  background: rgba(39, 199, 223, 0.18);
}

.section {
  padding: 96px clamp(20px, 6vw, 80px);
}

.intro {
  background: var(--surface);
}

.intro-grid,
.approach,
.contact-shell,
.contact-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.approach-copy h2,
.contact-promise h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro-copy p,
.approach-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.platform-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 10px;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  padding: 8px 8px;
  border: 1px solid rgba(211, 162, 69, 0.32);
  border-radius: 8px;
  color: var(--ink);
  white-space: nowrap;
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 199, 223, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 234, 0.88));
  box-shadow: 0 14px 34px rgba(20, 30, 24, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 240ms var(--ease-out);
}

.platform-icon svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--logo-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.platform-icon:nth-child(even) svg {
  stroke: var(--gold);
}

.platform-icon:hover {
  border-color: rgba(39, 199, 223, 0.5);
  color: var(--logo-blue-dark);
  box-shadow: 0 18px 42px rgba(39, 199, 223, 0.14);
  transform: translateY(-2px);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  max-width: 380px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 42% 35%, rgba(39, 199, 223, 0.18), transparent 54%),
    radial-gradient(circle at 65% 72%, rgba(211, 162, 69, 0.22), transparent 48%),
    linear-gradient(135deg, #0d1714, #07100d);
  box-shadow: var(--shadow);
}

.brand-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(211, 162, 69, 0.28);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.brand-panel img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 620ms var(--ease-out);
}

.brand-panel:hover img {
  transform: scale(1.035);
}

.services {
  background:
    radial-gradient(circle at 12% 12%, rgba(39, 199, 223, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(211, 162, 69, 0.16), transparent 34%),
    #eef2ea;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(39, 199, 223, 0.035), rgba(211, 162, 69, 0.035)),
    var(--surface);
  box-shadow: 0 8px 26px rgba(22, 33, 28, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(39, 199, 223, 0.46);
  box-shadow: 0 18px 42px rgba(22, 33, 28, 0.12);
  transform: translateY(-5px);
}

.service-card h3,
.steps h3 {
  margin: 16px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
  text-wrap: balance;
}

.service-card p,
.steps p {
  max-width: 31ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.62;
}

.service-list-card {
  grid-column: span 3;
  align-items: stretch;
  text-align: left;
}

.service-list-card h3 {
  text-align: center;
}

.service-list-card p {
  max-width: none;
}

.service-list-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.service-list-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.rollrasen-showcase {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 8px;
  background: #fbfaf5;
  box-shadow: 0 26px 70px rgba(22, 33, 28, 0.14);
}

.rollrasen-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: clamp(520px, 58vw, 660px);
  background:
    linear-gradient(90deg, #fbfaf5 0%, rgba(251, 250, 245, 0.96) 46%, rgba(251, 250, 245, 0) 66%),
    linear-gradient(135deg, rgba(39, 199, 223, 0.08), rgba(211, 162, 69, 0.08));
}

.rollrasen-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.rollrasen-eyebrow,
.rollrasen-mini-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rollrasen-hero h3 {
  max-width: 640px;
  margin: 0;
  color: #111b18;
  font-size: clamp(2.45rem, 6vw, 5.1rem);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.rollrasen-hero h3 span {
  color: var(--logo-blue-dark);
}

.rollrasen-hero-copy > p:not(.rollrasen-eyebrow) {
  max-width: 56ch;
  margin: 18px 0 0;
  color: #263832;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.62;
}

.rollrasen-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 660px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.rollrasen-checks li {
  position: relative;
  min-width: 0;
  padding-left: 30px;
  color: #23342e;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
}

.rollrasen-checks li::before {
  position: absolute;
  left: 3px;
  top: 0.1em;
  width: 8px;
  height: 15px;
  border-right: 2px solid var(--logo-blue-dark);
  border-bottom: 2px solid var(--logo-blue-dark);
  content: "";
  transform: rotate(42deg);
}

.rollrasen-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 32px;
}

.rollrasen-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: #10241d;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.rollrasen-contact-link svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--logo-blue-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rollrasen-whatsapp-link svg {
  stroke: #16894f;
}

.rollrasen-visual {
  position: relative;
  min-height: inherit;
  margin: 0 0 0 clamp(-180px, -11vw, -92px);
  overflow: hidden;
  background: #fbfaf5;
}

.rollrasen-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fbfaf5 0%, rgba(251, 250, 245, 0.9) 10%, rgba(251, 250, 245, 0.5) 24%, rgba(251, 250, 245, 0.14) 43%, rgba(251, 250, 245, 0) 62%),
    linear-gradient(0deg, rgba(7, 19, 22, 0.2), rgba(7, 19, 22, 0));
  content: "";
}

.rollrasen-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.05) contrast(0.98);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.26) 8%, rgba(0, 0, 0, 0.78) 21%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.26) 8%, rgba(0, 0, 0, 0.78) 21%, #000 34%, #000 100%);
}

.rollrasen-stats {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(140px, 13vw, 210px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 198, 109, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 19, 22, 0.9);
  box-shadow: 0 18px 44px rgba(4, 10, 7, 0.3);
  backdrop-filter: blur(10px);
}

.rollrasen-stats span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
}

.rollrasen-stats span:last-child {
  border-right: 0;
}

.rollrasen-stats strong {
  color: var(--gold-light);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1;
}

.rollrasen-process {
  padding: clamp(42px, 5vw, 64px) clamp(22px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 244, 234, 0.94)),
    #f8f4ea;
}

.rollrasen-section-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.rollrasen-section-head h4,
.rollrasen-benefits h4 {
  margin: 0;
  color: #111b18;
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.rollrasen-section-head p:not(.rollrasen-mini-kicker) {
  max-width: 58ch;
  margin: 14px auto 0;
  color: #405149;
}

.rollrasen-step-slider {
  display: grid;
  gap: 18px;
}

.rollrasen-step-stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.rollrasen-step-arrow {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 74px;
  border: 1px solid rgba(211, 162, 69, 0.46);
  border-radius: 8px;
  color: #151007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 24px rgba(22, 33, 28, 0.12);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.rollrasen-step-arrow:hover,
.rollrasen-step-arrow:focus-visible {
  background: linear-gradient(135deg, #ffe19b, #c89432);
  box-shadow: 0 16px 30px rgba(22, 33, 28, 0.16);
  transform: translateY(-2px);
}

.rollrasen-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rollrasen-step-grid li {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 310px;
  padding: 46px 26px 28px;
  border: 1px solid rgba(211, 162, 69, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: 0 10px 26px rgba(22, 33, 28, 0.06);
  text-align: center;
}

.rollrasen-step-slider.is-ready .rollrasen-step-grid li {
  display: none;
}

.rollrasen-step-slider.is-ready .rollrasen-step-grid li.is-visible {
  display: grid;
  animation: rollrasenStepIn 320ms var(--ease-out) both;
}

.rollrasen-step-grid span {
  position: absolute;
  top: -12px;
  left: 16px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--logo-blue-dark);
  box-shadow: 0 8px 18px rgba(12, 83, 97, 0.22);
  font-size: 0.86rem;
  font-weight: 900;
}

.rollrasen-step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--gold);
}

.rollrasen-step-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 8px 14px rgba(211, 162, 69, 0.18));
}

.rollrasen-step-grid strong {
  display: block;
  max-width: 20ch;
  color: #111b18;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.rollrasen-step-grid p {
  max-width: 30ch;
  margin: 0;
  color: #495b52;
  font-size: 0.96rem;
  line-height: 1.56;
  text-align: center;
}

.rollrasen-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  padding: clamp(42px, 5vw, 64px) clamp(24px, 5vw, 64px);
  background: #fff;
}

.rollrasen-benefits ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rollrasen-benefits li {
  position: relative;
  padding-left: 30px;
  color: #314239;
  font-weight: 750;
  line-height: 1.42;
}

.rollrasen-benefits li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25945d;
  font-size: 0.8rem;
  font-weight: 900;
  content: "✓";
}

.rollrasen-before-after {
  --compare-position: 50%;
  position: relative;
  aspect-ratio: 1400 / 941;
  height: auto;
  min-height: clamp(320px, 31vw, 440px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 199, 223, 0.14), rgba(211, 162, 69, 0.12)),
    #071316;
  box-shadow: 0 24px 58px rgba(4, 10, 7, 0.22);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.rollrasen-compare-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.98);
}

.rollrasen-compare-after {
  object-position: center;
}

.rollrasen-compare-before {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.rollrasen-compare-before .rollrasen-compare-image {
  object-position: 46% 58%;
  filter: saturate(0.98) contrast(1.03);
}

.rollrasen-before-after::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 19, 22, 0.28), transparent 22%, transparent 78%, rgba(7, 19, 22, 0.24)),
    linear-gradient(0deg, rgba(7, 19, 22, 0.12), transparent 35%);
  content: "";
}

.rollrasen-compare-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 19, 22, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(4, 10, 7, 0.2);
}

.rollrasen-compare-label-before {
  left: 16px;
}

.rollrasen-compare-label-after {
  right: 16px;
}

.rollrasen-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  display: grid;
  width: 46px;
  padding: 0;
  border: 0;
  color: #071316;
  background: transparent;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.rollrasen-compare-handle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(7, 19, 22, 0.18), 0 0 20px rgba(4, 10, 7, 0.42);
  content: "";
  transform: translateX(-50%);
}

.rollrasen-compare-handle span {
  position: relative;
  align-self: center;
  justify-self: center;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 28px rgba(4, 10, 7, 0.28);
}

.rollrasen-compare-handle span::before {
  color: #071316;
  font-size: 1.25rem;
  font-weight: 900;
  content: "↔";
}

.rollrasen-compare-handle:focus-visible span {
  outline: 3px solid var(--logo-blue);
  outline-offset: 3px;
}

.rollrasen-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(24px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 199, 223, 0.13), rgba(211, 162, 69, 0.14)),
    #0b1b18;
}

.rollrasen-cta strong {
  display: block;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  line-height: 1.16;
}

.rollrasen-cta span {
  display: block;
  max-width: 58ch;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.rollrasen-cta-phone {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.service-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--logo-blue);
  background: none;
  box-shadow: none;
  isolation: auto;
  transition:
    transform 260ms var(--ease-out);
}

.service-logo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(0deg, rgba(5, 16, 14, 0.18), transparent 52%);
  content: "";
  transition: opacity 260ms ease;
}

.service-logo::before,
.service-logo::after {
  display: none;
}

.service-logo::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-blue), var(--gold-light));
  box-shadow: 0 6px 14px rgba(4, 10, 7, 0.26);
  content: "";
}

.service-card:hover .service-logo {
  transform: translateY(-3px) scale(1.06);
}

.service-card:hover .service-logo::before {
  opacity: 0.72;
}

.service-mark {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: var(--logo-blue);
  filter: drop-shadow(0 8px 12px rgba(4, 10, 7, 0.24));
  transition: color 220ms ease, transform 220ms var(--ease-out);
}

.service-mark path,
.service-mark circle {
  vector-effect: non-scaling-stroke;
}

.service-card:hover .service-mark {
  color: var(--gold-light);
  transform: scale(1.05);
}

.service-photo-card {
  position: relative;
  grid-column: span 3;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  background: #071417;
  isolation: isolate;
}

.service-photo-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--service-photo) center / cover;
  content: "";
  filter: saturate(0.98) brightness(0.94);
  transform: scale(1.02);
  transition:
    filter 260ms ease,
    transform 420ms var(--ease-out);
}

.service-photo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(7, 19, 22, 0.08), rgba(7, 19, 22, 0.18)),
    radial-gradient(circle at 18% 14%, rgba(39, 199, 223, 0.08), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(211, 162, 69, 0.1), transparent 36%);
  content: "";
}

.service-photo-card:hover::before {
  filter: saturate(1.05) brightness(0.98);
  transform: scale(1.06);
}

.service-photo-cleaning {
  --service-photo: url("assets/gebaeudereinigung-overview.jpg");
}

.service-photo-garden {
  --service-photo: url("assets/garten-overview.jpg");
}

.hausmeister {
  background:
    radial-gradient(circle at 14% 20%, rgba(39, 199, 223, 0.12), transparent 32%),
    radial-gradient(circle at 88% 74%, rgba(211, 162, 69, 0.15), transparent 34%),
    linear-gradient(135deg, #fbfaf5, #eef2ea);
}

.hausmeister-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.hausmeister-copy,
.hausmeister-panel {
  border: 1px solid rgba(211, 162, 69, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(22, 33, 28, 0.08);
}

.hausmeister-copy {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
}

.hausmeister-copy h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.hausmeister-lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hausmeister-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.hausmeister-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.hausmeister-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--logo-blue);
  font-weight: 900;
  content: "✓";
}

.hausmeister-panel {
  display: grid;
  gap: 20px;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 199, 223, 0.2), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(211, 162, 69, 0.24), transparent 38%),
    linear-gradient(135deg, #0c1a16, #07110f);
}

.hausmeister-badge {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(211, 162, 69, 0.42);
  border-radius: 8px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.hausmeister-badge svg {
  width: 38px;
  height: 38px;
}

.hausmeister-tagline {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.hausmeister-stats {
  display: grid;
  gap: 10px;
}

.hausmeister-stats span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.hausmeister-stats strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.hausmeister-panel .btn {
  width: fit-content;
}

.gallery {
  background: var(--surface);
}

.gallery-kicker {
  margin: 16px 0 0;
  font-size: 0.96rem;
}

.split-window {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  min-height: clamp(390px, 50vw, 620px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.split-window::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(211, 162, 69, 0.22);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.split-pane {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #050505;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.split-pane::before {
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(4px) saturate(0.95) brightness(0.78);
  transform: scale(1.035);
  content: "";
  transition:
    filter 560ms var(--ease-out),
    transform 560ms var(--ease-out);
}

.split-pane::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.58)),
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.38));
  content: "";
}

.split-pane-garden {
  clip-path: none;
}

.split-pane-cleaning {
  clip-path: none;
}

.split-pane-garden::before {
  background-image: url("assets/gallery/garten/garten-001.jpg");
}

.split-pane-cleaning::before {
  background-image: url("assets/gallery/reinigung/reinigung-001.jpg");
}

.split-pane span {
  position: relative;
  z-index: 3;
  max-width: 88%;
  color: var(--logo-blue);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.55),
    0 18px 42px rgba(0, 0, 0, 0.55);
  transition: transform 180ms ease, color 180ms ease;
}

.split-pane:hover span,
.split-pane:focus-visible span {
  color: #66e6f3;
  transform: translateY(-4px);
}

.split-pane:hover::before,
.split-pane:focus-visible::before {
  filter: blur(3px) saturate(1.06) brightness(0.88);
  transform: scale(1.08);
}

.split-pane:active span {
  color: var(--gold-light);
}

.split-pane:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -8px;
}

.split-pane-cleaning span {
  color: var(--logo-blue);
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 8, 0.86);
  backdrop-filter: blur(14px);
}

.gallery-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1180px, 100%);
}

.gallery-toolbar {
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.gallery-control,
.gallery-arrow {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #151007;
  background: linear-gradient(135deg, #f1c66d, var(--gold));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.gallery-control {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.92rem;
}

.gallery-arrow {
  width: 54px;
  height: 72px;
  font-size: 3rem;
  line-height: 1;
}

.gallery-control:hover,
.gallery-arrow:hover {
  background: linear-gradient(135deg, #f7d889, #c89432);
}

.gallery-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.gallery-figure img {
  display: block;
  width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  background: #050505;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-figure img.is-changing {
  opacity: 0;
  transform: translateX(18px) scale(0.985);
}

.gallery-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent);
  font-weight: 900;
}

.gallery-figure small {
  color: var(--gold);
  font-size: 0.95rem;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.approach-copy p {
  margin-top: 22px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 24px;
  border-left: 4px solid var(--logo-blue);
  background:
    linear-gradient(90deg, rgba(39, 199, 223, 0.06), transparent 42%),
    var(--surface);
  box-shadow: 0 8px 26px rgba(22, 33, 28, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.steps article:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(22, 33, 28, 0.1);
  transform: translateX(5px);
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.facade-slider {
  grid-column: 1 / -1;
  display: grid;
  gap: 22px;
  margin-top: 10px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(211, 162, 69, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 199, 223, 0.12), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(211, 162, 69, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 234, 0.96));
  box-shadow: 0 16px 44px rgba(22, 33, 28, 0.09);
}

.facade-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.facade-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.facade-slider-controls span {
  min-width: 54px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.facade-arrow {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(211, 162, 69, 0.46);
  border-radius: 8px;
  color: #151007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 24px rgba(22, 33, 28, 0.12);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.facade-arrow:hover,
.facade-arrow:focus-visible {
  background: linear-gradient(135deg, #ffe19b, #c89432);
  box-shadow: 0 16px 30px rgba(22, 33, 28, 0.16);
  transform: translateY(-2px);
}

.facade-slides {
  position: relative;
  overflow: hidden;
}

.facade-slide {
  display: none;
  gap: 14px;
  min-height: 320px;
  animation: facadeSlideIn 260ms var(--ease-out) both;
}

.facade-slide.is-active {
  display: grid;
}

.facade-slide.is-active > * {
  animation: facadeTextIn 520ms var(--ease-out) both;
}

.facade-slide.is-active > :nth-child(2) {
  animation-delay: 70ms;
}

.facade-slide.is-active > :nth-child(3) {
  animation-delay: 140ms;
}

.facade-slide.is-active > :nth-child(4) {
  animation-delay: 210ms;
}

.facade-slide.is-active > :nth-child(5) {
  animation-delay: 280ms;
}

.facade-slide h4 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.facade-proof-image {
  width: min(100%, 640px);
  max-width: 640px;
  margin: 2px auto 0;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 22, 0.12);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 18px 38px rgba(22, 33, 28, 0.14);
}

.facade-proof-image img {
  display: block;
  width: 100%;
  height: auto;
}

.facade-slide p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.facade-slide ul {
  display: grid;
  gap: 8px;
  max-width: 920px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facade-slide li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 750;
}

.facade-slide li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--logo-blue);
  content: "";
}

.facade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 621px) {
  .facade-actions-final {
    margin-top: 48px;
  }
}

.contact-promise {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(211, 162, 69, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 20%, rgba(39, 199, 223, 0.12), transparent 32%),
    radial-gradient(circle at 90% 86%, rgba(211, 162, 69, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 249, 244, 0.98));
  box-shadow: 0 16px 44px rgba(22, 33, 28, 0.08);
}

.contact-promise .section-kicker {
  color: var(--gold);
}

.contact-promise h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.contact-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-shell {
  display: grid;
  gap: 20px;
}

.contact {
  background:
    radial-gradient(circle at 12% 0%, rgba(39, 199, 223, 0.1), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(211, 162, 69, 0.14), transparent 32%),
    var(--surface);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(211, 162, 69, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(39, 199, 223, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(211, 162, 69, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(8, 22, 24, 0.96), rgba(10, 40, 46, 0.9));
  box-shadow: 0 28px 70px rgba(4, 10, 7, 0.34);
}

.contact-intro p {
  margin-top: 18px;
}

.contact-intro {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.contact-intro .section-kicker {
  color: var(--gold-light);
}

.contact-intro h2 {
  color: #fff;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-logo {
  display: block;
  width: clamp(128px, 18vw, 184px);
  height: clamp(128px, 18vw, 184px);
  margin: 0 auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(39, 199, 223, 0.2));
  transition: filter 220ms ease, transform 220ms ease;
}

.contact-panel:hover .contact-logo {
  filter:
    drop-shadow(0 18px 34px rgba(39, 199, 223, 0.24))
    drop-shadow(0 10px 24px rgba(211, 162, 69, 0.14));
  transform: translateY(-4px) scale(1.015);
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-form label span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form .honeypot {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(211, 162, 69, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 11px 14px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--logo-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(39, 199, 223, 0.14);
  transform: translateY(-1px);
}

.contact-form textarea::placeholder {
  color: rgba(93, 106, 99, 0.7);
  font-weight: 600;
}

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

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(211, 162, 69, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 199, 223, 0.08), rgba(211, 162, 69, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.privacy-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--logo-blue);
}

.privacy-check span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.privacy-check a {
  color: var(--logo-blue);
  border-bottom: 1px solid rgba(39, 199, 223, 0.38);
}

.form-submit {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.35em;
  color: var(--gold-light);
}

.form-status.is-success {
  color: #98f2c8;
}

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

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(142px, 0.34fr) minmax(320px, 0.95fr) minmax(250px, 0.8fr);
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding: 34px clamp(22px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 9% 20%, rgba(39, 199, 223, 0.16), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(211, 162, 69, 0.18), transparent 28%),
    linear-gradient(135deg, #071316, #101a15);
  overflow: hidden;
  border-top: 1px solid rgba(211, 162, 69, 0.22);
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 199, 223, 0.52), rgba(211, 162, 69, 0.42), transparent);
  content: "";
}

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

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  animation: footerIn 720ms var(--ease-out) both;
}

.footer-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(39, 199, 223, 0.18));
  transition: filter 220ms ease, transform 220ms ease;
}

.footer-brand:hover .footer-logo {
  filter: drop-shadow(0 14px 26px rgba(241, 198, 109, 0.18));
  transform: translateY(-3px);
}

.footer-brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.footer-brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
}

.footer-brand-copy span {
  color: var(--logo-blue);
  font-size: 0.96rem;
  font-weight: 900;
}

.footer-brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  animation: footerIn 720ms var(--ease-out) 120ms both;
}

.footer-contact-link {
  display: grid;
  gap: 2px;
  min-width: 0;
  min-height: 68px;
  align-content: center;
  padding: 13px 15px;
  border: 1px solid rgba(211, 162, 69, 0.24);
  border-left: 2px solid rgba(211, 162, 69, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-contact-link span {
  color: var(--logo-blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact-link strong {
  min-width: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.footer-contact-link:hover {
  border-color: var(--logo-blue);
  background: rgba(39, 199, 223, 0.07);
  transform: translateY(-2px);
}

.footer-contact-link:hover strong {
  color: var(--gold-light);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 0;
  text-align: right;
  animation: footerIn 720ms var(--ease-out) 220ms both;
}

.footer-certifications {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  animation: footerIn 720ms var(--ease-out) 80ms both;
}

.footer-certification {
  display: inline-flex;
  width: clamp(126px, 9.5vw, 142px);
  height: clamp(50px, 3.9vw, 58px);
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
  transition: filter 180ms ease, transform 180ms ease;
}

.footer-certification img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.footer-certification:hover,
.footer-certification:focus-visible {
  filter: drop-shadow(0 10px 20px rgba(39, 199, 223, 0.2));
  transform: translateY(-2px);
}

.footer-meta p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--logo-blue);
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  transition: transform 180ms ease;
}

.footer-links a:hover::after,
.footer-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.legal-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(39, 199, 223, 0.12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(211, 162, 69, 0.16), transparent 30%),
    var(--paper);
}

.legal-page .site-header {
  color: #fff;
  background: rgba(13, 24, 19, 0.88);
  box-shadow: 0 18px 45px rgba(4, 10, 7, 0.18);
  backdrop-filter: blur(16px);
}

.legal-main {
  padding: 138px clamp(20px, 6vw, 80px) 86px;
}

.legal-hero,
.legal-content {
  max-width: 1040px;
  margin: 0 auto;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(39, 199, 223, 0.28), transparent 36%),
    radial-gradient(circle at 88% 75%, rgba(211, 162, 69, 0.3), transparent 34%),
    linear-gradient(135deg, #071316, #0b3037);
  box-shadow: var(--shadow);
}

.legal-hero::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(211, 162, 69, 0.26);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1;
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 199, 223, 0.035), rgba(211, 162, 69, 0.055)),
    #fff;
  box-shadow: 0 16px 44px rgba(22, 33, 28, 0.09);
}

.legal-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(211, 162, 69, 0.18);
}

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

.legal-content h2 {
  margin: 0 0 12px;
  color: var(--logo-blue-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.18;
}

.legal-content p,
.legal-address {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-address {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(211, 162, 69, 0.12), rgba(39, 199, 223, 0.04)),
    #fbfaf6;
  font-style: normal;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--logo-blue-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(39, 199, 223, 0.35);
}

.legal-content a:hover {
  color: var(--gold);
  border-bottom-color: currentColor;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    background: rgba(13, 24, 19, 0.94);
    box-shadow: 0 18px 45px rgba(4, 10, 7, 0.26);
    backdrop-filter: blur(16px);
  }

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

  .site-nav a {
    padding: 14px 4px;
  }

  .hero-content h1 {
    transform: translateY(24px);
    animation-name: heroTextIn;
    animation-duration: 780ms;
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 25, 18, 0.92) 0%, rgba(12, 25, 18, 0.7) 58%, rgba(12, 25, 18, 0.28) 100%),
      linear-gradient(0deg, rgba(12, 25, 18, 0.46), rgba(12, 25, 18, 0.16));
  }

  .intro-grid,
  .approach,
  .contact-promise,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .hausmeister-shell {
    grid-template-columns: 1fr;
  }

  .service-list-card {
    grid-column: span 2;
  }

  .rollrasen-hero,
  .rollrasen-proof {
    grid-template-columns: 1fr;
  }

  .rollrasen-hero {
    background:
      linear-gradient(180deg, #fbfaf5 0%, rgba(251, 250, 245, 0.98) 46%, rgba(251, 250, 245, 0) 72%),
      linear-gradient(135deg, rgba(39, 199, 223, 0.08), rgba(211, 162, 69, 0.08));
  }

  .rollrasen-visual {
    margin-left: 0;
    min-height: 430px;
  }

  .rollrasen-visual::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 245, 0.88) 0%, rgba(251, 250, 245, 0.18) 42%, rgba(7, 19, 22, 0.18) 100%);
  }

  .rollrasen-visual img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, #000 30%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, #000 30%, #000 100%);
  }

  .rollrasen-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rollrasen-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .split-window {
    min-height: 500px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand certs"
      "contact contact"
      "meta meta";
    align-items: center;
    gap: 20px;
  }

  .footer-brand {
    grid-area: brand;
  }

  .footer-certifications {
    grid-area: certs;
    justify-self: end;
  }

  .footer-contact {
    grid-area: contact;
    width: 100%;
  }

  .footer-meta {
    grid-area: meta;
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 8px 16px;
  }

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

  .brand small {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
    transform: translate(-10px, 6px);
  }

  .brand {
    width: 64px;
    height: 56px;
    gap: 10px;
  }

  .site-nav {
    top: 76px;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 18px 44px;
  }

  .hero-bg {
    background-position: 60% center;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 18px;
  }

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

  .platform-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .platform-icon {
    width: 100%;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

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

  .service-list-card {
    grid-column: auto;
  }

  .service-photo-card {
    grid-column: auto;
    min-height: 260px;
  }

  .rollrasen-showcase {
    grid-column: auto;
  }

  .rollrasen-hero-copy,
  .rollrasen-process,
  .rollrasen-proof {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rollrasen-hero h3 {
    font-size: clamp(2.1rem, 13vw, 3.6rem);
  }

  .rollrasen-checks,
  .rollrasen-stats,
  .rollrasen-step-grid {
    grid-template-columns: 1fr;
  }

  .rollrasen-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rollrasen-contact-link {
    width: 100%;
    justify-content: center;
  }

  .rollrasen-visual {
    min-height: 0;
  }

  .rollrasen-visual::before {
    bottom: auto;
    height: 340px;
  }

  .rollrasen-visual img {
    position: relative;
    height: 340px;
  }

  .rollrasen-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    border-right: 0;
    border-radius: 0;
  }

  .rollrasen-stats span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rollrasen-stats span:last-child {
    border-bottom: 0;
  }

  .rollrasen-step-stage {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .rollrasen-step-arrow {
    width: 40px;
    height: 64px;
  }

  .rollrasen-step-grid li {
    min-height: 245px;
    padding: 38px 18px 24px;
  }

  .rollrasen-step-icon {
    width: 54px;
    height: 54px;
  }

  .rollrasen-step-icon svg {
    width: 50px;
    height: 50px;
  }

  .rollrasen-before-after {
    width: 100%;
    min-height: 0;
    height: clamp(220px, 68vw, 310px);
    aspect-ratio: auto;
  }

  .rollrasen-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rollrasen-cta-phone {
    white-space: normal;
  }

  .service-list-card ul {
    grid-template-columns: 1fr;
  }

  .hausmeister-list {
    grid-template-columns: 1fr;
  }

  .hausmeister-panel .btn {
    width: 100%;
  }

  .service-card {
    min-height: 0;
  }

  .service-photo-card {
    min-height: 260px;
  }

  .facade-slider {
    padding: 22px;
  }

  .facade-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .facade-slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .facade-arrow {
    width: 50px;
    height: 50px;
  }

  .facade-slide {
    min-height: 0;
  }

  .split-window {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .split-pane {
    min-height: 310px;
  }

  .split-pane::before {
    background-size: cover;
  }

  .split-pane-garden {
    clip-path: none;
  }

  .split-pane-cleaning {
    clip-path: none;
  }

  .split-pane-garden::before {
    background-position: center;
  }

  .split-pane-cleaning::before {
    background-position: center;
  }

  .split-pane span {
    max-width: 96%;
    overflow-wrap: anywhere;
    font-size: clamp(2.05rem, 11vw, 3.7rem);
  }

  .split-pane-cleaning span {
    font-size: clamp(1.85rem, 9.5vw, 3rem);
  }

  .gallery-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 58px;
    transform: translateY(-50%);
    font-size: 2.4rem;
  }

  .gallery-arrow-prev {
    left: -4px;
  }

  .gallery-arrow-next {
    right: -4px;
  }

  .gallery-toolbar {
    top: -54px;
  }

  .gallery-figure figcaption {
    align-items: flex-end;
    padding: 42px 14px 14px;
  }

  .gallery-figure img {
    max-height: 72vh;
  }

  .contact-panel {
    padding: 24px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "certs"
      "contact"
      "meta";
    justify-items: center;
    align-items: center;
    padding: 26px 18px 28px;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    text-align: left;
  }

  .footer-logo {
    width: 74px;
    height: 74px;
  }

  .footer-brand-copy {
    justify-items: start;
  }

  .footer-brand-copy small {
    max-width: 22ch;
    line-height: 1.35;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }

  .footer-contact-link {
    justify-items: center;
    padding: 12px 14px;
    border-left-width: 1px;
  }

  .footer-contact-link strong {
    text-align: center;
  }

  .footer-meta {
    justify-items: center;
    width: 100%;
    text-align: center;
  }

  .footer-certifications {
    justify-self: center;
    justify-content: center;
    gap: 8px;
  }

  .footer-certification {
    width: 142px;
    height: 58px;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
  }

  body {
    padding-bottom: 86px;
  }

  .quick-contact {
    left: 50%;
    right: auto;
    top: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: row;
    align-items: center;
    gap: 8px;
    max-width: calc(100vw - 24px);
    padding: 8px;
    border: 1px solid rgba(211, 162, 69, 0.38);
    border-radius: 8px;
    background:
      radial-gradient(circle at 15% 20%, rgba(39, 199, 223, 0.18), transparent 34%),
      linear-gradient(135deg, rgba(7, 19, 22, 0.94), rgba(16, 26, 21, 0.94));
    box-shadow: 0 18px 46px rgba(4, 10, 7, 0.3);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }

  body.modal-open .quick-contact,
  body.nav-open .quick-contact {
    transform: translateX(-50%) translateY(12px);
  }

  .quick-contact-link:hover,
  .quick-contact-link:focus,
  .quick-contact-link:focus-visible {
    transform: translateY(-2px);
  }

  .legal-main {
    padding: 104px 18px 58px;
  }

  .legal-content {
    padding: 22px;
  }
}
