:root {
  --green-dark: #1c3d1f;
  --green-mid: #2f5d33;
  --green-accent: #3f7d3f;
  --cream: #faf9f5;
  --text-dark: #1e2a1e;
  --text-muted: #5f6b5f;
  --white: #ffffff;
  --border-light: #e7e5df;
  --shadow: 0 10px 30px rgba(24, 45, 24, 0.08);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header/ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}
header.scrolled {
  background: rgba(15, 30, 15, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  text-decoration: none;
  display: inline-block;
}

.logo-box {
  background: #2d6b2f;
  border: 2px solid #c6d64b;
  border-radius: 14px;
  padding: 10px 20px 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

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

.logo-box h2 {
  margin: 0;
  color: #d8df47;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.logo-box p {
  margin: 4px 0 0;
  color: #d8df47;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links li a {
  color: #e8ede4;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #a7d489;
  transition: width 0.3s ease;
}
.nav-links li a:hover {
  color: #a7d489;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}
.nav-links li a.active {
  color: #a7d489;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn-kontakt {
  background: var(--green-accent);
  color: #fff;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}
.btn-kontakt:hover {
  background: #4a924a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(63, 125, 63, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 10, 0.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  padding-bottom: 70px;
  background:
    linear-gradient(
      105deg,
      rgba(15, 30, 15, 0.82) 15%,
      rgba(15, 30, 15, 0.35) 55%,
      rgba(15, 30, 15, 0.15) 100%
    ),
    url("images/bg.jpg?v=2") center/cover no-repeat;
}
.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 24px 90px;
  width: 100%;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroUp 0.8s ease forwards 0.15s;
}
.hero-content p {
  color: #dfe8da;
  font-size: 16.5px;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroUp 0.8s ease forwards 0.35s;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: heroUp 0.8s ease forwards 0.55s;
}
@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary {
  background: var(--green-accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-primary:hover {
  background: #4a924a;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(63, 125, 63, 0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-3px);
  border-color: #fff;
}

/* stats bar */
.stats-bar {
  position: relative;
  z-index: 5;
  background: rgba(16, 32, 16, 0.72);
  backdrop-filter: blur(8px);
  margin-top: -46px;
  border-radius: 14px;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(167, 212, 137, 0.15);
  color: #a7d489;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.stat-item h4 {
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 3px;
}
.stat-item p {
  color: #c3d0bd;
  font-size: 12.5px;
}

/* Services */
.service-overview {
  padding: 110px 0;
  background: var(--white);
}

.service-overview-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.service-overview-head span {
  display: block;
  color: var(--green-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.service-overview-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.service-divider {
  width: 70px;
  height: 3px;
  background: var(--green-accent);
  border-radius: 20px;
  margin: auto;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: 0.35s;
  position: relative;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.service-image {
  height: 170px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 5px solid #f8f8f8;
  border-radius: 50%;
  margin: -32px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  font-size: 26px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-content {
  padding: 0 18px 28px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-overview-btn {
  text-align: center;
  margin-top: 55px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: 2px solid var(--green-accent);
  color: var(--green-accent);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.service-btn:hover {
  background: var(--green-accent);
  color: #fff;
  transform: translateY(-3px);
}

.gallery-section {
  padding: 110px 0;
  background: var(--cream);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.gallery-heading .eyebrow {
  display: block;
  color: var(--green-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.gallery-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.gallery-heading p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #d9ddd5;
  cursor: zoom-in;
  color: #fff;
  font: inherit;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(8, 20, 9, 0.82));
}

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

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.gallery-item b { color: #c6d64b; font-size: 20px; }

.gallery-lightbox {
  width: min(1050px, 92vw);
  height: min(820px, 90vh);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: #0b120c;
  color: #fff;
  overflow: hidden;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(5px);
}

.gallery-lightbox img {
  width: 100%;
  height: calc(100% - 56px);
  object-fit: contain;
}

.gallery-lightbox p { height: 56px; padding: 17px 22px; font-size: 14px; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* About */
.quality-section {
  padding: 110px 0;
  background: var(--cream);
}

.quality-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.quality-content {
  max-width: 520px;
}

.quality-content .eyebrow {
  color: var(--green-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.quality-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.quality-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.quality-content .service-area-copy {
  margin-top: 14px;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.quality-list i {
  color: var(--green-accent);
  font-size: 15px;
}

.quality-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: var(--green-accent);
  color: var(--white);

  padding: 13px 25px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s ease;
}

.quality-btn:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(47, 93, 51, 0.25);
}

.quality-image {
  width: 100%;
  height: 390px;
  overflow: hidden;
  border-radius: 18px;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

.quality-image:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #101710;

  padding: 80px 0 25px;

  color: #d8dfd4;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;

  gap: 50px;

  padding-bottom: 70px;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-column h4 {
  color: #a7d489;

  font-size: 12px;

  letter-spacing: 2px;

  margin-bottom: 25px;

  font-weight: 700;
}

.footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

.footer-column ul li a {
  color: #dce4d9;

  font-size: 14px;

  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #a7d489;

  padding-left: 5px;
}

.contact ul li {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  color: #dce4d9;

  font-size: 14px;
}

.contact i {
  width: 18px;

  color: #a7d489;

  margin-top: 3px;
}

.contact span {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  padding-top: 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;

  color: #b8c2b4;
}

.footer-links {
  display: flex;

  gap: 25px;
}

.footer-links a {
  color: #b8c2b4;

  font-size: 13px;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #a7d489;
}

/* Reviews Section */
.reviews-section {
  padding: 110px 0;
  background: var(--cream);
  overflow: hidden;
}

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

.reviews-subtitle {
  display: inline-block;
  color: var(--green-accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.reviews-heading h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-weight: 700;
}

.reviews-heading p {
  max-width: 600px;
  margin: auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 16px;
}

.reviews-slider {
  padding: 15px 5px 20px;
}

.reviews-slider .swiper-slide {
  height: auto;
}

.reviews-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.35s;
}

.reviews-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.reviews-stars {
  color: #d7a53b;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 26px;
}

.reviews-text {
  color: var(--text-muted);
  line-height: 2;
  font-size: 16px;
  min-height: 160px;
}

.reviews-user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #ececec;
}

.reviews-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #c9983d;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviews-user h4 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.reviews-user span {
  color: #9a9a9a;
  font-size: 14px;
}

/* Contact */
.contact-section {
  padding: 110px 0;
  background: var(--green-dark);
}

.contact-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-heading .eyebrow {
  color: #a7d489;
}

.contact-heading h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  margin: 15px 0;
}

.contact-heading p {
  color: #d2ddd0;
  line-height: 1.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 40px;
}

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

.contact-cards .contact-card:last-child {
  grid-column: 1 / -1;
}

.contact-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: 0.35s;
}

@media (min-width: 992px) {
  .contact-card {
    min-height: 158px;
    padding: 22px 20px;
    gap: 15px;
  }

  .contact-card > div:last-child {
    min-width: 0;
  }

  .contact-section .contact-card h3 {
    font-size: 20px;
    white-space: nowrap;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-card .contact-icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .contact-cards .contact-card:last-child {
    min-height: 130px;
  }

  .contact-map {
    display: flex;
    flex-direction: column;
  }

  .contact-map iframe {
    flex: 1;
    min-height: 430px;
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(167, 212, 137, 0.12);
  color: #a7d489;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card span {
  color: #a7d489;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

.contact-card h3 {
  color: #fff;
  margin: 10px 0;
  font-size: 24px;
}

.contact-card p {
  color: #d2ddd0;
  line-height: 1.7;
}

.contact-map {
  background: var(--cream);
  border-radius: 22px;
  padding: 24px;
}

.contact-map h3 {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 30px;
}

.contact-map iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 16px;
}

.contact-cta {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-text span {
  color: #a7d489;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

.cta-text h3 {
  color: #fff;
  margin-top: 10px;
  font-size: 38px;
}
@media (max-width: 1200px) {
  .service-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: -1;
  }

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

  .cta-text h3 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 20px;

    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78%, 320px);
    background: linear-gradient(180deg, #1c3d1f, #0f1f0f);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links li a {
    display: block;
    padding: 16px 0;
    font-size: 15.5px;
  }
  .nav-links li a::after {
    display: none;
  }
  .nav-actions .btn-kontakt.desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .menu-overlay {
    display: none;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-section {
    padding: 80px 0;
  }

  .quality-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quality-content {
    max-width: 100%;
  }

  .quality-image {
    height: 330px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 0;
  }

  .reviews-heading {
    margin-bottom: 45px;
  }

  .reviews-heading h2 {
    font-size: 38px;
  }

  .reviews-text {
    min-height: auto;
    font-size: 15px;
  }

  .reviews-card {
    padding: 28px;
  }
  .logo-box {
    padding: 8px 14px;
  }

  .logo-box h2 {
    font-size: 18px;
  }

  .logo-box p {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .service-overview {
    padding: 80px 0;
  }

  .service-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-image {
    height: 190px;
  }
  .reviews-section {
    padding: 40px 0;
  }

  .reviews-heading {
    margin-bottom: 45px;
  }

  .reviews-heading h2 {
    font-size: 38px;
  }

  .reviews-text {
    min-height: auto;
    font-size: 15px;
  }

  .reviews-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-logo h3 {
    font-size: 22px;
  }

  .footer-bottom {
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;

    gap: 10px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-wrapper {
    gap: 24px;
  }

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

  .contact-cards .contact-card:last-child {
    grid-column: auto;
  }

  .contact-card {
    padding: 20px;
    gap: 16px;
  }

  .contact-card h3 {
    font-size: 16px;
    word-break: break-word;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .contact-map {
    width: 100%;
    padding: 18px;
  }

  .contact-map h3 {
    font-size: 26px;
  }

  .contact-map iframe {
    width: 100%;
    height: 280px;
    display: block;
  }

  .contact-cta {
    padding: 24px;
  }

  .cta-text h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .service-overview-head {
    margin-bottom: 40px;
  }

  .service-overview-head h2 {
    font-size: 30px;
  }

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

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 0 22px 24px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 15px;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding: 0 15px 28px;
    background-position: 58% center;
  }
  .hero-content {
    padding: 132px 20px 40px;
  }
  .hero-content h1 {
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 18px;
  }
  .hero-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .stats-bar {
    width: 100%;
    margin-top: 0;
    border-radius: 12px;
  }
  .stat-item {
    min-width: 0;
    gap: 11px;
    padding: 19px 14px;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  .stat-item h4 { font-size: 13.5px; }
  .stat-item p { font-size: 11.5px; line-height: 1.25; }
  .gallery-section { padding: 80px 0; }
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }
  .gallery-heading h2 { font-size: 34px; }
  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: auto; }
  .quality-image {
    height: 250px;
    border-radius: 14px;
  }

  .quality-content h2 {
    font-size: 30px;
  }

  .quality-content p {
    font-size: 14px;
  }
}

/* Project videos */
.video-section {
  padding: 110px 0;
  background: radial-gradient(circle at 90% 12%, rgba(167, 212, 137, 0.22), transparent 28%), #f3f6ef;
}
.video-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.video-heading .eyebrow { display: block; margin-bottom: 14px; color: var(--green-accent); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.video-heading h2 { color: var(--green-dark); font-size: clamp(36px, 5vw, 56px); line-height: 1.15; }
.video-heading p { max-width: 650px; margin: 18px auto 0; color: var(--text-muted); font-size: 16px; line-height: 1.75; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.video-card { overflow: hidden; border: 1px solid rgba(28,61,31,.1); border-radius: 22px; background: #fff; box-shadow: 0 18px 48px rgba(28,61,31,.1); }
.video-frame { aspect-ratio: 16 / 9; overflow: hidden; background: #101710; }
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-card-copy { padding: 25px 28px 28px; }
.video-card-copy > span { color: var(--green-accent); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; }
.video-card-copy h3 { margin: 8px 0; color: var(--green-dark); font-size: 23px; }
.video-card-copy p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
@media (max-width: 768px) {
  .video-section { padding: 80px 0; }
  .video-heading { margin-bottom: 38px; }
  .video-heading h2 { font-size: 36px; }
  .video-grid { grid-template-columns: 1fr; gap: 22px; }
  .video-card-copy { padding: 21px 22px 24px; }
  .video-card-copy h3 { font-size: 21px; }
}

/* Reviews slider — structure from rr-reinigung-website, Toni colors */
.reviews-section {
  padding: 110px 0;
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 12% 10%, rgba(167, 212, 137, 0.28), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(63, 125, 63, 0.12), transparent 27%),
    #f3f6ef;
}
.reviews-section .reviews-heading { margin-bottom: 0; }
.reviews-section .reviews-heading h2 { color: var(--green-dark); font-size: clamp(36px, 5vw, 62px); }
.reviews-section .reviews-subtitle { color: var(--green-accent); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; }
.review-summary { display: inline-flex; flex-direction: column; align-items: center; margin-top: 22px; }
.review-summary strong { text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.summary-stars, .review-card .review-stars { color: #ffc107; letter-spacing: .08em; }
.summary-stars { font-size: 2rem; line-height: 1.2; }
.review-summary > span { font-size: .9rem; }
.google-badge { margin-top: 11px; color: var(--text-muted); font-weight: 600; }
.google-badge i { color: var(--green-accent); margin-right: 5px; }
.reviews-section .reviews-slider { position: relative; margin-top: 48px; padding: 0; overflow: visible; }
.reviews-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; padding: 6px 2px 20px; }
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-section .review-card { flex: 0 0 calc((100% - 54px) / 4); min-width: 0; min-height: 250px; scroll-snap-align: start; padding: 26px; border: 1px solid rgba(28,61,31,.12); border-radius: 20px; background: rgba(255,255,255,.82); box-shadow: 0 18px 45px rgba(28,61,31,.08); backdrop-filter: blur(12px); }
.review-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--green-accent), #79a850); font-weight: 800; }
.review-top strong, .review-top span { display: block; }
.review-top span { color: var(--text-muted); font-size: .78rem; }
.review-source { color: var(--green-accent); font-size: 20px; }
.review-card .review-stars { margin: 20px 0 12px; }
.reviews-section .review-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }
.review-arrow { position: absolute; top: 50%; z-index: 3; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(28,61,31,.15); border-radius: 50%; color: var(--green-dark); background: rgba(255,255,255,.94); box-shadow: 0 8px 22px rgba(28,61,31,.12); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: .25s ease; }
.review-arrow:hover { background: var(--green-accent); color: #fff; }
.review-prev { left: -23px; }
.review-next { right: -23px; }
.reviews-cta { display: flex; justify-content: center; margin-top: 32px; }

@media (max-width: 1000px) {
  .reviews-section .review-card { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 600px) {
  .reviews-section { padding: 80px 0; }
  .reviews-section .reviews-heading h2 { font-size: 38px; }
  .reviews-section .review-card { flex-basis: 100%; min-height: 240px; }
  .review-prev { left: -8px; }
  .review-next { right: -8px; }
  .review-arrow { width: 40px; height: 40px; }
}

.mobile-contact {
  display: none;
}

@media (max-width: 768px) {
  .mobile-contact {
    display: block;
  }
}

/* 3D gallery carousel — adapted from rr-reinigung-website */
.gallery-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(167, 212, 137, 0.15), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(63, 125, 63, 0.14), transparent 30%),
    #101710;
}
.gallery-section .gallery-heading h2 { color: #fff; }
.gallery-section .gallery-heading p { color: rgba(255, 255, 255, 0.72); }
.gallery-carousel { position: relative; width: min(100%, 1060px); margin: 0 auto; padding-bottom: 12px; }
.gallery-stage { position: relative; height: 520px; perspective: 1200px; touch-action: pan-y; }
.gallery-carousel .gallery-item {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 460px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #101315;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease;
}
.gallery-carousel .gallery-item::after { inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(12, 35, 15, 0.88)); }
.gallery-carousel .gallery-item span { left: 22px; bottom: 18px; font-weight: 800; }
.gallery-carousel .gallery-item.is-active { z-index: 4; opacity: 1; pointer-events: auto; cursor: zoom-in; transform: translate(-50%, -50%) scale(1); filter: brightness(1); }
.gallery-carousel .gallery-item.is-prev,
.gallery-carousel .gallery-item.is-next { z-index: 3; opacity: 0.45; pointer-events: auto; filter: brightness(0.48); }
.gallery-carousel .gallery-item.is-prev { transform: translate(-50%, -50%) translateX(-300px) rotateY(18deg) scale(0.88); }
.gallery-carousel .gallery-item.is-next { transform: translate(-50%, -50%) translateX(300px) rotateY(-18deg) scale(0.88); }
.gallery-carousel .gallery-item.is-far-prev,
.gallery-carousel .gallery-item.is-far-next { z-index: 2; opacity: 0.22; pointer-events: auto; filter: brightness(0.35); }
.gallery-carousel .gallery-item.is-far-prev { transform: translate(-50%, -50%) translateX(-485px) rotateY(25deg) scale(0.72); }
.gallery-carousel .gallery-item.is-far-next { transform: translate(-50%, -50%) translateX(485px) rotateY(-25deg) scale(0.72); }
.gallery-carousel .gallery-item.is-active:hover img { transform: scale(1.07); }
.gallery-arrow { position: absolute; top: 250px; z-index: 8; display: grid; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: rgba(5,7,8,.72); place-items: center; font-size: 2rem; line-height: 1; cursor: pointer; backdrop-filter: blur(10px); transition: .25s ease; }
.gallery-arrow:hover { border-color: #a7d489; color: #a7d489; transform: scale(1.06); }
.gallery-arrow-prev { left: 12px; }
.gallery-arrow-next { right: 12px; }
.gallery-dots { display: flex; min-height: 18px; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; }
.gallery-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s ease; }
.gallery-dot.is-active { width: 24px; background: #a7d489; }
.gallery-hint { margin: 6px 0 0; color: rgba(255,255,255,.62); text-align: center; font-size: .78rem; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 30px; background: rgba(3,17,8,.93); opacity: 0; visibility: hidden; transition: .25s ease; }
.gallery-lightbox.open { opacity: 1; visibility: visible; }
.gallery-lightbox img { max-width: min(1200px, 90vw); max-height: 84vh; border-radius: 18px; box-shadow: 0 26px 70px rgba(0,0,0,.42); }
.gallery-lightbox .lightbox-close,
.gallery-lightbox .lightbox-nav { position: absolute; border: 1px solid rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.1); cursor: pointer; }
.gallery-lightbox .lightbox-close { top: 22px; right: 24px; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; }
.gallery-lightbox .lightbox-nav { top: 50%; width: 52px; height: 70px; border-radius: 18px; font-size: 2.4rem; transform: translateY(-50%); }
.gallery-lightbox .lightbox-prev { left: 24px; }
.gallery-lightbox .lightbox-next { right: 24px; }
body.lightbox-open { overflow: hidden; }

.mobile-actions { display: none; }

@media (max-width: 680px) {
  body:not(.legal-page) { padding-bottom: 62px; }

  .mobile-actions {
    position: fixed;
    z-index: 1500;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--green-dark);
    box-shadow: 0 -8px 24px rgba(28, 61, 31, 0.24);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-actions a + a {
    color: #fff;
    background: var(--green-accent);
  }

  .mobile-actions i { font-size: 17px; }
}

/* Legal pages */
.legal-page { background: #f3f6ef; color: var(--text-dark); }
.legal-header { position: relative; background: var(--green-dark); }
.legal-header .nav-wrap { min-height: 92px; }
.legal-main { padding: 70px 24px 90px; }
.legal-card { width: min(900px, 100%); margin: 0 auto; padding: 54px; border: 1px solid rgba(28,61,31,.1); border-radius: 24px; background: #fff; box-shadow: 0 18px 55px rgba(28,61,31,.08); }
.legal-card > .eyebrow { color: var(--green-accent); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.legal-card h1 { margin: 12px 0 6px; color: var(--green-dark); font-size: clamp(38px, 6vw, 58px); }
.legal-card > p { color: var(--text-muted); }
.legal-card section { margin-top: 38px; }
.legal-card section h2 { margin-bottom: 12px; color: var(--green-dark); font-size: 22px; }
.legal-card section p { color: var(--text-muted); line-height: 1.85; }
.legal-card a { color: var(--green-accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { display: flex; justify-content: center; gap: 28px; padding: 28px 20px; color: #d8dfd4; background: #101710; }
.legal-footer a:hover { color: #a7d489; }
@media (max-width: 600px) {
  .legal-header .btn-kontakt { padding: 10px 15px; font-size: 12px; }
  .legal-main { padding: 38px 15px 60px; }
  .legal-card { padding: 30px 22px; border-radius: 18px; }
  .legal-card section { margin-top: 30px; }
}

@media (max-width: 900px) {
  .gallery-stage { height: 490px; }
  .gallery-carousel .gallery-item { width: 300px; height: 430px; }
  .gallery-carousel .gallery-item.is-prev { transform: translate(-50%, -50%) translateX(-245px) rotateY(18deg) scale(.82); }
  .gallery-carousel .gallery-item.is-next { transform: translate(-50%, -50%) translateX(245px) rotateY(-18deg) scale(.82); }
  .gallery-carousel .gallery-item.is-far-prev,
  .gallery-carousel .gallery-item.is-far-next { opacity: 0; pointer-events: none; }
}
@media (max-width: 540px) {
  .gallery-stage { height: 430px; }
  .gallery-carousel .gallery-item { width: min(72vw, 285px); height: 390px; border-radius: 18px; }
  .gallery-carousel .gallery-item.is-prev { transform: translate(-50%, -50%) translateX(-72vw) rotateY(14deg) scale(.8); }
  .gallery-carousel .gallery-item.is-next { transform: translate(-50%, -50%) translateX(72vw) rotateY(-14deg) scale(.8); }
  .gallery-arrow { top: 205px; width: 40px; height: 40px; }
  .gallery-arrow-prev { left: 0; }
  .gallery-arrow-next { right: 0; }
  .gallery-lightbox { padding: 16px; }
  .gallery-lightbox .lightbox-nav { width: 42px; height: 58px; }
  .gallery-lightbox .lightbox-prev { left: 8px; }
  .gallery-lightbox .lightbox-next { right: 8px; }
}

/* Cookie consent and blocked external media */
.map-consent { display: grid; width: 100%; height: 430px; padding: 24px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, #1c3d1f, #315f35); place-items: center; text-align: center; }
.map-consent.map-consent-enabled { display: block; padding: 0; background: transparent; }
.map-consent-content { width: min(460px, 100%); }
.map-consent-content strong { display: block; margin-bottom: 10px; font-size: 22px; }
.map-consent-content p { margin-bottom: 20px; color: rgba(255, 255, 255, .78); line-height: 1.6; }
.cookie-settings-link { padding: 0; border: 0; color: #b8c2b4; background: transparent; font: inherit; font-size: 13px; cursor: pointer; transition: color .3s ease; }
.cookie-settings-link:hover { color: #a7d489; }
.legal-footer .cookie-settings-link { color: #d8dfd4; }
.legal-footer .cookie-settings-link:hover { color: #a7d489; }
.cookie-banner[hidden], .consent-modal-backdrop[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 3000; right: 20px; bottom: 20px; left: 20px; display: grid; grid-template-columns: minmax(0, 1fr) auto; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 24px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; color: #fff; background: rgba(16, 23, 16, .98); box-shadow: 0 22px 70px rgba(0, 0, 0, .34); gap: 24px; align-items: center; }
.cookie-banner h2 { margin: 0 0 7px; color: #fff; font-size: 20px; }
.cookie-banner p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .75); font-size: 14px; line-height: 1.55; }
.cookie-banner a { color: #a7d489; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: grid; grid-template-columns: repeat(3, minmax(145px, 1fr)); gap: 10px; }
.consent-button { min-height: 45px; padding: 11px 18px; border: 1px solid transparent; border-radius: 999px; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.consent-button:hover { transform: translateY(-1px); }
.consent-button:focus-visible, .consent-modal-close:focus-visible, .cookie-settings-link:focus-visible { outline: 3px solid #a7d489; outline-offset: 3px; }
.consent-button-primary { color: #fff; background: var(--green-accent); }
.consent-button-primary:hover { background: #4e874f; }
.consent-button-secondary { border-color: rgba(255, 255, 255, .35); color: #fff; background: transparent; }
.consent-button-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.map-consent .consent-button-primary { background: #fff; color: var(--green-dark); }
.map-consent .consent-button-primary:hover { background: #eef5e9; }
.consent-modal-backdrop { position: fixed; z-index: 3100; inset: 0; display: grid; overflow-y: auto; padding: 24px; background: rgba(3, 12, 5, .72); place-items: center; }
.consent-modal { position: relative; width: min(680px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 36px; border-radius: 22px; color: var(--text-dark); background: #fff; box-shadow: 0 28px 90px rgba(0, 0, 0, .32); }
.consent-modal:focus { outline: none; }
.consent-modal-close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; color: var(--green-dark); background: #eef3eb; font-size: 28px; line-height: 1; cursor: pointer; }
.consent-eyebrow { color: var(--green-accent); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.consent-modal h2 { margin: 9px 45px 8px 0; color: var(--green-dark); font-size: clamp(28px, 5vw, 38px); }
.consent-modal > p { margin: 0 0 24px; color: var(--text-muted); line-height: 1.6; }
.consent-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; padding: 20px 0; border-top: 1px solid rgba(28, 61, 31, .12); gap: 20px; align-items: center; }
.consent-category strong, .consent-category small { display: block; }
.consent-category strong { margin-bottom: 4px; color: var(--green-dark); }
.consent-category small { color: var(--text-muted); line-height: 1.45; }
.consent-switch { display: inline-flex; align-items: center; cursor: pointer; }
.consent-switch input { position: absolute; opacity: 0; pointer-events: none; }
.consent-switch span { position: relative; width: 48px; height: 27px; border-radius: 99px; background: #c8d0c5; transition: .2s ease; }
.consent-switch span::after { position: absolute; top: 4px; left: 4px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 2px 7px rgba(0, 0, 0, .2); content: ""; transition: .2s ease; }
.consent-switch input:checked + span { background: var(--green-accent); }
.consent-switch input:checked + span::after { transform: translateX(21px); }
.consent-switch input:focus-visible + span { outline: 3px solid rgba(78, 135, 79, .35); outline-offset: 3px; }
.consent-switch input:disabled + span { opacity: .72; }
.consent-switch em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.consent-modal-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 8px; gap: 10px; }
.consent-modal .consent-button-secondary { border-color: rgba(28, 61, 31, .3); color: var(--green-dark); }
body.consent-modal-open { overflow: hidden; }

@media (max-width: 900px) { .cookie-banner { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .cookie-banner { right: 12px; bottom: 74px; left: 12px; width: auto; padding: 18px; border-radius: 16px; gap: 16px; }
  .legal-page .cookie-banner { bottom: 12px; }
  .cookie-banner-actions, .consent-modal-actions { grid-template-columns: 1fr; }
  .consent-modal-backdrop { padding: 12px; align-items: end; }
  .consent-modal { max-height: calc(100vh - 24px); padding: 28px 20px 22px; border-radius: 20px; }
  .consent-category { gap: 12px; }
  .legal-footer { flex-wrap: wrap; }
  .map-consent { height: 280px; }
}
