/* ============================================
   ЪРБЪН ДЖЪНГЪЛ ЛЕНДСКЕЙПИНГ — Premium CSS
   Palette: leaf green + sky blue (NO turquoise)
   ============================================ */

:root {
  /* Greens */
  --green-50:  #F1F8E9;
  --green-100: #DCEDC8;
  --green-200: #C5E1A5;
  --green-300: #AED581;
  --green-400: #9CCC65;
  --green-500: #7CB342;
  --green-600: #689F38;
  --green-700: #558B2F;
  --green-800: #33691E;
  --green-900: #1B3A0E;

  /* Blues (clear sky, NOT turquoise) */
  --blue-50:  #E8F1FC;
  --blue-100: #D0E4F9;
  --blue-200: #A6CDF4;
  --blue-300: #7AB4ED;
  --blue-400: #5CA0E6;
  --blue-500: #3B82D6;
  --blue-600: #2867BD;
  --blue-700: #1F4F9C;

  /* Neutrals */
  --cream:   #FAF8F3;
  --bg:      #FFFFFF;
  --paper:   #F7F5EF;
  --line:    #E6E5DE;
  --text:    #1B2820;
  --text-2:  #4F5A52;
  --muted:   #8A958D;
  --black:   #0C140F;

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1280px;
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27,40,32,.04), 0 1px 2px rgba(27,40,32,.06);
  --shadow:    0 14px 40px -12px rgba(27,40,32,.12), 0 4px 12px rgba(27,40,32,.05);
  --shadow-lg: 0 30px 80px -20px rgba(27,40,32,.25), 0 10px 30px -10px rgba(27,40,32,.12);

  /* Easing */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Section spacing */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 140px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green-700);
}
.eyebrow.light { color: var(--green-200); }
.eyebrow.light::before { background: var(--green-300); }
.eyebrow.blue { color: var(--blue-600); }
.eyebrow.blue::before { background: var(--blue-600); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--green-800);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(51,105,30,.5);
}

.btn-blue {
  background: var(--blue-600);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(40,103,189,.5);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.btn-light:hover {
  background: rgba(255,255,255,.22);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 28px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  box-shadow: 0 4px 30px rgba(27,40,32,.08), inset 0 0 0 1px rgba(255,255,255,.6);
}
.header.scrolled { padding: 10px 0; }
.header.scrolled .header-inner { box-shadow: 0 8px 40px rgba(27,40,32,.12), inset 0 0 0 1px rgba(255,255,255,.6); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
  white-space: nowrap;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-800) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%);
}
.logo-mark svg { width: 22px; height: 22px; color: #fff; position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-weight: 500; letter-spacing: -0.01em; }
.logo-text small { font-size: 10px; font-family: var(--sans); letter-spacing: 0.18em; color: var(--green-700); margin-top: 4px; text-transform: uppercase; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: all .25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--green-800); background: rgba(124,179,66,.1); }
.nav a.active { color: var(--green-800); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green-700);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--green-800);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-50);
  transition: all .25s var(--ease);
}
.header-phone:hover { background: var(--green-100); }
.header-phone svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .nav, .header-cta .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-900);
  color: #fff;
  z-index: 200;
  padding: 80px 32px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 32px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.mobile-menu-footer {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--green-50) 0%, #fff 35%, var(--blue-50) 100%);
}
.hero-bg-shape {
  position: absolute;
  top: -20%; right: -10%;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(124,179,66,.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-bg-shape-2 {
  position: absolute;
  bottom: -20%; left: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(59,130,214,.15), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 968px) {
  .hero { min-height: auto; padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-content { max-width: 640px; }
.hero h1 {
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--green-700);
  position: relative;
  display: inline-block;
}
.hero h1 .accent-blue {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-600);
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* Hero visual / image stack */
.hero-visual {
  position: relative;
  height: 600px;
}
@media (max-width: 968px) { .hero-visual { height: 480px; } }
.hero-img-main {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--green-200), var(--green-600));
}
.hero-img-main img,
.hero-img-main .placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-main .placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-300) 0%, var(--green-700) 60%, var(--green-900) 100%);
  position: relative;
}
.hero-img-main .placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 40%);
}
.hero-img-main .placeholder svg {
  width: 120px; height: 120px;
  color: rgba(255,255,255,.55);
  position: relative; z-index: 1;
}

.hero-badge {
  position: absolute;
  left: -20px; bottom: 60px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  max-width: 260px;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-badge-icon svg { width: 24px; height: 24px; }
.hero-badge-icon picture,
.hero-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge-text strong { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.hero-badge-text span { font-size: 12px; color: var(--text-2); }

.hero-badge-2 {
  position: absolute;
  right: -10px; top: 80px;
  background: var(--green-800);
  color: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.hero-badge-2 .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.hero-badge-2 .label { font-size: 12px; opacity: .85; margin-top: 4px; }

/* ===== PAGE HERO (smaller, for inner pages) ===== */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(160deg, var(--green-50) 0%, #fff 50%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,179,66,.15), transparent 70%);
  filter: blur(30px);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,214,.12), transparent 70%);
  filter: blur(30px);
}
.page-hero .container { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 19px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.breadcrumbs a { color: var(--green-700); }
.breadcrumbs a:hover { color: var(--green-800); }
.breadcrumbs span { color: var(--muted); }

/* ===== SECTION HEADER ===== */
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 18px; color: var(--text-2); line-height: 1.6; }

/* ===== ABOUT PREVIEW (home) ===== */
.about-preview {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 968px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-visual {
  position: relative;
  height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-400), var(--green-800));
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-200) 0%, var(--green-500) 50%, var(--green-800) 100%);
}
.about-visual .placeholder svg { width: 130px; height: 130px; color: rgba(255,255,255,.6); }
.about-visual-overlay {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px 28px;
  max-width: 280px;
  box-shadow: var(--shadow);
}
.about-visual-overlay .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--green-800);
  line-height: 1;
}
.about-visual-overlay .label { font-size: 13px; color: var(--text-2); margin-top: 6px; }

.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text-2); margin-bottom: 18px; font-size: 17px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; }
.about-feature-icon.blue {
  background: var(--blue-100);
  color: var(--blue-700);
}
.about-feature-text strong { display: block; font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.about-feature-text span { font-size: 13.5px; color: var(--text-2); }

/* ===== SERVICES ===== */
.services {
  background: var(--bg);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 968px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  grid-column: span 2;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all .45s var(--ease-out);
  border: 1px solid transparent;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.service-card.feature {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: #fff;
}
.service-card.feature-blue {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: #fff;
}
@media (max-width: 968px) {
  .service-card,
  .service-card.feature,
  .service-card.feature-blue { grid-column: span 2; }
}
@media (max-width: 580px) {
  .service-card,
  .service-card.feature,
  .service-card.feature-blue { grid-column: span 1; }
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-200);
  box-shadow: var(--shadow);
}
.service-card.feature:hover,
.service-card.feature-blue:hover {
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(27,40,32,.4);
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: #fff;
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card.feature .service-icon,
.service-card.feature-blue .service-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-card.feature h3,
.service-card.feature-blue h3 { color: #fff; font-size: 1.85rem; }
.service-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card.feature p,
.service-card.feature-blue p { color: rgba(255,255,255,.85); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--green-800);
  margin-top: auto;
}
.service-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }
.service-card.feature .service-link,
.service-card.feature-blue .service-link { color: #fff; }

.service-decoration {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

/* ===== STATS / VALUES ===== */
.values {
  background: var(--green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,179,66,.2), transparent 60%);
  filter: blur(40px);
}
.values .container { position: relative; z-index: 2; }
.values h2 { color: #fff; }
.values .section-head p { color: rgba(255,255,255,.75); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 968px) { .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .35s var(--ease);
}
.value-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
}
.value-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.value-card-icon.blue { background: var(--blue-500); }
.value-card-icon svg { width: 26px; height: 26px; }
.value-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.55; }

/* ===== PROCESS ===== */
.process { background: var(--cream); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 968px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .process-list { grid-template-columns: 1fr; } }
.process-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--green-200);
  line-height: .9;
  margin-bottom: 12px;
  font-weight: 300;
}
.process-step:nth-child(2) .process-num { color: var(--blue-200); }
.process-step:nth-child(3) .process-num { color: var(--green-300); }
.process-step:nth-child(4) .process-num { color: var(--blue-300); }
.process-step h4 { font-size: 1.25rem; margin-bottom: 12px; }
.process-step p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-grid .gi { 
  border-radius: var(--radius); 
  overflow: hidden; 
  position: relative;
  cursor: pointer;
  background: var(--green-100);
}
.gallery-grid .gi:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.gallery-grid .gi:nth-child(2) { background: linear-gradient(135deg, var(--blue-300), var(--blue-600)); }
.gallery-grid .gi:nth-child(3) { background: linear-gradient(135deg, var(--green-300), var(--green-700)); }
.gallery-grid .gi:nth-child(4) { grid-column: span 2; background: linear-gradient(135deg, var(--green-400), var(--green-800)); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-grid .gi:nth-child(1) { grid-column: span 2; }
  .gallery-grid .gi:nth-child(4) { grid-column: span 2; }
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.gallery-grid .gi:hover img { transform: scale(1.06); }
.gallery-grid .gi-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-200) 0%, var(--green-600) 100%);
}
.gallery-grid .gi-placeholder svg { width: 60px; height: 60px; color: rgba(255,255,255,.7); }
.gi-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-800);
  backdrop-filter: blur(8px);
}
.gallery-cta { text-align: center; margin-top: 48px; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-box {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,179,66,.25), transparent 60%);
  filter: blur(40px);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,214,.2), transparent 60%);
  filter: blur(40px);
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 { color: #fff; margin-bottom: 20px; }
.cta-box p { color: rgba(255,255,255,.85); font-size: 19px; max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }
.cta-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 580px) { .cta-box { padding: 60px 28px; } .cta-box p { font-size: 17px; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 968px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 580px) { .footer-top { grid-template-columns: 1fr; } }
.footer .logo { color: #fff; margin-bottom: 20px; }
.footer .logo-text small { color: var(--green-300); }
.footer-about p { font-size: 14.5px; line-height: 1.6; max-width: 360px; }
.footer-col h5 {
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  transition: color .25s var(--ease);
}
.footer-col ul a:hover { color: var(--green-300); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--green-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== SERVICE DETAIL (Услуги page) ===== */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail.reverse .service-detail-grid { direction: rtl; }
.service-detail.reverse .service-detail-grid > * { direction: ltr; }
@media (max-width: 968px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}
.service-detail-visual {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--green-100);
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-visual .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.service-detail-num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--green-200);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 300;
}
.service-detail h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.service-detail > .container > .service-detail-grid > div > p { font-size: 17px; color: var(--text-2); margin-bottom: 24px; line-height: 1.7; }
.service-detail ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
@media (max-width: 580px) { .service-detail ul { grid-template-columns: 1fr; } }
.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.service-detail ul li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23558B2F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>") center/12px no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}
.service-callout {
  background: var(--blue-50);
  border-left: 3px solid var(--blue-500);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text);
  margin: 20px 0 24px;
}
.service-callout strong { color: var(--blue-700); }

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: var(--paper);
  color: var(--text);
  transition: all .25s var(--ease);
  border: 1px solid transparent;
}
.gallery-filter:hover { background: var(--green-100); }
.gallery-filter.active { background: var(--green-800); color: #fff; }

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

.gallery-subhead {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  margin-bottom: 2px;
}
.gallery-subhead h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--green-900);
  white-space: nowrap;
}
.gallery-subhead::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green-200);
}
@media (max-width: 480px) {
  .gallery-subhead { margin-top: 18px; }
}
@media (max-width: 768px) { .gallery-masonry { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-masonry { grid-template-columns: 1fr; } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--green-100);
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 16/9; grid-column: span 2; }
@media (max-width: 480px) { .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; } }
.gallery-item picture { width: 100%; height: 100%; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-300), var(--green-700));
}
.gallery-item .placeholder svg { width: 50px; height: 50px; color: rgba(255,255,255,.7); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,14,.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 968px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info { }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--text-2); margin-bottom: 36px; font-size: 17px; line-height: 1.6; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon.blue { background: var(--blue-100); color: var(--blue-700); }
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method-text strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-method-text a, .contact-method-text span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.contact-method-text a:hover { color: var(--green-800); }

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: var(--paper);
  color: var(--text);
  transition: all .25s var(--ease);
}
.contact-btn:hover { background: var(--green-100); color: var(--green-900); }
.contact-btn svg { width: 16px; height: 16px; }
.contact-btn.viber { background: #7360F2; color: #fff; }
.contact-btn.viber:hover { background: #5e4cd9; }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,179,66,.12), transparent 70%);
}
@media (max-width: 580px) { .contact-form-wrap { padding: 36px 24px; } }
.contact-form-wrap > * { position: relative; z-index: 2; }
.contact-form-wrap h3 { margin-bottom: 12px; }
.contact-form-wrap > p { color: var(--text-2); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 15px;
  transition: all .25s var(--ease);
  font-family: var(--sans);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(124,179,66,.12);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; padding: 18px; margin-top: 8px; }

/* Map */
.map-section { padding: 0 0 100px; }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 480px;
  background: var(--green-100);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }



/* About page lists */
.about-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.about-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.55;
  font-size: 15.5px;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--green-600);
  border-radius: 1px;
}
.about-content p strong {
  font-weight: 600;
  color: var(--green-900);
}

/* New image logo */
.logo .logo-image {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
}
.logo picture { display: block; line-height: 0; }
@media (max-width: 600px) {
  .logo .logo-image { height: 38px; max-width: 180px; }
}
.footer .logo .logo-image {
  filter: brightness(0) invert(1);
  height: 48px;
  max-width: 240px;
}