:root {
  --green: #0f766e;
  --green-dark: #064e3b;
  --green-soft: #dff3ed;
  --ink: #17201e;
  --muted: #5a6662;
  --line: #dfe7e3;
  --paper: #ffffff;
  --warm: #f5f0e7;
  --soft: #f6f8f7;
  --shadow: 0 20px 55px rgba(15, 45, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding: 8px clamp(18px, 4vw, 54px) 10px;
  color: #fff;
  transition: min-height 180ms ease, padding 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 78px;
  padding-block: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(23, 32, 30, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0;
}

.brand-mark,
.brand-logo {
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0;
  border: 0;
  box-shadow: 0 16px 34px rgba(4, 36, 27, 0.24);
  transform: translateY(4px);
  transition: width 180ms ease, height 180ms ease, padding 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  width: 64px;
  height: 64px;
  padding: 0;
  transform: translateY(0);
  box-shadow: none;
}

.brand-copy {
  display: grid;
  align-content: center;
  gap: 4px;
  transform: translateY(5px);
}

.brand strong {
  display: block;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 6px 18px rgba(4, 36, 27, 0.24);
}

.brand small {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  color: #c9f3df;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0.92;
  text-shadow: 0 6px 18px rgba(4, 36, 27, 0.2);
}

.site-header.is-scrolled .brand small,
.site-header.is-open .brand small {
  color: var(--green-dark);
  background: transparent;
}

.site-header.is-scrolled .brand strong,
.site-header.is-open .brand strong,
.site-header.is-scrolled .brand small,
.site-header.is-open .brand small {
  text-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  background: currentColor;
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
}

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

.nav-cta.is-active {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2);
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 9px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(54px, 7vw, 96px);
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 30%, rgba(15, 118, 110, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 41% 54%, rgba(9, 36, 29, 0.05) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 42%, rgba(15, 118, 110, 0.05) 0 1px, transparent 2px),
    var(--soft);
  box-shadow: 0 -13px 24px rgba(4, 36, 27, 0.16);
  clip-path: polygon(
    0 34%,
    3% 28%,
    7% 31%,
    11% 25%,
    16% 33%,
    22% 27%,
    27% 34%,
    32% 26%,
    38% 31%,
    44% 24%,
    50% 32%,
    57% 26%,
    63% 33%,
    69% 25%,
    75% 31%,
    82% 27%,
    88% 34%,
    94% 26%,
    100% 32%,
    100% 100%,
    0 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: clamp(25px, 3.5vw, 50px);
  height: 18px;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(246, 248, 247, 0.9) 5% 6%, transparent 6% 12%),
    linear-gradient(90deg, transparent 0 23%, rgba(246, 248, 247, 0.72) 23% 24%, transparent 24% 33%),
    linear-gradient(90deg, transparent 0 48%, rgba(246, 248, 247, 0.8) 48% 49%, transparent 49% 62%),
    linear-gradient(90deg, transparent 0 76%, rgba(246, 248, 247, 0.82) 76% 77%, transparent 77% 100%);
  filter: blur(0.5px);
}

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

.hero-media {
  background: url("assets/gartenzwillinge-hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 36, 27, 0.86), rgba(4, 36, 27, 0.58) 44%, rgba(4, 36, 27, 0.14)),
    linear-gradient(0deg, rgba(4, 36, 27, 0.62), rgba(4, 36, 27, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
  padding: 130px 0 clamp(80px, 10vw, 128px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bdf6df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.25);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
  scroll-margin-top: 88px;
}

.muted {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

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

.intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.section-copy p {
  max-width: 760px;
}

.about-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-inline: auto;
}

.intro-panel {
  display: grid;
  justify-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.08), rgba(245, 240, 231, 0.7)),
    #fff;
  box-shadow: var(--shadow);
}

.panel-logo {
  width: min(300px, 90%);
  height: min(300px, 90vw);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: 0 22px 52px rgba(23, 32, 30, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(15, 118, 110, 0.08);
  font-weight: 850;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
  outline: none;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 28px;
  width: min(560px, 100%);
}

.about-benefits h3 {
  grid-column: 1 / -1;
  font-size: 1.22rem;
  text-align: center;
}

.about-benefits span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(245, 240, 231, 0.72);
  font-weight: 750;
  text-align: center;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 18px;
}

.about-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 30, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.about-socials a:hover,
.about-socials a:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 32, 30, 0.1);
  outline: none;
}

.about-socials img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.about-socials img.social-icon-round {
  padding: 4px;
  border-radius: 50%;
  background: #101010;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 176px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card h3 {
  max-width: 100%;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.service-card:hover {
  border-color: rgba(15, 118, 110, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(23, 32, 30, 0.08);
}

.service-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(15, 45, 39, 0.12));
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-3px) scale(1.07) rotate(-2deg);
  filter: drop-shadow(0 16px 22px rgba(15, 45, 39, 0.18));
}

.gallery-section {
  background: #fff;
}

.gallery-slider {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2.2vw, 22px);
  isolation: isolate;
  overflow: hidden;
  filter: drop-shadow(0 26px 54px rgba(9, 36, 29, 0.22));
  clip-path: polygon(
    0 2%,
    10% 0.8%,
    22% 2.4%,
    36% 1%,
    52% 2.7%,
    68% 1.1%,
    84% 2.6%,
    100% 1.2%,
    99.1% 25%,
    100% 50%,
    98.8% 74%,
    100% 98.2%,
    86% 99.2%,
    70% 98%,
    54% 99.4%,
    38% 98%,
    20% 99.1%,
    0 98%,
    1% 74%,
    0 50%,
    1.2% 24%
  );
}

.gallery-slider::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 17% 22%, rgba(189, 246, 223, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 66%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    #09241d;
}

.gallery-slider-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  min-height: clamp(360px, 54vw, 620px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #09241d;
  cursor: zoom-in;
}

.gallery-slider-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(4, 36, 27, 0.54), transparent 45%),
    linear-gradient(90deg, rgba(4, 36, 27, 0.35), transparent 42%);
  pointer-events: none;
}

.gallery-slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.gallery-slider-main:hover img,
.gallery-slider-main:focus-visible img {
  transform: scale(1.025);
  transition: transform 420ms ease;
}

.gallery-slider-main:focus-visible {
  outline: 4px solid rgba(189, 246, 223, 0.38);
  outline-offset: -8px;
}

.gallery-slider.is-changing-next .gallery-slider-main img {
  animation: galleryNext 420ms ease both;
}

.gallery-slider.is-changing-prev .gallery-slider-main img {
  animation: galleryPrev 420ms ease both;
}

.gallery-slider-label,
.gallery-slider-counter,
.gallery-slider-controls {
  position: absolute;
  z-index: 3;
}

.gallery-slider-label {
  left: clamp(22px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 42px);
  max-width: min(620px, calc(100% - 44px));
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 36, 29, 0.68);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-slider-counter {
  top: clamp(22px, 4vw, 42px);
  left: clamp(22px, 4vw, 42px);
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 36, 29, 0.66);
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-slider-controls {
  inset: 0;
  pointer-events: none;
}

.gallery-control,
.gallery-pause {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: rgba(15, 118, 110, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.gallery-control {
  top: 50%;
  width: clamp(46px, 6vw, 62px);
  height: clamp(46px, 6vw, 62px);
  border-radius: 50%;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(-50%) scale(1.05);
  background: var(--green-dark);
  outline: 3px solid rgba(189, 246, 223, 0.34);
}

.gallery-control[data-gallery-prev] {
  left: clamp(22px, 4vw, 42px);
}

.gallery-control[data-gallery-next] {
  right: clamp(22px, 4vw, 42px);
}

.gallery-pause {
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 42px);
  min-width: 92px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 900;
}

.gallery-pause:hover,
.gallery-pause:focus-visible {
  transform: translateY(-2px);
  background: var(--green-dark);
  outline: 3px solid rgba(189, 246, 223, 0.34);
}

.reveal {
  --reveal-x: 0;
  --reveal-y: 24px;
  opacity: 0;
  transform: translate(var(--reveal-x), var(--reveal-y));
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-left {
  --reveal-x: -44px;
  --reveal-y: 0;
  transition-duration: 900ms;
}

.reveal-right {
  --reveal-x: 44px;
  --reveal-y: 0;
  transition-delay: 180ms;
  transition-duration: 900ms;
}

.reveal.is-visible {
  --reveal-x: 0;
  --reveal-y: 0;
  opacity: 1;
}

.service-card.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.service-card.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.service-card.reveal:nth-child(4) {
  transition-delay: 210ms;
}

.service-card.reveal:nth-child(5) {
  transition-delay: 280ms;
}

.service-card.reveal:nth-child(6) {
  transition-delay: 350ms;
}

.service-card.reveal:nth-child(7) {
  transition-delay: 420ms;
}

.service-card.reveal:nth-child(8) {
  transition-delay: 70ms;
}

.service-card.reveal:nth-child(9) {
  transition-delay: 140ms;
}

.service-card.reveal:nth-child(10) {
  transition-delay: 210ms;
}

.service-card.reveal:nth-child(11) {
  transition-delay: 280ms;
}

.service-card.reveal:nth-child(12) {
  transition-delay: 350ms;
}

.service-card.reveal:nth-child(13) {
  transition-delay: 420ms;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 1;
  background: rgba(6, 20, 17, 0.54);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease;
}

.lightbox[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.lightbox-dialog img {
  width: auto;
  max-width: min(1280px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  animation: lightboxPhotoIn 240ms ease both;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 118, 110, 0.92);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-1px);
  background: var(--green);
  outline: 3px solid rgba(189, 246, 223, 0.34);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-nav-prev {
  left: 20px;
}

.lightbox-nav-next {
  right: 20px;
}

@keyframes galleryNext {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }

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

@keyframes galleryPrev {
  from {
    opacity: 0;
    transform: translateX(-18px) scale(0.985);
  }

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

@keyframes lightboxPhotoIn {
  from {
    opacity: 0;
    transform: scale(0.975);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.lightbox-open,
body.modal-open {
  overflow: hidden;
}

body.lightbox-open .site-header,
body.lightbox-open main,
body.lightbox-open .site-footer,
body.lightbox-open .sticky-contact {
  filter: blur(8px);
}

.contact-section {
  align-items: start;
  grid-template-columns: minmax(440px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 4.6vw, 58px);
}

.contact-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: clamp(2px, 1vw, 8px);
}

.contact-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  margin-top: clamp(18px, 3vw, 34px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 30, 0.06);
}

.contact-intro {
  display: grid;
  gap: 8px;
}

.contact-intro .eyebrow {
  margin-bottom: 2px;
}

.contact-intro h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.contact-copy > p {
  max-width: 620px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: none;
  margin-top: 0;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(23, 32, 30, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(23, 32, 30, 0.1);
  outline: none;
}

.contact-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.25;
}

.contact-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: none;
  margin-top: 0;
}

.contact-info-block {
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-info-block h3 {
  margin-bottom: 8px;
}

.contact-info-block p {
  margin: 0;
}

.process-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
}

.process-list li::marker {
  color: var(--green);
  font-weight: 850;
}

.contact-form {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(18px, 3vw, 34px);
  padding: clamp(30px, 4.8vw, 48px);
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 22px 48px rgba(9, 36, 29, 0.24));
  clip-path: polygon(
    0 2.5%,
    12% 1%,
    25% 3%,
    39% 1.5%,
    54% 3.2%,
    70% 1.2%,
    86% 2.8%,
    100% 1.6%,
    99% 24%,
    100% 48%,
    98.5% 73%,
    100% 98%,
    84% 99%,
    67% 97.8%,
    51% 99.4%,
    34% 98%,
    18% 99.2%,
    0 97.8%,
    1.2% 72%,
    0 49%,
    1.4% 25%
  );
  overflow: hidden;
}

.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact-form::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(189, 246, 223, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.09) 0 1px, transparent 2px),
    #09241d;
}

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

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-heading {
  margin-bottom: 8px;
}

.form-heading .eyebrow {
  color: #dff3ed;
}

.form-heading h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-heading h3 {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.form-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.optional-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84em;
  font-weight: 700;
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(223, 243, 237, 0.34);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(189, 246, 223, 0.32);
  border-color: #bdf6df;
}

option {
  color: var(--ink);
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  line-height: 1.45;
  font-size: 0.86rem;
  font-weight: 650;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--green);
}

.privacy-consent a {
  color: #bdf6df;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #073f35;
  background: #c9f7dd;
}

.form-status.is-error {
  color: #fff2f2;
  background: rgba(185, 28, 28, 0.72);
}

.contact-form.is-sending button[type="submit"] {
  cursor: wait;
  opacity: 0.78;
}

.form-loading-open {
  overflow: hidden;
}

.submit-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background: rgba(9, 36, 29, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.submit-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submit-loader-card {
  width: min(420px, 100%);
  padding: clamp(24px, 5vw, 34px);
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 16px;
  text-align: center;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  transform: translateY(14px) scale(0.98);
  transition: transform 260ms ease;
}

.submit-loader.is-visible .submit-loader-card {
  transform: translateY(0) scale(1);
}

.submit-loader-card .eyebrow {
  margin-top: 18px;
  color: var(--green);
}

.submit-loader-card h2 {
  margin-top: 6px;
  font-size: clamp(1.55rem, 5vw, 2.3rem);
}

.submit-loader-card p:last-child {
  margin: 8px 0 0;
}

.mower-scene {
  position: relative;
  height: 128px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #f8fbf8 0 58%, #e4f4e5 58% 100%);
}

.grass-line {
  position: absolute;
  right: -48px;
  bottom: 22px;
  left: -48px;
  height: 26px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      #2f7d37 0 5px,
      #77b95a 5px 10px,
      #195331 10px 14px,
      #5ca84b 14px 20px
    );
  animation: grassSlide 720ms linear infinite;
}

.mower-worker {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 150px;
  height: 88px;
  animation: mowerDrive 2.2s ease-in-out infinite;
}

.worker-head,
.worker-hat,
.worker-body,
.worker-arm,
.worker-leg,
.mower-handle,
.mower-base,
.mower-wheel {
  position: absolute;
  display: block;
}

.worker-head {
  top: 8px;
  left: 48px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2b37b;
  box-shadow: inset -3px -2px 0 rgba(120, 60, 28, 0.18);
}

.worker-hat {
  top: 3px;
  left: 42px;
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: #5f9b42;
  transform: rotate(-8deg);
}

.worker-body {
  top: 31px;
  left: 46px;
  width: 25px;
  height: 34px;
  border-radius: 8px 8px 5px 5px;
  background: #0f766e;
  transform: rotate(-6deg);
}

.worker-arm {
  top: 38px;
  left: 66px;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: #f2b37b;
  transform: rotate(19deg);
  transform-origin: left center;
  animation: workerArm 720ms ease-in-out infinite;
}

.worker-leg {
  top: 62px;
  left: 50px;
  width: 8px;
  height: 30px;
  border-radius: 999px;
  background: #0b5d55;
  transform-origin: top center;
}

.worker-leg-one {
  transform: rotate(12deg);
  animation: workerStepOne 720ms ease-in-out infinite;
}

.worker-leg-two {
  left: 64px;
  transform: rotate(-12deg);
  animation: workerStepTwo 720ms ease-in-out infinite;
}

.mower-handle {
  top: 44px;
  left: 93px;
  width: 50px;
  height: 6px;
  border-radius: 999px;
  background: #09241d;
  transform: rotate(28deg);
}

.mower-base {
  right: 6px;
  bottom: 0;
  width: 58px;
  height: 24px;
  border-radius: 9px 14px 8px 8px;
  background: linear-gradient(135deg, #79b84f, #0f766e);
}

.mower-wheel {
  bottom: -5px;
  width: 17px;
  height: 17px;
  border: 4px solid #09241d;
  border-radius: 50%;
  background: #fff;
  animation: wheelSpin 520ms linear infinite;
}

.mower-wheel-one {
  right: 47px;
}

.mower-wheel-two {
  right: 8px;
}

@keyframes mowerDrive {
  0%,
  100% {
    transform: translateX(-66%) translateY(0);
  }

  50% {
    transform: translateX(-34%) translateY(-2px);
  }
}

@keyframes grassSlide {
  to {
    transform: translateX(24px);
  }
}

@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes workerArm {
  0%,
  100% {
    transform: rotate(16deg);
  }

  50% {
    transform: rotate(25deg);
  }
}

@keyframes workerStepOne {
  0%,
  100% {
    transform: rotate(14deg);
  }

  50% {
    transform: rotate(-12deg);
  }
}

@keyframes workerStepTwo {
  0%,
  100% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(14deg);
  }
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: clamp(26px, 5vw, 70px);
  padding: clamp(76px, 8vw, 112px) clamp(18px, 4vw, 54px) 22px;
  scroll-margin-top: 88px;
  color: rgba(255, 255, 255, 0.82);
  background: #09241d;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: clamp(-68px, -5vw, -44px);
  height: clamp(78px, 7vw, 112px);
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 52%, rgba(189, 246, 223, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 28%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 83% 44%, rgba(189, 246, 223, 0.09) 0 1px, transparent 2px),
    #09241d;
  clip-path: polygon(
    0 46%,
    4% 38%,
    9% 45%,
    14% 35%,
    20% 43%,
    26% 32%,
    33% 42%,
    39% 34%,
    46% 44%,
    52% 36%,
    59% 43%,
    65% 33%,
    72% 42%,
    78% 35%,
    85% 45%,
    92% 37%,
    100% 44%,
    100% 100%,
    0 100%
  );
}

.footer-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.site-footer h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.42rem, 2vw, 1.82rem);
}

.site-footer h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 560px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer address {
  font-style: normal;
}

.footer-contact-simple {
  gap: 12px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(189, 246, 223, 0.1);
  box-shadow: inset 0 0 0 1px rgba(189, 246, 223, 0.16);
  object-fit: contain;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 750;
}

.site-footer a,
.footer-link-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font: inherit;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover,
.footer-link-button:hover,
.site-footer a:focus-visible,
.footer-link-button:focus-visible {
  color: #bdf6df;
  transform: translateX(2px);
  outline: none;
}

.footer-contact-item:hover .footer-contact-icon,
.footer-contact-item:focus-visible .footer-contact-icon {
  background: rgba(189, 246, 223, 0.18);
  box-shadow: inset 0 0 0 1px rgba(189, 246, 223, 0.28);
  transform: scale(1.04);
}

.site-footer a.footer-contact-item:hover span,
.site-footer a.footer-contact-item:focus-visible span {
  color: #bdf6df;
}

.site-footer .footer-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  text-align: center;
}

.cookie-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 1;
  background: rgba(6, 20, 17, 0.72);
  transition: opacity 200ms ease;
}

.cookie-dialog[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.cookie-panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.28);
}

.cookie-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cookie-panel p {
  color: var(--muted);
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 4px;
  color: var(--muted);
}

.cookie-status {
  flex: 0 0 auto;
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button.secondary {
  color: var(--green-dark);
  border-color: rgba(15, 118, 110, 0.24);
  background: #fff;
  backdrop-filter: none;
}

.sticky-contact {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 45;
  display: flex;
}

.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(14, 99, 54, 0.22);
  font-size: 0.96rem;
  font-weight: 900;
  white-space: nowrap;
  transition: width 220ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.sticky-contact a:hover,
.sticky-contact a:focus-visible {
  gap: 10px;
  color: var(--green-dark);
  width: 170px;
  padding: 0 18px;
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(14, 99, 54, 0.28);
  outline: none;
}

.whatsapp-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.sticky-contact span {
  max-width: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: max-width 220ms ease, opacity 160ms ease, transform 160ms ease;
}

.sticky-contact a:hover span,
.sticky-contact a:focus-visible span {
  max-width: 90px;
  opacity: 1;
  transform: translateX(0);
}

.legal-page {
  min-height: 100svh;
  padding: clamp(24px, 5vw, 54px);
  background: var(--soft);
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 32, 30, 0.08);
}

.legal-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 3px;
  border-radius: 16px;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.legal-brand strong,
.legal-brand small {
  display: block;
  line-height: 1.1;
}

.legal-brand strong {
  font-size: 1.06rem;
  font-weight: 900;
}

.legal-brand small {
  width: fit-content;
  margin-top: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.legal-back {
  display: flex;
  width: fit-content;
  margin: 0 auto 24px;
  color: var(--green-dark);
  font-weight: 850;
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.legal-content h2 {
  margin-top: 30px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-content a {
  color: var(--green);
  font-weight: 850;
}

.legal-list {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li::marker {
  color: var(--green);
}

.legal-note {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 750;
}

.legal-meta {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    margin-bottom: 0;
  }

  .contact-methods,
  .contact-extra {
    max-width: none;
  }

  .contact-copy {
    margin-top: 0;
  }

  .contact-form {
    margin-top: 10px;
  }

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

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }

  .footer-column {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 90px;
    padding-block: 8px;
  }

  .brand-mark,
  .brand-logo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    padding: 0;
    font-size: 0.9rem;
  }

  .brand {
    padding: 0;
  }

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

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

  .site-nav {
    top: 80px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 36, 27, 0.9), rgba(4, 36, 27, 0.66)),
      linear-gradient(0deg, rgba(4, 36, 27, 0.7), rgba(4, 36, 27, 0));
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 128px;
  }

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

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

  .contact-card {
    min-height: auto;
    padding: 20px;
  }

  .about-benefits {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-benefits span {
    min-height: 48px;
  }

  .gallery-slider {
    padding: 10px;
  }

  .gallery-slider-main {
    aspect-ratio: 1 / 1.05;
    min-height: 440px;
  }

  .gallery-slider-label {
    right: 16px;
    bottom: 18px;
    left: 16px;
    max-width: none;
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .gallery-slider-counter {
    top: 18px;
    left: 16px;
  }

  .gallery-control {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .gallery-control[data-gallery-prev] {
    left: 16px;
  }

  .gallery-control[data-gallery-next] {
    right: 16px;
  }

  .gallery-pause {
    right: 16px;
    bottom: 76px;
    min-width: 82px;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .lightbox {
    padding: 66px 12px 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2.2rem;
  }

  .lightbox-nav-prev {
    left: 12px;
  }

  .lightbox-nav-next {
    right: 12px;
  }

  .lightbox-dialog img {
    max-width: 94vw;
    max-height: 82vh;
  }

  .site-footer {
    padding-top: 72px;
  }

  .footer-brand {
    align-items: center;
  }

  .cookie-option,
  .cookie-actions {
    display: grid;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .sticky-contact {
    right: 12px;
    bottom: 12px;
  }

  .sticky-contact a,
  .sticky-contact a:hover,
  .sticky-contact a:focus-visible {
    gap: 10px;
    width: auto;
    min-height: 56px;
    height: 56px;
    padding: 0 16px;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .sticky-contact span {
    max-width: 90px;
    opacity: 1;
    transform: none;
  }
}
