*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #7cae2a;
  --green-hover: #6b9724;
  --white: #ffffff;
  --dark: #1a1a1a;
  --text: #4a4a4a;
  --cream: #f9f8f4;
  --dark-bg: #0a1008;
  --dark-bg-soft: #121a0e;
  --font: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: #111;
  overflow-x: clip;
  overflow-y: auto;
  max-width: 100%;
  min-height: 100%;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hero__leaf,
.about__leaf,
.references__leaf,
.cta-banner__leaf,
.nav__logo-img,
.footer__logo-img {
  max-width: none;
}

.about__image,
.references__photo {
  max-width: none;
}

.about__image {
  height: 480px;
}

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

ul {
  list-style: none;
}

/* ── Hero / Header ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #0a1008;
}

.hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.hero__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.hero__leaf--left {
  left: -72px;
  top: calc(100% + 12px);
  width: 300px;
  height: auto;
  object-position: left center;
}

.hero__leaf--right {
  right: -88px;
  top: calc(100% - 220px);
  width: 340px;
  height: auto;
  object-position: right bottom;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(10, 12, 8, 0.78) 0%,
      rgba(10, 12, 8, 0.58) 42%,
      rgba(10, 12, 8, 0.28) 72%,
      rgba(10, 12, 8, 0.18) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.02) 45%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    rgba(18, 22, 12, 0.18);
  pointer-events: none;
  z-index: 1;
}

/* ── Navigation ── */

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(28px, env(safe-area-inset-top)) max(80px, env(safe-area-inset-right)) 0 max(80px, env(safe-area-inset-left));
  gap: 40px;
  flex-shrink: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-img {
  display: block;
  height: 92px;
  width: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--green);
}

.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--green-hover);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero Content ── */

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 80px 24px;
  max-width: 820px;
  min-height: 0;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title-accent {
  color: var(--green);
}

.hero__description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── Buttons ── */

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Trust Bar ── */

.hero__trust {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: auto;
  flex-shrink: 0;
  padding: 20px 80px 44px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hero__trust-icon {
  display: inline-flex;
  flex-shrink: 0;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .nav {
    padding: max(24px, env(safe-area-inset-top)) max(40px, env(safe-area-inset-right)) 0 max(40px, env(safe-area-inset-left));
  }

  .nav__links {
    gap: 24px;
  }

  .hero__content {
    padding: 40px 40px 32px;
  }

  .hero__trust {
    padding: 20px 40px 40px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav {
    gap: 12px;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .nav__logo {
    margin-right: auto;
  }

  .nav__toggle {
    display: inline-flex;
    position: relative;
    z-index: 102;
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: max(80px, env(safe-area-inset-top)) 24px max(40px, env(safe-area-inset-bottom));
    background: rgba(10, 16, 8, 0.97);
  }

  .nav__links a {
    font-size: 16px;
    padding: 12px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

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

@media (max-width: 600px) {
  .nav {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    flex-wrap: nowrap;
  }

  .nav__logo-img {
    height: 72px;
  }

  .nav__cta {
    padding: 12px 16px;
    font-size: 11px;
    min-height: 44px;
  }

  .hero__content {
    padding: 32px 24px 24px;
  }

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

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

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 24px 36px;
  }
}

/* ── Services ── */

.services {
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 40%;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(124, 174, 42, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 0%, rgba(124, 174, 42, 0.04) 0%, transparent 60%);
  padding: 90px 40px 80px;
  overflow: visible;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

.services__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.services__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 18px;
}

.services__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}

.services__title-accent {
  color: var(--green);
}

.services__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 52px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px 18px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 100%;
  height: auto;
  max-height: 72px;
}

.service-card__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
}

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}

.services__cta:hover {
  border-color: var(--green);
  background: rgba(124, 174, 42, 0.04);
}

.services__cta-icon {
  display: inline-flex;
  color: var(--green);
}

/* ── Services Responsive ── */

@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 24px 60px;
  }

  .hero__leaf--left {
    width: 180px;
    left: -48px;
    top: calc(100% + 8px);
  }

  .hero__leaf--right {
    width: 200px;
    right: -50px;
    top: calc(100% - 140px);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services__subtitle {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── About ── */

.about {
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  background: var(--dark-bg);
  padding: 100px 80px;
  overflow: visible;
}

.about__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.about__leaf--left {
  left: -80px;
  top: -40px;
  width: 280px;
  opacity: 0.85;
}

.about__leaf--right {
  right: -90px;
  top: 50%;
  width: 320px;
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__media {
  position: relative;
  overflow: visible;
}

.about__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
}

.about__badge {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: 36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--dark-bg-soft);
  border: 3px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about__badge-years {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}

.about__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.about__badge-icon {
  display: flex;
  margin-top: 4px;
}

.about__content {
  color: var(--white);
}

.about__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 20px;
}

.about__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.about__title-accent {
  color: var(--green);
}

.about__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 520px;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.about__check {
  display: inline-flex;
  flex-shrink: 0;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background 0.2s;
}

.about__cta:hover {
  background: var(--green-hover);
}

.about__cta-icon {
  display: inline-flex;
}

/* ── About Responsive ── */

@media (max-width: 1100px) {
  .about {
    padding: 80px 40px;
  }

  .about__inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero__video {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero__leaf {
    z-index: 2;
  }

  .services {
    position: relative;
    z-index: 4;
  }

  .services__inner {
    position: relative;
    z-index: 2;
  }

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

  .about__image {
    height: 480px;
  }

  .about__leaf--right {
    width: 220px;
    right: -60px;
    top: auto;
    bottom: -40px;
  }

  .about__leaf--left {
    width: 180px;
    left: -50px;
    top: -20px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 24px;
  }

  .about__badge {
    left: -12px;
    bottom: 20px;
    width: 110px;
    height: 110px;
  }

  .about__badge-years {
    font-size: 22px;
  }

  .about__image {
    height: 400px;
    border-radius: 12px;
  }

  .about__leaf--right {
    width: 220px;
    right: -60px;
    top: auto;
    bottom: -40px;
  }

  .about__leaf--left {
    width: 180px;
    left: -50px;
    top: -20px;
  }
}

/* ── Benefits ── */

.benefits {
  position: relative;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(124, 174, 42, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(124, 174, 42, 0.03) 0%, transparent 55%);
  padding: 90px 80px 100px;
  overflow: visible;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

.benefits__decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 280px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.benefits__decor svg {
  width: 100%;
  height: 100%;
}

.benefits__decor--left {
  left: 24px;
}

.benefits__decor--right {
  right: 24px;
}

.benefits__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 18px;
}

.benefits__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 28px;
}

.benefits__title-accent {
  color: var(--green);
}

.benefits__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.benefits__divider-line {
  display: block;
  width: 80px;
  height: 1px;
  background: #d8d8d4;
}

.benefits__divider-leaf {
  display: inline-flex;
  flex-shrink: 0;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card__icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-card__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.benefit-card__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
}

.benefit-card__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.benefit-card__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  max-width: 240px;
}

/* ── Benefits Responsive ── */

@media (max-width: 1100px) {
  .benefits {
    padding: 80px 40px 90px;
  }

  .benefits__grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .benefits__decor {
    opacity: 0.4;
    width: 70px;
  }

  .benefits__decor--left {
    left: 8px;
  }

  .benefits__decor--right {
    right: 8px;
  }
}

@media (max-width: 600px) {
  .benefits {
    padding: 60px 24px 70px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits__divider-line {
    width: 48px;
  }

  .benefits__decor {
    display: none;
  }
}

/* ── References ── */

.references {
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  background: var(--dark-bg);
  padding: 90px 80px 100px;
  overflow: visible;
}

.references__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.references__leaf--left {
  left: -70px;
  top: 50%;
  width: 260px;
  opacity: 0.9;
}

.references__leaf--right {
  right: -80px;
  top: 50%;
  width: 300px;
}

.references__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.references__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 18px;
}

.references__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
}

.references__title-accent {
  color: var(--green);
}

.references__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.references__photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
}

.references__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 2px solid var(--green);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.references__cta:hover {
  background: rgba(124, 174, 42, 0.12);
  border-color: var(--green-hover);
}

/* ── References Responsive ── */

@media (max-width: 1100px) {
  .references {
    padding: 80px 40px 90px;
  }

  .references__photo {
    height: 180px;
  }
}

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

  .references__leaf--left {
    width: 180px;
    left: -50px;
  }

  .references__leaf--right {
    width: 200px;
    right: -55px;
  }
}

@media (max-width: 600px) {
  .references {
    padding: 60px 24px 70px;
  }

  .references__gallery {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .references__photo {
    height: 200px;
  }

  .references__leaf {
    opacity: 0.5;
  }
}

/* ── Testimonials ── */

.testimonials {
  position: relative;
  background: #0a1008;
  padding: 80px 80px 90px;
  overflow: hidden;
}

.testimonials__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.testimonials__slider {
  position: relative;
  flex: 1;
  min-width: 0;
  width: 100%;
  aspect-ratio: 5 / 2;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonials__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.testimonials__slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 14, 6, 0.45) 0%,
      rgba(8, 14, 6, 0.35) 50%,
      rgba(8, 14, 6, 0.5) 100%
    ),
    rgba(10, 16, 8, 0.2);
  pointer-events: none;
}

.testimonials__track {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  filter: blur(4px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s;
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translateY(-20px) scale(1.02);
  filter: blur(6px);
  z-index: 1;
}

.testimonial.is-entering {
  z-index: 2;
}

.testimonial__quote-icon {
  margin-bottom: 24px;
}

.testimonial__text {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin-bottom: 24px;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.testimonials__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.2s;
}

.testimonials__nav:hover {
  color: var(--white);
}

/* ── Testimonials Responsive ── */

@media (max-width: 900px) {
  .testimonials {
    padding: 70px 24px 80px;
  }

  .testimonials__inner {
    gap: 16px;
  }

  .testimonials__nav {
    width: 44px;
    height: 44px;
  }

  .testimonials__slider {
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .testimonials__slider {
    aspect-ratio: 1 / 1;
    min-height: 340px;
  }
}

/* ── Scroll Reveal ── */

/* ── Living Leaves (3D wind) ── */

@media (prefers-reduced-motion: no-preference) {
  .leaf-alive {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, filter;
  }

  .leaf-alive--vine {
    transform-origin: 6% 94%;
  }

  .leaf-alive--palm {
    transform-origin: 94% 90%;
  }
}

/* ── Scroll Reveal ── */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transition:
      opacity 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
      filter 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
    will-change: opacity, transform;
  }

  .reveal--up {
    transform: translateY(48px);
    filter: blur(6px);
  }

  .reveal--left {
    transform: translateX(-56px);
    filter: blur(4px);
  }

  .reveal--right {
    transform: translateX(56px);
    filter: blur(4px);
  }

  .reveal--scale {
    transform: scale(0.92);
    filter: blur(3px);
  }

  .reveal--fade {
    transform: none;
    filter: blur(4px);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* ── CTA Banner ── */

.cta-banner {
  position: relative;
  background: var(--dark-bg);
  padding: 70px 80px;
  overflow: hidden;
}

.cta-banner__leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  filter: brightness(0.6);
  z-index: 1;
}

.cta-banner__leaf--left {
  left: -60px;
  bottom: -40px;
  width: 220px;
}

.cta-banner__leaf--right {
  right: -60px;
  top: -50px;
  width: 240px;
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner__title-accent {
  color: var(--green);
}

.cta-banner__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.cta-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.cta-banner__btn:hover {
  background: var(--green-hover);
}

.cta-banner__btn-icon {
  display: inline-flex;
}

/* ── Contact ── */

.contact {
  position: relative;
  padding: 72px 80px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.contact__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(10, 16, 8, 0.08) 0%,
      rgba(10, 16, 8, 0.15) 40%,
      rgba(18, 24, 14, 0.55) 58%,
      rgba(18, 24, 14, 0.72) 100%
    );
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.contact__panel {
  width: 100%;
  max-width: 440px;
}

.contact__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

.contact__intro {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 9px 12px;
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--dark);
  background: rgba(232, 232, 224, 0.95);
  transition: box-shadow 0.2s;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #8a8a82;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(124, 174, 42, 0.55);
}

.contact__field textarea {
  resize: vertical;
  min-height: 72px;
}

.contact__submit {
  width: 100%;
  padding: 11px 20px;
  background: #555d36;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.contact__submit:hover {
  background: #4a5230;
}

.contact__badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.contact__badge-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Footer ── */

.footer {
  background: #0a0a0a;
  padding: 70px 80px 60px;
  color: var(--white);
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 0;
}

.footer__col {
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__col:first-child {
  padding-left: 0;
  border-left: none;
}

.footer__col--brand {
  padding-right: 40px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 72px;
  width: auto;
}

.footer__about {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(124, 174, 42, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover {
  background: var(--green);
  color: var(--white);
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.footer__links,
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--green);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-icon {
  flex-shrink: 0;
  color: var(--green);
  display: inline-flex;
}

/* ── Footer Responsive ── */

@media (max-width: 1100px) {
  .cta-banner,
  .contact,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .footer__col {
    border-left: none;
    padding: 0;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact__field input,
  .contact__field textarea {
    font-size: 16px;
    padding: 12px 14px;
    min-height: 44px;
  }

  .contact__submit {
    min-height: 48px;
    font-size: 13px;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .contact {
    padding: 56px 24px 64px;
    min-height: auto;
    align-items: flex-end;
  }

  .contact__bg {
    object-position: 20% center;
  }

  .contact__shade {
    background:
      linear-gradient(
        to bottom,
        rgba(18, 24, 14, 0.25) 0%,
        rgba(18, 24, 14, 0.65) 45%,
        rgba(18, 24, 14, 0.82) 100%
      );
  }

  .contact__inner {
    justify-content: center;
  }

  .contact__panel {
    max-width: 100%;
  }

  .footer {
    padding: 50px max(24px, env(safe-area-inset-right)) max(40px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
