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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #1f1f1f;
  background-color: #ffffff;
}

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

a {
  color: #214d31;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #1a73e8;
  outline-offset: 2px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: #1d3f2c;
}

p {
  max-width: 65ch;
  margin-top: 0;
}


.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}


.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000000;
  color: #ffffff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}



.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e6ece3;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1rem 0;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: #214d31;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: #214d31;
  font-weight: 600;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a[aria-current="page"] {
  text-decoration: underline;
}

.nav-list a[aria-current="page"] {
  font-weight: 700;
}

.site-footer {
  background: #eef4ea;
  border-top: 1px solid #dbe7d5;
}

.site-footer .container {
  padding: 2rem 0;
}



.button {
  display: inline-block;
  background: #285c38;
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  margin-right: 0.75rem;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(40, 92, 56, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: #1f4a2c;
  text-decoration: none;
  transform: translateY(-2px);
}

.button-secondary {
  background: #ffffff;
  color: #285c38;
  border-color: #285c38;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus {
  background: #f3f8f2;
}


.hero {
  background: linear-gradient(180deg, #eef6ea 0%, #f8fbf6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
}

.page-hero {
  background: #eef4ea;
}

.page-hero .container {
  padding: 3rem 0;
}


.hero .feature-image,
.hero .hero-image {
  margin: 0;
}

.hero .feature-image img,
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}



.cards,
.content-grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.values {
  background: #f4f8f1;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.values h2,
.contact-strip h2 {
  margin-top: 0;
}

.card,
.info-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border-top: 4px solid #7aa66f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.card h3,
.info-card h3 {
  margin-bottom: 0.75rem;
}


.feature-image {
  margin-top: 1.5rem;
}

.feature-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}



.contact-strip {
  background: #e7f1e3;
  text-align: left;
}

.contact-strip .container {
  padding: 3rem 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 700px;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #999;
  border-radius: 8px;
  font: inherit;
  background: #ffffff;
}


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

  .site-header .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .cards,
  .content-grid,
  .two-column,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero .feature-image img,
  .hero-image img {
    height: auto;
  }

  .button {
    margin-right: 0.5rem;
    margin-bottom: 0.75rem;
  }
}

.intro-section {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.intro-text p {
  max-width: 60ch;
}
.impact-strip {
  background: #f4f8f1;
  border-top: 1px solid #e3ebdf;
  border-bottom: 1px solid #e3ebdf;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.impact-item {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.impact-item h3 {
  margin-bottom: 0.5rem;
  color: #214d31;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.gallery-section {
  background: #ffffff;
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.quote-section {
  background: #eef4ea;
}

.homepage-quote {
  margin: 0;
  max-width: 850px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
  color: #1d3f2c;
}
@media (max-width: 900px) {
  .intro-grid,
  .impact-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .intro-grid,
  .impact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .gallery-grid img {
    height: auto;
  }
}

.profile-card {
  display: flex;
  flex-direction: column;
}



.profile-card strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #214d31;
}


.about-hero {
  background: #eef4ea;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.about-hero-text p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.about-hero-image {
  margin: 0;
}

.about-hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image img {
    height: auto;
  }
}

.about-page section {
  padding: 3rem 0;
}

.about-page .page-hero {
  padding: 0;
}

.about-page .page-hero .container {
  padding: 2.5rem 0;
}
.mini-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.mini-fact {
  background: #f7f9f5;
  border-radius: 12px;
  padding: 1rem;
  font-weight: 600;
  color: #214d31;
}

@media (max-width: 768px) {
  .mini-facts {
    grid-template-columns: 1fr;
  }
}
.profile-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.profile-card h3 {
  margin-bottom: 0.35rem;
}

.profile-card p {
  margin-bottom: 0.75rem;
}
.care-page section {
  padding: 3rem 0;
}

.care-page .page-hero .container {
  padding: 2.5rem 0;
}
.activities-section {
  background: #f4f8f1;
}

.care-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

.care-hero-text p {
  max-width: 58ch;
}

.care-top-image {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 620px;
}

.care-top-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .care-hero-grid {
    grid-template-columns: 1fr;
  }

  .care-top-image {
    justify-self: start;
    max-width: 100%;
  }

  .care-top-image img {
    aspect-ratio: 4 / 3;
  }
}

.gardens-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

.gardens-hero-text p {
  max-width: 58ch;
}

.gardens-hero-image {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 620px;
}

.gardens-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .gardens-hero-grid {
    grid-template-columns: 1fr;
  }

  .gardens-hero-image {
    justify-self: start;
    max-width: 100%;
  }

  .gardens-hero-image img {
    aspect-ratio: 4 / 3;
  }
}
.gardens-benefits {
  background: #f4f8f1;
}
fieldset {
  border: 1px solid #c9d7c3;
  border-radius: 12px;
  padding: 1.5rem;
}

legend {
  font-weight: 700;
  color: #214d31;
  padding: 0 0.5rem;
}
.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #214d31;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 999px;
  background: #285c38;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.back-to-top.show {
  display: block;
}

.back-to-top:hover,
.back-to-top:focus {
  background: #1f4a2c;
}
.news-survey .two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.news-survey .info-card {
  height: auto;
  margin: 0;
}
@media (max-width: 768px) {
  .news-survey .two-column {
    grid-template-columns: 1fr;
  }
}

.menu-toggle {
  display: none;
  background: #285c38;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-header nav {
    display: none;
    width: 100%;
  }

  .site-header nav.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .site-header nav.nav-open {
    display: block;
    padding-top: 0.75rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }
}