﻿:root {
  --green: #679e42;
  --green-dark: #365f2a;
  --green-soft: #eef6ea;
  --orange: #e58b2e;
  --orange-soft: #fff4e8;
  --ink: #20251f;
  --muted: #6f766c;
  --line: #e3e8df;
  --paper: #ffffff;
  --mist: #f7f8f4;
  --footer-text: #3f493b;
  --shadow: 0 18px 48px rgba(39, 59, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

html.nav-lock,
body.nav-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-lock {
  position: fixed;
  width: 100%;
}

body.nav-lock::before {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  background: rgba(14, 24, 12, 0.42);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  content: "";
}

body.nav-lock .site-header {
  z-index: 200;
}

body.nav-lock .header-info {
  pointer-events: none;
  opacity: 0.42;
  filter: blur(6px);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(26, 39, 21, 0.11);
  backdrop-filter: blur(7px);
}

.header-info {
  background: transparent;
}

.header-info__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
}

.brand img {
  width: 210px;
  max-width: calc(100vw - 92px);
  height: auto;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
  color: #454d42;
}

.contact-chip--wide {
  min-width: 360px;
}

.contact-chip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-chip b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-chip small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.header-nav {
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.header-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  gap: 22px;
}

.language-switch {
  position: relative;
  display: inline-block;
  justify-self: start;
}

.language-switch--mobile {
  display: none;
}

.language-switch__current,
.language-switch__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.language-switch__current {
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease;
}

.language-switch__current::after {
  margin-left: 6px;
  content: "▾";
  font-size: 10px;
  line-height: 1;
}

.language-switch__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  display: grid;
  min-width: 44px;
  padding: 10px 0 4px;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switch:hover .language-switch__menu,
.language-switch:focus-within .language-switch__menu,
.language-switch.is-open .language-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switch:hover .language-switch__current,
.language-switch__current:focus {
  color: rgba(255, 255, 255, 0.82);
}

.language-switch__menu a {
  justify-content: flex-start;
  border-radius: 0;
  background: var(--green-dark);
  transition: background 160ms ease;
}

.language-switch__menu a:hover,
.language-switch__menu a.is-active {
  background: var(--green);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
}

.mobile-drawer-logo {
  display: none !important;
}

.mobile-drawer-head,
.mobile-drawer-close,
.nav-backdrop {
  display: none;
}

.nav-link-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  flex: 0 0 auto;
  order: 2;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ffffff;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 34px;
  color: #ffffff;
  background: transparent;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-social svg {
  width: 21px;
  height: 21px;
}

.nav-social--whatsapp svg {
  width: 21px;
  height: 21px;
}

.nav-social:hover {
  color: rgba(255, 255, 255, 0.78);
}

.social-icon,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover,
.icon-btn:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.catalog-btn,
.whatsapp-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.catalog-btn {
  color: #fff;
  background: var(--orange);
}

.whatsapp-btn {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.catalog-btn:hover,
.whatsapp-btn:hover,
.btn:hover {
  transform: none;
}

.btn--primary:hover,
.catalog-btn:hover {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--ghost:hover,
.whatsapp-btn:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.btn--primary {
  color: #fff;
  background: var(--green);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 0;
  width: 44px;
  height: 44px;
}

.hamburger span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.mobile-only {
  display: none !important;
}

.hero-shell {
  background: linear-gradient(180deg, #f7f8f4, #fff);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #dfe7d8;
  touch-action: pan-y;
  user-select: none;
}

.slides {
  position: relative;
  height: 545px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 520ms ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(1.055);
  transition: transform 900ms ease;
}

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

.slide.is-active img {
  transform: scale(1);
}

.slider-pause-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(27, 39, 21, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.slider-pause-indicator.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slider-pause-bar {
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(27, 39, 21, 0.24);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-timeline {
  position: relative;
  width: min(34vw, 280px);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.slider-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: #fff;
  transition: width 120ms linear;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.section {
  padding: 86px 0;
}

.service-teasers {
  padding: 48px 0 52px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.service-teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, 346px);
  justify-content: space-between;
  gap: 0;
  align-items: stretch;
  background: #fff;
}

.service-teaser {
  position: relative;
  display: grid;
  grid-template-rows: 190px auto 1fr auto;
  align-content: stretch;
  padding: 0;
}

.service-teaser:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: -36px;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.service-teaser__image {
  display: block;
  width: 346px;
  height: 189px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 360ms ease;
}

.service-teaser img {
  display: block;
  width: 346px;
  height: 189px;
  object-fit: cover;
  filter: saturate(0.96);
  transition: filter 420ms ease, transform 520ms ease;
  transform-origin: center;
}

.service-teaser:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.service-teaser:hover .service-teaser__image {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.service-teaser.is-active .service-teaser__image {
  box-shadow: 0 0 0 2px rgba(96, 159, 60, 0.34), 0 8px 18px rgba(0, 0, 0, 0.18);
}

.service-teaser.is-active img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.06);
}

.service-teaser h2 {
  padding-top: 28px;
  margin-bottom: 18px;
  color: #1f261d;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.service-teaser p {
  max-width: 360px;
  color: #7a8077;
  font-size: 14px;
  line-height: 1.75;
}

.service-teaser__button {
  display: inline-grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  justify-items: center;
  justify-self: start;
  width: 132px;
  min-height: 44px;
  margin-top: 24px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease;
}

.service-teaser__button:hover {
  background: var(--green-dark);
}

.service-teaser__button span {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 38px;
  background: rgba(54, 95, 42, 0.18);
  font-size: 23px;
  line-height: 1;
  transition: background 180ms ease;
}

.service-teaser__button:hover span {
  background: rgba(255, 255, 255, 0.14);
}

.text-slider-section {
  padding: 66px 0 64px;
  background: #f5f6f2;
}

.text-slider {
  position: relative;
  width: 100%;
  min-height: 380px;
  margin: 0 auto;
}

.text-slider__viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.text-slider__viewport.is-dragging {
  cursor: grabbing;
}

.text-slider__track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.text-slider__track.is-dragging {
  transition: none;
}

.text-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 360px 763px;
  align-items: start;
  justify-content: space-between;
  gap: 57px;
}

.text-slide__content {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 24px;
  padding-top: 0;
  padding-left: 0;
}

.text-slide h3 {
  margin: 0;
  color: #30352f;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.text-slide p {
  max-width: 360px;
  margin: 0;
  color: #747b70;
  font-size: 14px;
  line-height: 1.8;
}

.text-slide img {
  width: 763px;
  height: 333px;
  object-fit: cover;
  pointer-events: none;
}

.text-slider__dots {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 360px;
  transform: translateY(0);
}

.text-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8ccc3;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.text-slider__dots button.is-active {
  background: var(--green-dark);
  transform: scale(1.15);
}

.green-motto-band {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 15px 20px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.green-motto-band img {
  width: min(760px, calc(100% - 40px));
  max-height: 40px;
  object-fit: contain;
  transform: translateY(5px);
}

.video-section {
  padding: 89px 0 55px;
  background: #fff url("../img/layout/home-row-background-2.jpg") center top / cover no-repeat;
}

.video-section__inner {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.video-section__frame {
  width: 100%;
  aspect-ratio: 1060 / 596;
  background: #111;
}

.video-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.video-section__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: none;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.video-section__title svg {
  width: 28px;
  height: 28px;
  color: #d52222;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 68px);
}

h2 {
  max-width: 690px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

p {
  margin: 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: start;
}

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

.garden-section {
  background: linear-gradient(90deg, rgba(247, 248, 244, 0.96), rgba(247, 248, 244, 0.88)), url("../img/layout/footer-image.jpg") center / cover;
}

.garden-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.garden-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.garden-copy p {
  margin: 18px 0;
}

.garden-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.garden-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.soft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.soft-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 600;
}

.text-link::after {
  color: var(--orange);
  content: "→";
}

.services-section {
  background: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

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

.service-list a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-list span {
  display: block;
  min-height: 68px;
  padding: 18px;
  color: var(--green-dark);
  font-weight: 500;
}

.project-showcase {
  background: var(--mist);
}

.project-head {
  align-items: start;
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.project-tabs button {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-dark);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
}

.project-tabs button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.featured-project {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.featured-project__image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.featured-project__content {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 34px;
  background: #fff;
}

.featured-project__content span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-project__content p {
  color: var(--muted);
}

.project-strip {
  display: grid;
  grid-auto-columns: minmax(220px, 300px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  margin-top: 16px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.project-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  scroll-snap-align: start;
}

.cta-panel {
  padding: 54px 0;
  background: #fff;
}

.cta-panel__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--green-soft), #fff);
}

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

.site-footer {
  color: #fff;
  min-height: 350px;
  background: linear-gradient(90deg, rgb(45 105 0), rgba(29, 45, 24, 0.38)), url("../img/layout/footer-image.jpg") center top / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  align-items: stretch;
  gap: 44px;
  padding: 34px 0 30px;
  text-align: center;
}

.footer-brand {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  min-height: 256px;
}

.footer-logo {
  display: block;
  width: 232px;
  margin: 0 auto;
}

.footer-brand p {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 2.05;
  text-align: center;
  transform: translateY(6px);
}

.footer-links {
  display: grid;
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.35;
  min-height: 256px;
}

.footer-links__toggle {
  display: none;
}

.footer-links__panel {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 256px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 180ms ease;
}

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

.footer-bottom {
  background: #679e4224;
}

.footer-bottom__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-grid;
  width: 58px;
  height: 58px;
  min-height: 58px;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.28);
  font-weight: 600;
  isolation: isolate;
}

.whatsapp-float::before {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.48);
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.16);
  content: "";
  animation: whatsappPulse 1.65s ease-out infinite;
}

.whatsapp-float::after {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/icons/whatsapp.svg") center / contain no-repeat;
  content: "";
}

.whatsapp-float svg {
  display: none !important;
}

.whatsapp-float img {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: block !important;
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.whatsapp-float span {
  display: none;
}

.page-up {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 91;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(54, 95, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background 180ms ease;
}

.page-up::before {
  color: #fff;
  content: "↑";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.page-up.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-up:hover {
  background: var(--green-dark);
}

.page-up svg {
  display: none !important;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.82;
    transform: scale(0.94);
  }

  70% {
    opacity: 0;
    transform: scale(1.42);
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

/* Shared inner pages */
.page-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: center;
  color: #fff;
  background: #dfe7d8;
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(37, 54, 30, 0.54), rgba(37, 54, 30, 0.16));
  content: "";
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.split,
.contact-layout,
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.split__media,
.content-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.split__media img,
.content-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-panel {
  padding: 26px;
}

.content-panel img {
  margin-top: 18px;
}

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

.feature-list li {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.contact-map {
  background: #eef2ea;
}

.contact-map__frame {
  display: block;
  height: 430px;
}

.contact-page {
  background: linear-gradient(180deg, #fff, #f7f8f4);
}

.contact-page__head {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-bottom: 34px;
}

.contact-card,
.contact-info-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 168px;
  padding: 26px;
}

.contact-card span,
.contact-info-row span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-card strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

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

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 28px;
}

.contact-info-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 30px;
}

.contact-info-panel h2,
.contact-form h2 {
  font-size: 23px;
}

.contact-info-list {
  display: grid;
}

.contact-info-row {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-row p {
  font-size: 14px;
  line-height: 1.65;
}

.contact-info-row:first-child {
  padding-top: 0;
}

.contact-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-row p + p {
  margin-top: 8px;
}

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

.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-form {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 18px;
  padding: 30px;
}

.contact-form .btn {
  align-self: end;
  width: 100%;
  min-height: 42px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 18px;
}

.field {
  display: grid;
  gap: 9px;
}

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

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfcfa;
  color: var(--ink);
}

.field textarea {
  min-height: 190px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.project-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.filter-btn.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius);
  background: #fff;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.project-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(25, 38, 20, 0.72), rgba(25, 38, 20, 0));
}

.project-card__body h3,
.project-card__body p {
  color: #fff;
}

.project-card__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
}

.project-card.is-hidden {
  display: none;
}

.gallery-rail {
  display: grid;
  grid-auto-columns: minmax(240px, 380px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}

.gallery-rail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  scroll-snap-align: start;
}

@media (max-width: 1080px) {
  .header-contact {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .header-info__inner {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    min-height: 64px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .header-info {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 22px rgba(26, 39, 21, 0.12);
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    max-width: 156px;
    opacity: 1;
  }

  .hamburger.icon-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--green-dark);
  }

  .hamburger.icon-btn:hover {
    color: var(--green);
    background: transparent;
    transform: none;
  }

  .hamburger span {
    width: 17px;
  }

  .language-switch--desktop {
    display: none;
  }

  .language-switch--mobile {
    display: inline-block;
    justify-self: start;
  }

  .language-switch--mobile .language-switch__current {
    min-width: 42px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.82);
    transition: color 160ms ease, background 160ms ease;
  }

  .language-switch--mobile .language-switch__current:focus,
  .language-switch--mobile.is-open .language-switch__current,
  .language-switch--mobile:hover .language-switch__current {
    color: #fff;
    background: var(--green);
  }

  .language-switch--mobile .language-switch__menu {
    overflow: hidden;
    min-width: 42px;
    padding: 0;
    background: #fff;
    box-shadow: 0 14px 28px rgba(54, 95, 42, 0.14);
  }

  .language-switch--mobile .language-switch__menu a {
    color: var(--green-dark);
    background: #fff;
  }

  .language-switch--mobile .language-switch__menu a:hover,
  .language-switch--mobile .language-switch__menu a.is-active {
    color: #fff;
    background: var(--green);
  }

  .header-nav {
    position: relative;
    height: 0;
    background: transparent;
    border-top: 0;
  }

  .header-nav__inner {
    display: block;
    min-height: 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(86vw, 380px);
    height: 100dvh;
    padding: 12px 28px 34px;
    overflow-y: auto;
    background: #f1f1f1c9;
    color: var(--green-dark);
    border-left: 1px solid rgba(54, 95, 42, 0.16);
    box-shadow: -28px 0 48px rgba(26, 39, 21, 0.18);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    display: block;
    width: 100vw;
    height: 100dvh;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer-head {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: start;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  .nav__links .mobile-drawer-logo {
    display: flex !important;
    justify-content: flex-start;
    width: 170px;
    height: auto;
    min-height: auto !important;
    border-bottom: 0 !important;
  }

  .nav__links .mobile-drawer-logo img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .mobile-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--green-dark);
    cursor: pointer;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
  }

  .nav__links a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .nav__links a::after {
    display: none;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .nav-actions {
    display: none;
  }

  .service-list,
  .service-teasers__grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-teasers__grid {
    justify-content: stretch;
  }

  .service-teaser {
    grid-template-rows: 178px auto 1fr auto;
    padding: 0 28px 34px;
  }

  .service-teaser::after {
    display: none;
  }

  .service-teaser__image,
  .service-teaser img {
    width: 100%;
    height: 178px;
  }

  .service-teaser:nth-child(2) {
    border-right: 0;
  }

  .service-teaser:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 34px;
  }

  .intro-grid,
  .garden-layout,
  .featured-project,
  .split,
  .contact-layout,
  .contact-main,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .featured-project__image img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-tabs {
    justify-content: flex-start;
  }

  .text-slide {
    grid-template-columns: minmax(280px, 32%) minmax(0, 64%);
    gap: 34px;
  }

  .text-slide__content {
    padding-left: 0;
  }

  .text-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 763 / 333;
  }

  .text-slider__dots {
    padding-right: 31%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .slides {
    aspect-ratio: 16 / 8;
    height: auto;
    min-height: 0;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .slider-controls {
    bottom: 12px;
    gap: 8px;
  }

  .slider-timeline {
    width: min(42vw, 180px);
  }

  .slider-pause-indicator {
    width: 58px;
    height: 58px;
    gap: 8px;
  }

  .slider-pause-bar {
    width: 4px;
    height: 18px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
  }

  .service-list,
  .service-teasers__grid,
  .project-grid,
  .contact-card-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map__frame {
    height: 330px;
  }

  .video-section {
    padding: 34px 0 42px;
  }

  .video-section__inner {
    gap: 18px;
  }

  .contact-page__head {
    margin-bottom: 24px;
  }

  .contact-card {
    min-height: 0;
    padding: 22px;
  }

  .contact-info-panel,
  .contact-form {
    padding: 24px;
  }

  .contact-info-panel h2,
  .contact-form h2 {
    font-size: 23px;
  }

  .service-teasers {
    padding: 34px 0;
  }

  .service-teaser,
  .service-teaser:first-child,
  .service-teaser:last-child,
  .service-teaser:nth-child(3) {
    grid-template-rows: auto;
    padding: 0 0 34px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-teaser:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-teaser p {
    min-height: 0;
  }

  .service-teaser__image,
  .service-teaser img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.6;
  }

  .section {
    padding: 58px 0;
  }

  .text-slider-section {
    padding: 44px 0 62px;
  }

  .text-slider {
    min-height: 0;
  }

  .text-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .text-slide__content {
    padding-left: 0;
  }

  .text-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .text-slider__dots {
    justify-content: center;
    padding-right: 0;
    bottom: -28px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .section-head,
  .cta-panel__inner,
  .footer-bottom {
    display: grid;
  }

  .garden-copy,
  .featured-project__content,
  .cta-panel__inner {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0 24px;
  }

  .footer-brand {
    min-height: 0;
    margin-bottom: 12px;
    padding-bottom: 18px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-links {
    min-height: 0;
    padding-top: 0;
    text-align: left;
  }

  .footer-links__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
  }

  .footer-links__toggle::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
  }

  .footer-links.is-open .footer-links__toggle::after {
    content: "-";
  }

  .footer-links__panel {
    display: grid;
    gap: 12px;
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    padding: 0 14px;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .footer-links.is-open .footer-links__panel {
    max-height: 340px;
    padding: 12px 14px 8px;
  }

  .footer-links__panel a {
    display: block;
    padding: 3px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .page-up {
    right: 17px;
    bottom: 72px;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float span {
    display: none;
  }
}

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