:root {
  --bg: #f5f7f2;
  --card: #ffffff;
  --ink: #111510;
  --muted: #64705e;
  --line: #dfe5db;
  --lime: #84cc16;
  --lime-dark: #4d7c0f;
  --lime-pale: #edf6df;
  --max: 1400px;
  --r: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

h2 {
  font-family: "Rubik Dirt", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
h2 span {
  color: var(--lime-dark);
}

label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #404a3a;
}

input,
textarea,
select {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fafcf9;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--lime);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 242, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Rubik Dirt", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.15s;
}
.nav-links a:hover {
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 680px) {
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 57px;
    right: 0;
    left: 0;
    height: calc(100dvh - 57px);
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 201;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: background 0.15s;
  }
  .nav-links a:hover {
    background: var(--lime-pale);
  }
  .hamburger {
    display: flex;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.18s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--lime);
  color: #111;
}
.btn-primary:hover {
  background: var(--lime-dark);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #2a3025;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem;
  transition: 0.18s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}
.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lime-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  color: var(--lime-dark);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/galerie/reality/img-1340-hdr.webp") center/cover;
}
.hero h1 {
  font-family: "Rubik Dirt", sans-serif;
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 1.4rem;
}
.hero h1 span {
  color: var(--lime);
}
.hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero-tag i {
  color: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.section-top {
  max-width: 700px;
  margin-bottom: 2.75rem;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime-dark);
  margin-bottom: 0.9rem;
}

.body-text {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.975rem;
  line-height: 1.75;
}

.stats-strip {
  max-width: var(--max);
  margin: -3.5rem auto 0;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.stat-num {
  font-family: "Rubik Dirt", sans-serif;
  font-size: 2rem;
  color: var(--lime-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.show-big {
  min-height: 500px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.show-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.show-side {
  display: grid;
  gap: 1.2rem;
}

.show-small {
  border-radius: var(--r);
  overflow: hidden;
  min-height: 240px;
}
.show-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

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

.adv {
  display: flex;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: var(--r);
  padding: 1.4rem;
}
.adv h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.adv p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.adv-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lime-pale);
  color: var(--lime-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cta-wrap {
  padding: 0 1.5rem;
  max-width: var(--max);
  margin: 0 auto 4rem;
}

.cta {
  background: #111613;
  color: #fff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--lime);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  opacity: 0.08;
}
.cta .kicker {
  color: #b6d890;
}
.cta h2 {
  color: #fff;
  max-width: 620px;
}
.cta p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin: 1.2rem 0 2rem;
  font-weight: 300;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.5rem;
}

.contact-box,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.contact-box {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-card {
  padding: 1.4rem;
}
.contact-card h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.contact-card h4 i {
  color: var(--lime-dark);
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner p {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

@media (min-width: 600px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .showcase,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .advantages {
    grid-template-columns: 1fr;
  }
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn:hover {
  border-color: var(--lime);
  color: var(--lime-dark);
}
.filter-btn.active {
  background: var(--lime);
  border-color: var(--lime);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  cursor: pointer;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-weight: 300;
  border: 1px dashed var(--line);
  border-radius: var(--r);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox #lb-img {
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lb-close {
  top: 1.2rem;
  right: 1.5rem;
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev {
  left: 1.5rem;
}

.lb-next {
  right: 1.5rem;
}

@media (max-width: 560px) {
  .lb-prev {
    left: 0.5rem;
  }
  .lb-next {
    right: 0.5rem;
  }
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */