:root {
  --orange: #ff914d;
  --orange-dark: #de6f2d;
  --black: #111111;
  --ink: #252525;
  --muted: #666666;
  --line: #e8e2dc;
  --soft: #fff6ef;
  --white: #ffffff;
  --mosaic-cream: #de7840;
  --mosaic-sand: #bd542d;
  --mosaic-clay: #913820;
  --mosaic-terracotta: #5f2619;
  --mosaic-grout: rgba(255, 236, 219, 0.09);
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 90px;
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-item {
  position: relative;
  padding: 28px 0;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--orange-dark);
}

.header-cta {
  justify-self: end;
}

.main-nav .nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.btn-accent {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.btn-accent:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.hero-actions .btn-light {
  border-color: transparent;
}

.hero-actions .btn-light:hover {
  border-color: transparent;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  line-height: 1;
}

.btn-icon:first-child {
  margin: 0;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions .btn {
  gap: 12px;
}

.hero-actions .btn-accent:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  --hero-bg: url("site-assets/images/20-47-46.jpg");
  --hero-bg-next: var(--hero-bg);
  --hero-text-overlay: linear-gradient(90deg, rgba(17, 17, 17, 0.54) 0%, rgba(17, 17, 17, 0.44) 42%, rgba(17, 17, 17, 0.28) 72%, rgba(17, 17, 17, 0.16) 100%);
  --hero-color-overlay: linear-gradient(rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.22));
  position: relative;
  padding: 48px 0 60px;
  background-color: #b95428;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    var(--hero-text-overlay),
    var(--hero-color-overlay),
    var(--hero-bg);
  background-position: center;
  background-size: cover;
}

.hero::before {
  z-index: 0;
}

.hero::after {
  z-index: 0;
  background-image:
    var(--hero-text-overlay),
    var(--hero-color-overlay),
    var(--hero-bg-next);
  opacity: 0;
  transition: opacity 1600ms ease;
}

.hero.is-hero-bg-swapping::after {
  opacity: 1;
}

.hero.is-hero-bg-resetting::after {
  opacity: 0;
  transition: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.hero .eyebrow,
.hero h1,
.hero .lead {
  color: var(--white);
  text-shadow: 0 4px 24px rgba(17, 17, 17, 0.72);
}

.eyebrow {
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 6vw, 4.95rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 650px;
  color: var(--ink);
  font-size: 1.14rem;
  margin: 22px 0 28px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-badges img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: var(--radius);
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
  filter: drop-shadow(0 24px 42px rgba(17, 17, 17, 0.32));
}

.carousel-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.22);
  background: #f4f4f4;
  opacity: 0;
  transition: opacity 1200ms ease;
}

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

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

.carousel-arrow,
.video-arrow,
.trust-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.52);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-arrow {
  width: 46px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--orange);
  text-shadow: none;
  box-shadow: none;
}

.carousel-arrow svg,
.video-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:hover,
.video-arrow:hover,
.trust-arrow:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow:hover {
  background: transparent;
  color: var(--orange-dark);
}

.carousel-prev {
  top: 50%;
  left: -52px;
  transform: translateY(-50%);
}

.carousel-next {
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
}

.carousel-timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 3;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfd6;
}

.carousel-timer span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.carousel-timer span.is-running {
  animation: carouselTimer 4200ms linear forwards;
}

@keyframes carouselTimer {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.carousel-dots {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--orange);
}

.section {
  padding: 82px 0;
  background: var(--white);
}

#tjanster {
  position: relative;
  background-color: var(--white);
  background-image: url("site-assets/images/bg4.jpg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

#tjanster > .container {
  position: relative;
  z-index: 1;
}

#tjanster,
#tjanster .section-head p,
#tjanster .service-card p {
  color: var(--white);
}

#tjanster .section-head,
#tjanster .service-card {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.82);
}

#projekt {
  position: relative;
  background-color: var(--white);
  background: var(--white);
  overflow: hidden;
}

#projekt::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    url("site-assets/images/bg5.jpg") center / cover no-repeat;
  filter: blur(10px);
  z-index: 0;
}

#projekt > .container {
  position: relative;
  z-index: 1;
}

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

#rot {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

#rot::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.22)),
    url("site-assets/images/bg6.jpg") center / cover no-repeat;
  filter: blur(4px);
  z-index: 0;
}

#rot > .container {
  position: relative;
  z-index: 1;
}

#rot .eyebrow,
#rot .lead {
  color: var(--white);
}

#kontakt {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-strip {
  padding: 34px 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.single-review {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-review img {
  width: min(560px, 100%);
  height: auto;
  border-radius: var(--radius);
}

.section-review {
  margin-bottom: 42px;
}

.trust-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
}

.trust-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.8fr;
  align-items: center;
  gap: 18px;
}

.trust-stage.is-swapping .trust-item {
  opacity: 0.34;
  transform: scale(0.96);
}

.trust-item {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(17, 17, 17, 0.06);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease, box-shadow 520ms ease, border-color 520ms ease;
}

.trust-side {
  min-height: 132px;
  opacity: 0.78;
  transform: scale(0.92);
}

.trust-active {
  min-height: 180px;
  transform: scale(1);
  border-color: rgba(255, 145, 77, 0.56);
  box-shadow: var(--shadow);
}

.trust-item img {
  max-height: 118px;
  width: auto;
  object-fit: contain;
}

.trust-item.review img {
  max-height: 98px;
}

.trust-arrow {
  position: static;
  background: var(--black);
  transform: none;
}

.trust-arrow:hover {
  transform: scale(1.04);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-image-link {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
}

.service-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 650ms ease;
}

.service-card:hover {
  transform: translateY(-1px);
}

.service-card:hover .service-preview {
  transform: scale(1.025);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-title-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-title-link span {
  color: var(--orange-dark);
  transition: transform 160ms ease;
}

.service-title-link:hover {
  color: var(--orange-dark);
}

.service-title-link:hover span {
  transform: translateX(3px);
}

.service-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--orange-dark);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wetroom-section {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.wetroom-section::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.22)),
    url("site-assets/images/bg6.jpg") center / cover no-repeat;
  filter: blur(4px);
  z-index: 0;
}

.wetroom-section > .container {
  position: relative;
  z-index: 1;
}

.wetroom-section .eyebrow,
.wetroom-section .lead {
  color: var(--white);
}

.wetroom-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px 0;
  border-top: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}

.wetroom-grid img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: var(--radius);
}

.cleaning-section {
  background: var(--white);
}

.cleaning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
}

.cleaning-content .lead {
  max-width: 720px;
}

.cleaning-image {
  justify-self: end;
  width: min(360px, 100%);
}

.cleaning-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-grid p {
  color: var(--muted);
}

.service-card p {
  min-height: 78px;
  margin: 0 0 14px;
  color: var(--muted);
}

.text-link {
  color: var(--orange-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.rot-box,
.contact-box {
  border-radius: var(--radius);
  border: 2px solid var(--black);
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}

#rot .rot-box {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(17, 17, 17, 0.52);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.rot-box strong {
  color: var(--orange-dark);
}

#rot .rot-box strong {
  color: var(--orange);
}

.video-wrap,
.video-carousel {
  max-width: 430px;
  margin: 0 auto;
}

.video-carousel {
  position: relative;
  width: 100%;
}

.video-panel {
  display: none;
}

.video-panel.is-active {
  display: block;
}

.video-panel h3 {
  margin-bottom: 14px;
  text-align: center;
}

.video-prev,
.video-next {
  top: 50%;
  transform: translateY(-50%);
}

.video-prev {
  left: -84px;
}

.video-next {
  right: -84px;
}

.video-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.video-shell img,
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
}

.play-button::before {
  content: "";
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(255, 145, 77, 0.25);
}

.play-button::after {
  content: "";
  position: absolute;
  border-left: 22px solid var(--black);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateX(4px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.contact-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-about {
  background: var(--white);
  scroll-margin-top: 110px;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.home-about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.home-about-content {
  max-width: 760px;
}

.home-about-content p {
  color: var(--ink);
  font-size: 1.08rem;
}

.home-about-signature {
  margin-top: 24px;
  font-weight: 900;
}

.site-footer {
  position: relative;
  padding: 82px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.22)),
    url("site-assets/images/bg6.jpg") center / cover no-repeat;
  filter: blur(4px);
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 6px;
}

.footer-grid p {
  margin: 2px 0;
  line-height: 1.25;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logos img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.service-hero {
  padding: 74px 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 239, 0.92), rgba(255, 255, 255, 0.84));
  border-bottom: 1px solid var(--line);
}

.service-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 42px;
}

.service-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 38px;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.side-card {
  align-self: start;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-item > a {
    padding: 13px 0;
  }

  .main-nav.is-open .nav-cta {
    display: inline-flex;
    margin-top: 10px;
  }

  .nav-item {
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
  }

  .hero-grid,
  .split,
  .cleaning-grid,
  .home-about-grid,
  .service-hero .container,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-content {
    display: contents;
  }

  .hero-content > .eyebrow {
    order: 1;
  }

  .hero-content > h1 {
    order: 2;
  }

  .hero-carousel {
    order: 4;
  }

  .hero-copy {
    order: 3;
  }

  .hero-carousel {
    min-height: 500px;
  }

  .carousel-prev {
    left: -36px;
  }

  .carousel-next {
    right: -36px;
  }

  .trust-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }

  .trust-stage {
    grid-template-columns: 1fr;
  }

  .trust-side {
    display: none;
  }

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

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

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

  .cleaning-image {
    justify-self: center;
    width: min(340px, 100%);
  }

  .home-about-image {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .brand img {
    width: 158px;
  }

  .section,
  .service-hero {
    padding: 54px 0;
  }

  #tjanster {
    background-image: none;
  }

  #tjanster::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("site-assets/images/bg4.jpg") center / cover repeat-y;
    transform: none;
    z-index: 0;
  }

  #tjanster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.18);
    z-index: 0;
  }

  #projekt::before {
    background:
      linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
      url("site-assets/images/bg5.jpg") center / cover no-repeat;
  }

  .hero {
    --hero-text-overlay: linear-gradient(rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.42));
    --hero-color-overlay: linear-gradient(rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.22));
    padding: 0 0 54px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero h1 {
    margin-top: 4px;
  }

  .hero .lead {
    margin-top: 14px;
  }

  .hero-carousel {
    min-height: 430px;
  }

  .hero-badges img {
    width: 92px;
    height: 92px;
  }

  .trust-carousel,
  .trust-grid,
  .services-grid,
  .faq-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-carousel {
    grid-template-columns: 42px 1fr 42px;
  }

  .carousel-prev {
    left: -18px;
    right: auto;
    transform: translateY(-50%);
  }

  .carousel-next {
    right: 8px;
    left: auto;
    transform: translateY(-50%);
  }

  .carousel-arrow {
    width: 54px;
    height: 64px;
  }

  .carousel-arrow svg {
    width: 34px;
    height: 34px;
  }

  .video-prev {
    left: -18px;
    right: auto;
    transform: translateY(-50%);
  }

  .video-next {
    right: 8px;
    left: auto;
    transform: translateY(-50%);
  }

  .video-arrow {
    width: 54px;
    height: 64px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: var(--orange);
    box-shadow: none;
  }

  .video-arrow svg {
    width: 34px;
    height: 34px;
  }

  .video-arrow:hover {
    background: transparent;
    color: var(--orange-dark);
  }

  .carousel-arrow:hover,
  .video-arrow:hover {
    transform: translateY(-50%);
  }

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

  .rot-box,
  .contact-box,
  .service-card {
    padding: 22px;
  }

  .service-card {
    padding: 0;
  }

  .service-preview {
    width: 100%;
    height: auto;
  }
}
