/* ===== Variables ===== */
:root {
  --green-dark: #1B4332;
  --green-primary: #2D6A4F;
  --green-light: #52B788;
  --green-accent: #40916C;
  --green-pale: #D8F3DC;
  --green-muted: #74C69D;
  --white: #FFFFFF;
  --cream: #FAFAF8;
  --gray-50: #F5F7F6;
  --gray-100: #EEF1EF;
  --gray-200: #E0E5E2;
  --gray-400: #9AABA3;
  --gray-600: #5C6B63;
  --gray-800: #2D3B35;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(27, 67, 50, 0.07);
  --shadow-md: 0 6px 24px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), background var(--transition), transform var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 90px 0; }

.section-label {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--green-light);
  line-height: 1.2;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-title .accent { color: var(--green-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-label { margin-bottom: 4px; }
.section-header .section-title { margin-bottom: 0; }

.section-cta { text-align: center; margin-top: 44px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-pale);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== Check List ===== */
.check-list { margin: 22px 0 30px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 82px;
}

.logo__img { height: 58px; width: auto; }

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}
.nav__link:hover,
.nav__link.active { color: var(--green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  padding: 120px 0 0;
  background: var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--green-light);
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.125rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--green-light);
  margin-top: 14px;
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, transparent 30%);
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__info-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
  margin-top: 50px;
}

.hero__info-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero__info-item svg { color: var(--green-light); flex-shrink: 0; }
.hero__info-item a { color: var(--green-primary); font-weight: 600; }
.hero__info-item a:hover { color: var(--green-dark); }

.hero__info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--green-dark);
}

.hero__info-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== About ===== */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__images {
  position: relative;
  min-height: 440px;
}

.about__images::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--gray-200) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.7;
  z-index: 0;
}

.about__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.about__img--main {
  width: 68%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.about__img--secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border: 5px solid var(--white);
  z-index: 2;
}

.about__text {
  color: var(--gray-600);
  font-size: 0.975rem;
  margin-bottom: 6px;
}

/* ===== Plants ===== */
.plants { background: var(--cream); }

.plants__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.plant-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.plant-card__img-wrap { overflow: hidden; }

.plant-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.plant-card:hover .plant-card__img { transform: scale(1.06); }

.plant-card__body { padding: 16px 14px 18px; text-align: center; }

.plant-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.plant-card__desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
  padding: 0 4px;
}

.plant-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-light);
}
.plant-card__link:hover { color: var(--green-dark); }

/* ===== Services ===== */
.services { background: var(--gray-50); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 22px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--green-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 50%;
  color: var(--green-primary);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.service-card--img {
  padding: 0;
  text-align: left;
  overflow: hidden;
}

.service-card--img .service-card__photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.service-card--img .service-card__body {
  padding: 24px 22px 28px;
}

.service-card--img .service-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 14px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .contact-with-image { grid-template-columns: 1fr; }
  .contact-visual img { min-height: 280px; }
}

/* ===== Why Us ===== */
.why-us { background: var(--white); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us__text {
  color: var(--gray-600);
  font-size: 0.975rem;
  margin-bottom: 6px;
}

.why-us__visual { position: relative; }

.why-us__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-us__badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}

.why-us__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.why-us__badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background-color: var(--green-dark);
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352B788' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 30% 50%, rgba(82, 183, 136, 0.12) 0%, transparent 60%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero .section-label { margin-bottom: 8px; }
.page-hero .section-title { margin-bottom: 12px; }

.page-hero__text {
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== Gallery ===== */
.gallery { background: var(--gray-50); }

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

.gallery__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.gallery__img:hover { transform: scale(1.02); }

/* ===== Contact ===== */
.contact { background: var(--white); }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-info-item svg { color: var(--green-light); flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.contact-info-item a:hover { color: var(--green-primary); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-light);
}

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

/* ===== Plants page ===== */
.plants-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plant-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.plant-detail-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.plant-detail-card__body { padding: 24px; }

.plant-detail-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.plant-detail-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer__logo { height: 62px; width: auto; margin-bottom: 14px; }

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.footer__links li { margin-bottom: 9px; }

.footer__links a {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

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

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer__contact svg { color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: var(--green-primary); font-weight: 600; }
.footer__contact a:hover { color: var(--green-dark); }

.footer__bottom {
  background: var(--green-dark);
  padding: 16px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .plants__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .plants-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.open { display: block; }
  .nav.open .nav__list { flex-direction: column; align-items: flex-start; gap: 14px; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__grid,
  .about__grid,
  .why-us__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero { padding-top: 100px; }
  .hero__visual { order: -1; }
  .hero__img { height: 320px; }
  .hero__info-bar .container { flex-direction: column; gap: 16px; }

  .about__images { min-height: 300px; }
  .about__img--main { width: 70%; height: 280px; }
  .about__img--secondary { width: 50%; height: 190px; }

  .plants__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__badge { left: 12px; bottom: 12px; }
  .why-us__img { height: 340px; }

  .section { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .plants-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .plants__grid,
  .services__grid,
  .gallery__grid { grid-template-columns: 1fr; }
}
