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

html,
body {
  height: 100%;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #264139;
  background-color: #fdfcf8;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.hero {
  background-color: #fdfcf8;
  padding: 96px 6vw 120px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(253, 252, 248, 0) 0%,
    #fdfcf8 85%,
    #fdfcf8 100%
  );
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  z-index: 0;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6vw;
  background-color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2d5a3f;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #254329;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

.nav-list a {
  position: relative;
  padding-bottom: 4px;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #2f7b3c;
  transition: width 0.25s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
}

/* When mobile nav is opened, always hide the Contacts button */
.nav.open .nav-cta {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 35;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background-color: #254329;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-inner {
  max-width: 1200px;
  margin: 32px auto 52px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-text {
  max-width: 430px;
  text-align: right;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 3.8vw, 3.4rem);
  margin-bottom: 8px;
  color: #234021;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #8a9a6a;
  margin-bottom: 10px;
}

.hero-subtitle {
  max-width: 440px;
  margin-bottom: 22px;
  color: #4b5a44;
  font-size: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-main-img {
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  max-height: 360px;
  object-fit: cover;
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease, color 0.12s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #2f7b3c;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 123, 60, 0.35);
}

.btn-primary:hover {
  background-color: #275f33;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(47, 123, 60, 0.4);
}

.btn-ghost {
  background-color: transparent;
  color: #2f7b3c;
  border: 1px solid #2f7b3c;
}

.btn-ghost:hover {
  background-color: #2f7b3c;
  color: #ffffff;
}

.section {
  padding: 72px 8vw;
}

.section-label {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a9a6a;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #234021;
  margin-bottom: 14px;
}

.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 18px;
  color: #4b5a44;
  font-size: 1rem;
}

.about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.about p {
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 1rem;
}

.about-decor-left,
.about-decor-right {
  position: absolute;
  z-index: 0;
  opacity: 0.95;
}

.about-decor-left {
  left: 4%;
  bottom: 6%;
  width: 180px;
}

.about-decor-right {
  right: 3%;
  top: 8%;
  width: 160px;
}

.products {
  background: linear-gradient(180deg, #f4f8ed, #ffffff);
  position: relative;
  overflow: hidden;
}

.product-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
  padding: 0 0 14px;
  text-align: left;
  width: 100%;
  max-width: 18rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  border-radius: 14px 14px 0 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 14px 4px;
}

.product-price {
  font-size: 0.9rem;
  color: #7a8471;
  margin: 0 14px 4px;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #e5f5e7;
  font-size: 0.75rem;
  color: #22572b;
}

.products-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.products-decor-left,
.products-decor-right {
  position: absolute;
  z-index: 0;
  opacity: 0.9;
}

.products-decor-left {
  left: 0;
  top: 18%;
  width: 190px;
}

.products-decor-right {
  right: 0;
  top: 22%;
  width: 170px;
}

.mission-values {
  background: #193327;
  color: #f2f6f0;
  position: relative;
  overflow: hidden;
}

.mv-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.mission-decor-back {
  position: absolute;
  inset: auto 0 -40px;
  width: 100%;
  opacity: 0.2;
}

.mv-card {
  background: radial-gradient(circle at top left, #325a3e, #16271f);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.mv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.testimonials {
  background: #ffffff;
}

.testimonial-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-badge img {
  max-width: 210px;
  margin: 0 auto;
}

.testimonial-content {
  background-color: #f7fbf4;
  border-radius: 18px;
  padding: 24px 26px;
  border: 1px solid #dde7cf;
}

.quote-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #234021;
  margin-bottom: 6px;
}

.quote-body {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #455140;
}

.quote-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2f7b3c;
}

.contact {
  background: linear-gradient(180deg, #f4f8ed, #fdfcf8);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 30px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.contact-decor-back {
  position: absolute;
  inset: auto 0 -40px;
  width: 100%;
  opacity: 0.16;
  pointer-events: none;
}

.contact-details {
  font-size: 1rem;
  color: #40503e;
}

.contact-heading {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 2px;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.form-group label {
  font-weight: 600;
  color: #3b4a3a;
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid #d1ddc8;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2f7b3c;
  box-shadow: 0 0 0 1px rgba(47, 123, 60, 0.18);
}

.form-submit {
  margin-top: 4px;
}

.form-message {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #2f7b3c;
}

.footer {
  background: #0f2018;
  color: #f0f5ef;
  padding-top: 26px;
}

.footer-inner {
  padding: 0 8vw 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-logo {
  width: 70px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.footer-col ul {
  list-style: none;
  font-size: 0.95rem;
}

.footer-col li + li {
  margin-top: 4px;
}

.footer-brand p {
  font-size: 0.95rem;
}

.footer-follow {
  margin-top: 10px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #2a3c32;
  text-align: center;
  padding: 10px 8vw 14px;
  font-size: 0.78rem;
  color: #9fb1a4;
}

@media (max-width: 960px) {
  .hero-inner {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-badge img {
    max-width: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding-inline: 6vw;
  }

  .hero-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-list,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    border-radius: 24px 0 0 24px;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.22);
    z-index: 40;
    gap: 0;
    list-style: none;
    overflow-y: auto;
    pointer-events: auto;
  }

  .nav.open .nav-list li {
    margin-bottom: 0;
    pointer-events: auto;
  }

  .nav.open .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #254329;
    border-bottom: 1px solid rgba(45, 90, 63, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 41;
    -webkit-tap-highlight-color: rgba(47, 123, 60, 0.2);
    touch-action: manipulation;
  }

  .nav.open .nav-list a:hover {
    color: #2f7b3c;
    padding-left: 8px;
  }

  .nav.open .nav-list a::after {
    display: none;
  }

  .nav.open .nav-cta {
    display: none;
  }

  /* Overlay backdrop - only blocks clicks on background, not menu */
  body.nav-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 35;
    pointer-events: auto;
  }
  
  /* Ensure menu is above overlay and top-bar, and clickable */
  .nav.open {
    pointer-events: none;
    z-index: 40;
  }
  
  .nav.open .nav-list,
  .nav.open .nav-list * {
    pointer-events: auto;
  }
  
  /* Make sure top-bar doesn't block menu when open */
  body.nav-open .top-bar {
    z-index: 36;
  }

  /* Prevent body scroll when menu is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Hide Contacts button in top bar on mobile */
  .nav-cta {
    display: none !important;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}


