:root {
  --koch-blue: #183f70;
  --koch-blue-light: #2f69a3;
  --dark: #111821;
  --dark-2: #18212b;
  --dark-3: #222d38;
  --yellow: #ffd42a;
  --white: #ffffff;
  --light: #f3f5f7;
  --text: #202a33;
  --muted: #68747f;
  --line: #dde2e6;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

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

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


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 24, 33, 0.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 150px;
  height: 66px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: #d7dde3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--yellow);
}

.header-cta {
  background: var(--yellow);
  color: #161b20;
  padding: 11px 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background:
    radial-gradient(circle at 76% 52%, rgba(255,212,42,.12), transparent 28%),
    linear-gradient(120deg, #0e151d 0%, #17222d 60%, #10161c 100%);
  color: var(--white);
}

.hero-glow {
  position: absolute;
  right: 10%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: rotate(20deg);
  background: linear-gradient(
    transparent,
    rgba(255,212,42,.85),
    rgba(255,255,255,.95),
    rgba(255,212,42,.65),
    transparent
  );
  box-shadow: 0 0 55px rgba(255,212,42,.3);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--koch-blue-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: .99;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 20px;
  color: #c8d0d8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--yellow);
  color: #13181d;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.32);
  color: var(--white);
}

.button.large {
  min-height: 58px;
  padding: 0 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  color: #aeb9c3;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24,63,112,.5), rgba(17,24,33,.1)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.035) 0,
      rgba(255,255,255,.035) 2px,
      transparent 2px,
      transparent 22px
    );
  border: 1px solid rgba(255,255,255,.1);
}

.laser-line {
  position: absolute;
  width: 130%;
  height: 4px;
  top: 46%;
  left: -15%;
  transform: rotate(-17deg);
  background: var(--yellow);
  box-shadow:
    0 0 15px rgba(255,212,42,.9),
    0 0 42px rgba(255,212,42,.5);
}

.hero-visual-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.visual-label {
  color: var(--yellow);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .09em;
}

.hero-visual-content strong {
  font-size: 25px;
}

.hero-visual-content small {
  color: #aeb9c3;
}


/* GENERAL SECTIONS */

.problem-section,
.methods-section,
.projects-section,
.rlt-section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.rlt-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}


/* PROBLEMS */

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-item {
  min-height: 150px;
  padding: 27px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.problem-item:last-child {
  border-right: 0;
}

.problem-icon {
  display: block;
  min-height: 43px;
  color: var(--yellow);
  font-size: 28px;
}

.problem-item h3 {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.35;
}


/* LASER FEATURE */

.laser-feature {
  padding: 95px 0;
  background: var(--dark);
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.yellow {
  color: var(--yellow);
}

.feature-copy p {
  color: #b8c2cb;
  font-size: 17px;
  margin: 24px 0 0;
}

.feature-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  color: #d8dee3;
  font-weight: 700;
}

.project-placeholder {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background:
    linear-gradient(to top, rgba(12,17,23,.92), transparent 60%),
    linear-gradient(135deg, #3b4145, #68706f 48%, #252d32);
  border: 1px solid rgba(255,255,255,.1);
}

.project-placeholder-inner {
  display: grid;
  gap: 5px;
}

.play {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  background: var(--yellow);
  border-radius: 50%;
  color: #111;
}

.project-placeholder-inner strong {
  font-size: 24px;
}

.project-placeholder-inner small {
  color: #b7c0c8;
}


/* METHODS */

.methods-section {
  background: var(--light);
}

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

.method-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(24,63,112,.26), transparent),
    var(--dark-2);
  border-bottom: 4px solid transparent;
  transition: .25s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--yellow);
}

.method-card.featured {
  border-bottom-color: var(--yellow);
}

.method-number {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.method-card h3 {
  margin: 58px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.method-card p {
  max-width: 290px;
  margin: 0;
  color: #aeb8c1;
}

.method-arrow {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: var(--yellow);
  font-size: 28px;
}


/* PROJECTS */

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

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

.project-card {
  background: var(--light);
}

.project-image {
  aspect-ratio: 16 / 10;
}

.laser-bg {
  background:
    linear-gradient(135deg, transparent 40%, rgba(255,212,42,.9) 41%, transparent 42%),
    linear-gradient(135deg, #444d53, #909795);
}

.fire-bg {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,212,42,.55), transparent 20%),
    linear-gradient(135deg, #17191a, #5b5b57);
}

.ice-bg {
  background:
    radial-gradient(circle, rgba(255,255,255,.8), transparent 40%),
    linear-gradient(135deg, #4f6572, #d4e0e5);
}

.project-card-copy {
  padding: 24px;
}

.project-card-copy span {
  color: var(--koch-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-card-copy h3 {
  margin: 6px 0;
  font-size: 23px;
}

.project-card-copy p {
  margin: 0;
  color: var(--muted);
}


/* RLT */

.rlt-section {
  background: var(--koch-blue);
  color: var(--white);
}

.rlt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.rlt-section .section-kicker {
  color: var(--yellow);
}

.rlt-section p {
  margin: 0;
  color: #d5e0eb;
  font-size: 17px;
}

.rlt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rlt-links span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 13px;
}


/* CONTACT */

.contact-section {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255,212,42,.08), transparent 35%),
    var(--dark);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.contact-inner > div {
  max-width: 780px;
}

.contact-section p {
  color: #b8c2cb;
  font-size: 17px;
}


/* FOOTER */

.site-footer {
  padding: 32px 0;
  background: #090d12;
  color: #89949d;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer-brand {
  width: 88px;
  height: 55px;
  overflow: hidden;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
  font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

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

  .problem-item {
    border-bottom: 1px solid var(--line);
  }

}

@media (max-width: 820px) {

  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero-grid,
  .feature-grid,
  .rlt-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .hero-visual {
    min-height: 320px;
  }

  .methods-grid,
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    margin-left: 0;
  }

}

@media (max-width: 540px) {

  .header-inner {
    height: 75px;
  }

  .brand {
    width: 115px;
    height: 58px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 17px;
  }

  .methods-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .problem-section,
  .methods-section,
  .projects-section,
  .rlt-section {
    padding: 68px 0;
  }

}


/* =========================================================
   WHITE HEADER – KOCH BRAND
   ========================================================= */

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e2e6e9;
  box-shadow: 0 2px 18px rgba(17, 24, 33, 0.06);
}

.main-nav a {
  color: #202a33;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--koch-blue);
}

.main-nav .active {
  position: relative;
}

.main-nav .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  background: var(--yellow);
}

.header-cta {
  background: var(--yellow);
  color: #161b20;
}

.brand {
  width: 155px;
  height: 72px;
}



/* =========================================================
   REAL PROJECT VIDEO – LASER / PFLASTERSTEIN
   ========================================================= */

.project-video {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #080d12;
  border: 1px solid rgba(255,255,255,.1);
}

.project-video video {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #080d12;
}

.project-video-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  pointer-events: none;
  color: white;
  background: rgba(10,15,20,.82);
  backdrop-filter: blur(8px);
}

.project-video-caption span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.project-video-caption strong {
  font-size: 17px;
}

@media (max-width: 820px) {
  .project-video,
  .project-video video {
    min-height: 320px;
    height: 320px;
  }
}



/* =========================================================
   BRAND RESTORATION – REAL CLEANLASER VIDEOS
   ========================================================= */

.fire-restoration {
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255,212,42,.09),
      transparent 25%
    ),
    #0b1118;
}

.fire-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.fire-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.fire-intro p {
  margin: 0;
  color: #b8c2cb;
  font-size: 17px;
}

.fire-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fire-video-card {
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
}

.fire-video-card video {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: #05080b;
}

.fire-video-copy {
  padding: 22px 24px 25px;
  border-top: 3px solid var(--yellow);
}

.fire-video-copy span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.fire-video-copy h3 {
  margin: 5px 0 0;
  font-size: 21px;
}

.fire-cta {
  margin-top: 28px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: rgba(255,255,255,.055);
  border-left: 3px solid var(--yellow);
}

.fire-cta strong {
  font-size: 18px;
}

@media (max-width: 820px) {

  .fire-intro,
  .fire-videos {
    grid-template-columns: 1fr;
  }

  .fire-intro {
    gap: 22px;
  }

  .fire-video-card video {
    height: 320px;
  }

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

}


/* =========================================================
   REAL HERO VIDEO
   ========================================================= */

.hero-video {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 42px;
  background: #080d12;
  border: 1px solid rgba(255,255,255,.1);
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8,13,18,.92) 0%,
      rgba(8,13,18,.32) 48%,
      rgba(8,13,18,.10) 100%
    );
}

.hero-video .hero-visual-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .hero-video {
    min-height: 320px;
  }
}



/* =========================================================
   REAL PROJECT CARDS
   ========================================================= */

.project-image-real,
.project-video-preview {
  position: relative;
  overflow: hidden;
}

.project-image-real img,
.project-video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-real img {
  transition: transform .45s ease;
}

.project-card:hover .project-image-real img {
  transform: scale(1.035);
}

.project-video-preview video {
  pointer-events: none;
}

.project-preview-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: var(--yellow);
  background: rgba(8,13,18,.84);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}


/* =========================================================
   KOCH LOGO – GRÖSSERE DARSTELLUNG
   ========================================================= */

@media (min-width: 541px) {
  .header-inner {
    height: 92px;
  }

  .brand {
    width: 180px;
    height: 78px;
  }
}


/* =========================================================
   LEISTUNGSSEITE – BRANDSCHADENSANIERUNG
   ========================================================= */

.service-hero {
  padding: 110px 0 105px;
  color: var(--white);
  background: #0b1118;
}

.service-hero-fire {
  background:
    radial-gradient(circle at 78% 20%, rgba(255,212,42,.12), transparent 27%),
    linear-gradient(135deg, #0b1118 0%, #151b21 100%);
}

.service-hero-inner {
  max-width: 980px;
}

.service-hero h1 {
  max-width: 950px;
  margin: 15px 0 24px;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.service-hero h1 span {
  color: #bfc8cf;
  font-weight: 500;
}

.service-hero p {
  max-width: 790px;
  margin: 0;
  color: #c4ccd3;
  font-size: 19px;
  line-height: 1.7;
}

.service-experience {
  padding: 105px 0;
  background: #fff;
}

.service-two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.service-two-column h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.service-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-copy strong {
  color: var(--dark);
}

.service-methods {
  padding: 100px 0;
  background: #f2f4f5;
}

.service-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.service-method-card {
  padding: 34px;
  background: #fff;
  border-top: 4px solid var(--yellow);
}

.service-method-card > span {
  color: var(--koch-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.service-method-card h3 {
  margin: 13px 0 14px;
  font-size: 25px;
}

.service-method-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-video-section {
  padding-top: 100px;
}

.service-process {
  padding: 100px 0;
  background: #fff;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.service-process-grid > div {
  padding: 26px 24px;
  border: 1px solid #dfe4e7;
}

.service-process-grid strong {
  color: var(--koch-blue);
  font-size: 13px;
  letter-spacing: .1em;
}

.service-process-grid h3 {
  margin: 12px 0 10px;
}

.service-process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .service-two-column,
  .service-method-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-two-column {
    gap: 35px;
  }

  .service-hero {
    padding: 80px 0;
  }
}


.fire-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
}

.fire-detail-link {
  color: var(--yellow);
  font-weight: 800;
}

.fire-detail-link:hover {
  color: var(--white);
}

@media (max-width: 700px) {
  .fire-cta-actions {
    justify-content: flex-start;
  }
}


/* =========================================================
   RECHTLICHE SEITEN
   ========================================================= */

.legal-hero {
  background: var(--dark);
  color: var(--white);
  padding: 150px 0 75px;
}

.legal-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.legal-content {
  padding: 80px 0 110px;
  background: #f5f5f3;
}

.legal-card {
  max-width: 900px;
  padding: clamp(32px, 6vw, 64px);
  background: var(--white);
}

.legal-card h2 {
  margin: 0 0 30px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-card h3 {
  margin: 42px 0 12px;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0 0 20px;
  line-height: 1.8;
}

.legal-card a {
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-back {
  margin-top: 55px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 700px) {
  .legal-hero {
    padding: 120px 0 55px;
  }

  .legal-content {
    padding: 45px 0 70px;
  }
}


/* Sandstrahlen Projektgalerie */
.sand-projects,
.sand-before-after {
  padding: 88px 0;
}

.sand-projects {
  background: #f4f4f2;
}

.sand-before-after {
  background: #ffffff;
}

.sand-project-intro {
  max-width: 820px;
  margin: 0 0 38px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.sand-progress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sand-progress-grid figure,
.sand-before-after-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.sand-progress-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sand-progress-grid figcaption,
.sand-before-after-grid figcaption {
  padding: 14px 16px 16px;
  font-size: .9rem;
  color: #555;
}

.sand-before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sand-before-after-grid figure {
  position: relative;
}

.sand-before-after-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sand-image-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(20, 20, 20, .86);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .sand-progress-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .sand-projects,
  .sand-before-after {
    padding: 64px 0;
  }

  .sand-progress-grid,
  .sand-before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* Sandstrahlen: finale Projektbild-Anordnung */
@media (min-width: 901px) {
  .sand-progress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
  }

  .sand-before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
  }
}
