/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #f4f2eb;
  color: #1f2933;
  overflow-x: hidden;

}
body, html {
    overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 235, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0dacc;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  text-decoration: none;
  color: #1f2933;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  color: #3b7a3d;
}

.logo small {
  font-weight: 500;
  font-size: 11px;
  color: #6b7280;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: #4b5563;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.nav a:hover,
.nav .active {
  color: #3b7a3d;
  border-bottom-color: #3b7a3d;
}

/* BURGER */

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #1f2933;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;                 /* ✅ кладемо його по правому краю */
  width: 230px;
  height: 100vh;
  background: #243524;
  padding-top: 80px;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;

  /* ховаємо тільки за рахунок transform */
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu a {
  color: #f9fafb;
  text-decoration: none;
  font-size: 15px;
}

/* коли меню відкрите */
.mobile-menu.open {
  transform: translateX(0);
}


/* ===== HERO ===== */

.hero-garden {
  background: radial-gradient(
    circle at top left,
    #d7e9d4 0,
    #f4f2eb 45%,
    #fdf9ef 100%
  );
  padding: 28px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.25;
  color: #1a2a1c;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 15px;
  color: #4b5563;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Pills */

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 9px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(31, 41, 55, 0.12);
  border: 1px solid #e5e7eb;
}

.pill-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 2px;
}

.pill span:last-child {
  font-size: 13px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: #3b7a3d;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(16, 77, 19, 0.35);
}

.btn.primary:hover {
  background: #305f32;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #3b7a3d;
  color: #305f32;
}

.btn.ghost:hover {
  background: #e4f0e5;
}

/* ===== STRIP FEATURES ===== */

.strip-features {
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  margin-top: -4px;
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.04);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 0 16px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.strip-item i {
  font-size: 24px;
  color: #3b7a3d;
}

.strip-item h3 {
  font-size: 15px;
  margin-bottom: 2px;
}

/* ===== SPLIT LAYOUT ===== */

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 28px 0 24px;
}

.split-block h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1a2a1c;
}

.split-block p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.checklist {
  margin-top: 10px;
  margin-left: 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.link-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #305f32;
  text-decoration: none;
}

.link-more:hover {
  text-decoration: underline;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  grid-auto-rows: 120px;
  gap: 12px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #d9e2d6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-placeholder {
  padding: 18px;
  font-size: 13px;
  color: #1a2a1c;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  /* приклад: висота рядка, можна змінити */
  grid-auto-rows: 220px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden; /* щоб обрізати зайве зображення по радіусу */
  background: #dfece0; /* фон як у тебе на скріні */
}

/* якщо перша картка має бути вища */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* заповнює весь блок, зайве обрізається */
  display: block;
}

.gallery-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}

/* ===== SECTION BACKGROUND ===== */

.section-bg {
  background: #e6e0d1;
  padding: 26px 0 30px;
  margin-top: 4px;
}

.section-header {
  text-align: left;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 22px;
  margin-bottom: 4px;
  color: #1a2a1c;
}

.section-header p {
  font-size: 14px;
  color: #4b5563;
  max-width: 520px;
}

.section-header.compact {
  margin-bottom: 12px;
}

/* Services */

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fdfaf4;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
  border: 1px solid #e5dfcf;
}

.service-card h2,
.service-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.service-card ul {
  font-size: 13px;
  color: #374151;
  margin-left: 18px;
  line-height: 1.6;
}

/* ===== SEASONS ROW ===== */

.seasons-row {
  padding: 26px 0 26px;
}

.season-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.season-card {
  min-width: 180px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
}

.season-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #305f32;
}

.season-card p {
  font-size: 13px;
  color: #4b5563;
}

/* ===== BOTTOM CTA ===== */

.bottom-cta {
  background: #305f32;
  color: #f9fafb;
  padding: 22px 0 24px;
}

.bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bottom-cta h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-cta p {
  font-size: 14px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.cta-actions .btn.primary {
  background: #f9fafb;
  color: #305f32;
  box-shadow: none;
}

.cta-actions .btn.primary:hover {
  background: #e5efe5;
}

.cta-phone {
  font-size: 13px;
}

.cta-phone i {
  margin-right: 6px;
}

/* ===== PAGES / GENERIC CONTENT ===== */

.page-hero {
  padding: 26px 0 10px;
}

.page-hero h1 {
  font-size: 24px;
  margin-bottom: 6px;
}

.page-hero p {
  font-size: 14px;
  color: #4b5563;
  max-width: 600px;
}

.page-content {
  padding: 10px 0 28px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.page-content h2 {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 4px;
  color: #1a2a1c;
}

.page-content ul {
  margin-left: 18px;
  margin-bottom: 6px;
}

.page-content.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

/* Policy card */

.policy-card {
  background: #ffffff;
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

/* ===== CONTACT LAYOUT ===== */

.contact-layout {
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}

.contact-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.contact-panel h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-panel p {
  font-size: 14px;
  margin-bottom: 4px;
  color: #4b5563;
}

.contact-note {
  margin-top: 8px;
  margin-bottom: 10px;
}

/* Contact form */

.contact-panel form {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-panel label {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: #3b7a3d;
  box-shadow: 0 0 0 1px rgba(59, 122, 61, 0.2);
}

.contact-panel button {
  align-self: flex-start;
  margin-top: 4px;
}

.map-panel {
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

/* ===== FOOTER ===== */

.site-footer {
  background: #1d2720;
  color: #9ca3af;
  padding: 16px 0 18px;
  font-size: 12px;
  margin-top: 10px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 8px;
}

/* ===== COOKIE BANNER ===== */

#cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 320px;
  z-index: 900;
}

.cookie-box {
  background: #1d2720;
  color: #e5e7eb;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.6);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  border: none;
  background: #3b7a3d;
  color: #f9fafb;
  font-weight: 600;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .layout-split,
  .service-columns,
  .page-content.two-cols,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-cta {
    padding-bottom: 20px;
  }

  #cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
