﻿: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 {
  width: 100%;
}

body.nav-lock::before {
  position: fixed;
  inset: 0;
  z-index: 4500;
  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: 4600;
}

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: none;
}

.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/lay-home-bg.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: 500;
  text-transform: none;
}

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

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/lay-footer.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: 500;
  text-transform: none;
}

.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/lay-footer.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;
}

.corporate-banner {
  position: relative;
  display: grid;
  align-items: center;
  height: 100px;
  overflow: hidden;
  background: #eef0ec;
}

.corporate-banner img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) saturate(0.92);
  transform: scale(1.02);
}

.corporate-banner::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.corporate-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.corporate-banner h1 {
  color: #3f493b;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.75vw, 23px);
  font-weight: 400;
  line-height: 1.2;
}

.corporate-banner h1 a,
.corporate-banner h1 span {
  color: inherit;
}

.corporate-page {
  padding-top: 52px;
  background: var(--paper);
}

.corporate-video {
  display: grid;
  gap: 22px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

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

.corporate-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.corporate-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.corporate-block h2,
.corporate-services h2,
.corporate-video h2,
.corporate-service h3 {
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
}

.corporate-block h2,
.corporate-service h3 {
  margin-bottom: 15px;
}

.corporate-block h2::after,
.corporate-service h3::after,
.corporate-services h2::after,
.corporate-video h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}

.corporate-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.corporate-services {
  padding-top: 42px;
}

.corporate-services h2 {
  margin-bottom: 30px;
}

.corporate-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.corporate-service ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
}

.corporate-service li::before {
  margin-right: 8px;
  color: var(--green);
  content: "•";
}

.corporate-service span {
  display: block;
  padding-left: 18px;
}

.landscape-page {
  padding-top: 52px;
  background: var(--paper);
}

/* Alt sayfalar (index hariç): tam genişlik şeritler — beyaz / gri sıralı */
body.site-subpage .landscape-page > .container > .landscape-lead,
body.site-subpage .landscape-page > .container > .service-scope-details__inner,
body.site-subpage .landscape-page > .container > .service-discovery,
body.site-subpage .landscape-page > .container > .service-faq,
body.site-subpage .landscape-page > .container > .content-gallery,
body.site-subpage .corporate-page > .container > .corporate-video,
body.site-subpage .corporate-page > .container > .corporate-intro,
body.site-subpage .corporate-page > .container > .corporate-services,
body.site-subpage .market-page > .container > .market-lead,
body.site-subpage .market-page > .container > .market-gallery,
body.site-subpage .market-page > .container > .market-products,
body.site-subpage .contact-page:not(.contact-page--kesif) > .container > .contact-main {
  position: relative;
  z-index: 0;
}

body.site-subpage .landscape-page > .container > .landscape-lead::before,
body.site-subpage .landscape-page > .container > .service-scope-details__inner::before,
body.site-subpage .landscape-page > .container > .service-discovery::before,
body.site-subpage .landscape-page > .container > .service-faq::before,
body.site-subpage .landscape-page > .container > .content-gallery::before,
body.site-subpage .corporate-page > .container > .corporate-video::before,
body.site-subpage .corporate-page > .container > .corporate-intro::before,
body.site-subpage .corporate-page > .container > .corporate-services::before,
body.site-subpage .market-page > .container > .market-lead::before,
body.site-subpage .market-page > .container > .market-gallery::before,
body.site-subpage .market-page > .container > .market-products::before,
body.site-subpage .contact-page:not(.contact-page--kesif) > .container > .contact-main::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  pointer-events: none;
  content: "";
  transform: translateX(-50%);
}

body.site-subpage .landscape-page > .container > .landscape-lead::before,
body.site-subpage .landscape-page > .container > .service-discovery::before,
body.site-subpage .landscape-page > .container > .content-gallery::before,
body.site-subpage .corporate-page > .container > .corporate-video::before,
body.site-subpage .corporate-page > .container > .corporate-services::before,
body.site-subpage .market-page > .container > .market-lead::before,
body.site-subpage .market-page > .container > .market-products::before,
body.site-subpage .contact-page:not(.contact-page--kesif) > .container > .contact-main::before {
  background: var(--paper);
}

body.site-subpage .landscape-page > .container > .service-scope-details__inner::before,
body.site-subpage .landscape-page > .container > .service-faq::before,
body.site-subpage .corporate-page > .container > .corporate-intro::before,
body.site-subpage .market-page > .container > .market-gallery::before {
  background: var(--mist);
}

.landscape-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 48px;
  padding-bottom: 48px;
}

.landscape-copy h2,
.landscape-section-head h2,
.landscape-application h2,
.content-gallery h2 {
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
}

.landscape-copy h2,
.landscape-section-head h2,
.landscape-application h2 {
  margin-bottom: 15px;
}

.landscape-copy h2::after,
.landscape-section-head h2::after,
.landscape-application h2::after,
.content-gallery h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}

.mobile-title-break {
  display: inline;
}

.landscape-copy p,
.landscape-section-head p,
.landscape-application p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.landscape-copy p + p {
  margin-top: 14px;
}

.landscape-feature {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.landscape-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.landscape-lists {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.landscape-list-grid,
.landscape-application {
  display: grid;
  gap: 34px;
}

.landscape-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 18px;
  column-gap: 42px;
  align-content: start;
}

.landscape-list-grid,
.landscape-application ul {
  display: grid;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
}

.landscape-application ul {
  gap: 8px;
}

.landscape-list-grid li::before,
.landscape-application li::before {
  margin-right: 8px;
  color: var(--green);
  content: "•";
}

.landscape-application {
  grid-template-columns: repeat(2, 1fr);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.landscape-application article {
  display: grid;
  align-content: start;
  gap: 18px;
}

.landscape-application__full {
  grid-column: 1 / -1;
}

.service-scope-block {
  padding: 28px 0;
}

.service-scope-block__head {
  margin-bottom: 22px;
}

.service-scope-details {
  margin: 0;
}

.service-scope-summary {
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: var(--green);
  cursor: pointer;
  list-style: none;
}

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

.service-scope-summary::-webkit-details-marker {
  display: none;
}

.service-scope-summary::marker {
  display: none;
}

.service-scope-summary:focus {
  outline: none;
}

.service-scope-summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.service-scope-summary__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  box-sizing: border-box;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

.service-scope-summary__icon {
  grid-row: 1;
  display: block;
  width: 22px;
  height: 14px;
  pointer-events: none;
  background:
    linear-gradient(#fff, #fff) 50% 0 / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 50% 50% / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 50% 100% / 100% 2px no-repeat;
}

.service-scope-summary__icon--left {
  grid-column: 1;
  justify-self: start;
  align-self: center;
}

.service-scope-summary__icon--right {
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

.service-scope-details__inner {
  padding-top: 22px;
}

.service-scope-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.service-scope-lead + .service-scope-lead {
  margin-top: 12px;
}

.service-scope-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
}

.service-scope-item {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-scope-item__title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

.service-scope-item__text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.service-faq {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.service-faq > h2 {
  margin: 0 0 8px;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--ink);
}

.service-faq > h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 22px;
  background: var(--green);
  opacity: 0.55;
  content: "";
}

.service-faq__note {
  margin: 0 0 18px;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.service-faq details {
  border-bottom: 1px solid var(--line);
}

.service-faq summary {
  position: relative;
  padding: 16px 28px 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.service-faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -10px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

.service-faq details[open] summary::after {
  content: "\2212";
}

.service-faq__answer {
  padding: 0 0 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.service-faq__answer p {
  margin: 0;
}

.service-faq__answer p + p {
  margin-top: 10px;
}

.service-discovery {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.service-discovery__title {
  margin: 0 0 18px;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--ink);
}

.service-discovery__title::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 14px;
  background: var(--green);
  opacity: 0.55;
  content: "";
}

.service-discovery__form {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  max-width: 100%;
}

.service-discovery__grid {
  gap: 16px;
}

.field--check {
  gap: 10px;
}

.field__check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.field__check-text {
  flex: 1;
  min-width: 0;
}

.field__check-line input[type="checkbox"] {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--green-dark);
  cursor: pointer;
  align-self: flex-start;
}

.service-discovery__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.service-discovery__actions .btn {
  min-height: 42px;
  min-width: 160px;
  padding-left: 22px;
  padding-right: 22px;
}

.content-gallery {
  padding-top: 48px;
}

.content-gallery__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.content-gallery__controls {
  display: inline-flex;
}

.content-gallery__controls button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.content-gallery__controls button:last-child {
  border-right: 1px solid var(--line);
}

.content-gallery__controls button:hover {
  color: #fff;
  background: var(--green);
}

.content-gallery__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.content-gallery__viewport.is-dragging {
  cursor: grabbing;
}

.content-gallery__track {
  display: flex;
  transition: transform 520ms ease;
}

.content-gallery__track.is-dragging {
  transition: none;
}

.content-gallery__slide {
  flex: 0 0 auto;
  margin: 0;
  background: #fff;
}

.content-gallery__slide img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.content-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}

.content-gallery__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd3c5;
  cursor: pointer;
}

.content-gallery__dots button.is-active {
  background: var(--green-dark);
}

.market-page {
  padding-top: 52px;
  background: var(--paper);
}

.market-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.market-copy h2,
.market-products h2 {
  margin-bottom: 15px;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
}

.market-copy h2::after,
.market-products h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}

.market-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.market-feature {
  margin: 0;
}

.market-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.market-gallery {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.market-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 34px;
  padding-top: 48px;
}

.market-products article {
  display: grid;
  align-content: start;
}

.market-products ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
}

.market-products li::before {
  margin-right: 8px;
  color: var(--green);
  content: "•";
}

.projects-page {
  padding-top: 52px;
  background: var(--paper);
}

.projects-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.projects-head h2,
.projects-detail h2 {
  margin-bottom: 15px;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
}

.projects-head h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}

.projects-head p,
.projects-detail p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 2px;
}

.projects-filter button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.projects-filter button:hover,
.projects-filter button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.projects-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 42px;
}

.projects-selector {
  min-width: 0;
  padding-top: 10px;
}

.projects-selector__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.projects-selector__head h3 {
  margin: 0;
  font-family: "Raleway", "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 400;
}

.projects-selector__head h3::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}

.projects-selector__controls,
.project-gallery__controls {
  display: inline-flex;
  flex: 0 0 auto;
}

.projects-selector__controls button,
.project-gallery__controls button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.projects-selector__controls button:last-child,
.project-gallery__controls button:last-child {
  border-right: 1px solid var(--line);
}

.projects-selector__controls button:hover,
.project-gallery__controls button:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.projects-selector__controls button:disabled {
  color: #b7c0b1;
  cursor: default;
}

.projects-selector__controls button:disabled:hover {
  border-color: var(--line);
  background: #fff;
  color: #b7c0b1;
}

.projects-selector__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.projects-selector__viewport.is-dragging {
  cursor: grabbing;
}

.projects-selector__viewport::-webkit-scrollbar {
  display: none;
}

.projects-list {
  display: flex;
  gap: 16px;
  padding: 0;
  width: 100%;
}

.projects-card {
  display: grid;
  flex: 0 0 calc((100% - 48px) / 4);
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.projects-card:hover,
.projects-card.is-active {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(54, 95, 42, 0.08);
}

.projects-card img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.projects-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 150px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  text-align: center;
}

.projects-card__body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px 16px;
}

.projects-card__body span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.projects-card__body small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.projects-detail {
  width: 100%;
  min-width: 0;
}

.projects-detail__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
}

.projects-detail__head .project-gallery__controls {
  margin-bottom: 15px;
}

.projects-detail__head span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
}

.projects-detail__head h2::after {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 15px;
  background: #bababa;
  content: "";
}


.project-gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  touch-action: none;
  user-select: none;
  aspect-ratio: 1180 / 760;
}

[data-projects-page]:not(.has-project-gallery) .project-gallery__controls,
[data-projects-page]:not(.has-project-gallery) .project-gallery__dots {
  display: none;
}

.project-gallery.is-dragging {
  cursor: grabbing;
}

.project-gallery__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  transition: transform 520ms ease;
}

.project-gallery__track.is-dragging {
  transition: none;
}

.project-gallery__slide {
  display: grid;
  place-items: center;
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
}

.project-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.project-gallery__empty {
  display: none;
  padding: 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.project-gallery__empty.is-visible {
  display: block;
}

.project-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}

.project-gallery__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd3c5;
  cursor: pointer;
}

.project-gallery__dots button.is-active {
  background: var(--green-dark);
}

.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: var(--paper);
}

.section.contact-page.contact-page--kesif {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--mist);
}

.contact-page--kesif > .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.contact-page--kesif .service-discovery--contact {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.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: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.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);
  cursor: pointer;
}

.field input:not([type="checkbox"]),
.field textarea {
  cursor: text;
}

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

.service-discovery__form .field textarea {
  min-height: 130px;
}

.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: none;
}

.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: 4800;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(86vw, 380px);
    height: 100vh;
    height: 100dvh;
    padding: 12px 28px 34px;
    overscroll-behavior: contain;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(241, 241, 241, 0.94);
    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;
    inset: 0;
    z-index: 4700;
    display: block;
    width: 100vw;
    height: 100vh;
    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;
  }

  .slides {
    aspect-ratio: 1920 / 545;
    height: auto;
    min-height: 0;
  }

  .slide img {
    object-fit: contain;
  }

  .slider-arrow,
  .slider-timeline {
    display: none;
  }

  .service-list,
  .service-teasers__grid,
  .project-grid,
  .corporate-intro,
  .corporate-service-grid,
  .landscape-list-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;
  }

  .corporate-service-grid .corporate-service:nth-child(3) {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .garden-layout,
  .featured-project,
  .split,
  .contact-layout,
  .contact-main,
  .content-grid,
  .landscape-lead,
  .landscape-lists,
  .landscape-application,
  .service-scope-items,
  .market-lead,
  .projects-head,
  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .landscape-lead,
  .landscape-lists,
  .landscape-application,
  .market-lead {
    gap: 34px;
  }

  .service-faq,
  .service-discovery {
    padding-top: 34px;
    padding-bottom: 34px;
  }

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

  .projects-filter {
    justify-content: flex-start;
  }

  .projects-list {
    gap: 16px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .projects-card {
    flex-basis: calc((100% - 16px) / 2);
    scroll-snap-align: start;
  }

  .projects-selector__viewport {
    scroll-snap-type: x proximity;
  }

  .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);
  }

  .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,
  .corporate-intro,
  .corporate-service-grid,
  .landscape-list-grid,
  .service-scope-items,
  .market-products,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .corporate-banner {
    height: 88px;
    aspect-ratio: auto;
  }

  .corporate-video {
    padding-bottom: 34px;
  }

  .corporate-page {
    padding-top: 34px;
  }

  .corporate-intro {
    gap: 28px;
    padding: 34px 0;
  }

  .corporate-service-grid .corporate-service:nth-child(3) {
    grid-column: auto;
  }

  .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;
  }

  .section.contact-page.contact-page--kesif {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-page--kesif > .container {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .corporate-page {
    padding-top: 34px;
  }

  .landscape-page {
    padding-top: 34px;
  }

  .market-page {
    padding-top: 34px;
  }

  .projects-page {
    padding-top: 34px;
  }

  .landscape-lead,
  .landscape-lists,
  .landscape-application {
    padding-bottom: 34px;
  }

  .landscape-lists,
  .landscape-application {
    padding-top: 34px;
  }

  .content-gallery {
    padding-top: 34px;
  }

  .market-lead,
  .market-gallery {
    padding-bottom: 34px;
  }

  .market-products {
    gap: 34px;
    padding-top: 34px;
  }

  .projects-head {
    gap: 22px;
    padding-bottom: 30px;
  }

  .projects-showcase {
    gap: 30px;
    padding-top: 34px;
  }

  .projects-list {
    gap: 12px;
  }

  .projects-detail__head {
    display: grid;
    gap: 18px;
  }

  .projects-card {
    flex-basis: min(244px, 70vw);
    flex-shrink: 0;
    grid-template-columns: 1fr;
    scroll-snap-align: start;
  }

  .projects-selector__viewport {
    scroll-snap-type: x mandatory;
  }

  .projects-card img {
    width: 100%;
    height: 136px;
    object-fit: cover;
    object-position: center;
  }

  .projects-card__placeholder {
    width: 100%;
    min-height: 136px;
    height: 136px;
  }

  .projects-card__body {
    padding: 10px 12px 12px;
  }

  .content-gallery__head {
    display: grid;
    gap: 18px;
  }

  .mobile-title-break {
    display: block;
  }

  .corporate-banner {
    height: 74px;
  }

  .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;
  }
}
