* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #0b7a34;
  --green-dark: #145334;
  --beige: #e7dfd2;
  --sand: #c99e67;
  --sand-soft: #f1e4cf;
  --text: #1f2937;
  --muted: #4b5563;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--green-dark);
  border-top: 6px solid var(--sand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1000;
}

.nav-wrap {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 86px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.3px;
}

.brand-slogan {
  font-size: 13px;
  color: #f3d9ae;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--white);
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #f4e4c7;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

/* HERO */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  border-top: 6px solid var(--sand);
  border-bottom: 6px solid var(--sand);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 122, 52, 0.84) 0%,
    rgba(11, 122, 52, 0.56) 42%,
    rgba(11, 122, 52, 0.22) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  padding: 70px 0;
}

.hero-logo {
  width: 240px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.04;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 19px;
  color: #f3f4f6;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn,
.btn-outline,
.btn-outline-dark,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn {
  background: var(--green);
  color: white;
  padding: 14px 24px;
  border: 2px solid var(--green);
}

.btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 12px 22px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 12px 22px;
}

.btn-outline-dark:hover {
  background: rgba(11, 122, 52, 0.08);
}

.link-btn {
  color: var(--green-dark);
  margin-top: 8px;
}

.link-btn:hover {
  color: var(--green);
}

/* SECTIONS */
.section {
  padding: 80px 0;
  background: var(--beige);
}

.section-dark {
  background: var(--green);
  color: white;
  border-top: 6px solid var(--sand);
  border-bottom: 6px solid var(--sand);
}

.section-split {
  background: var(--beige);
}

.section h2 {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 17px;
}

.section-dark .section-intro {
  color: #e8f2eb;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sand);
}

.section-kicker.light {
  color: #f3d9ae;
}

/* BENEFITS */
.benefits-strip {
  padding: 32px 0;
  background: var(--green-dark);
  border-top: 6px solid var(--sand);
  border-bottom: 6px solid var(--sand);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 18px;
  text-align: center;
}

.benefit-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-label {
  display: block;
  color: #e7f2ea;
  font-size: 14px;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #f4ece0;
  border: 1px solid #d7c8af;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-box h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-box p {
  color: var(--muted);
}

/* SPLIT */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.split-text p {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-item {
  background: rgba(255, 255, 255, 0.55);
  border-left: 4px solid var(--sand);
  padding: 12px 14px;
  color: var(--text);
}

.split-media {
  display: flex;
  justify-content: center;
}

.split-image {
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow);
  border: 6px solid white;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #f7f3eb;
  border: 1px solid #d7c8af;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
  border-color: var(--sand);
  background: #fcf8f1;
}

.card-body h3,
.tag,
.link-btn {
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.card:hover .card-body h3 {
  color: var(--green-dark);
}

.card:hover .tag {
  background: var(--green-dark);
  color: var(--white);
}

.card:hover .link-btn {
  color: var(--green-dark);
  transform: translateX(4px);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.large-card img {
  height: 360px;
}

.card-body {
  padding: 22px;
  
}

.card-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  background: var(--sand);
  color: #2c2c2c;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.spec-list {
  margin: 14px 0 8px 18px;
}

.spec-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

/* INFO CARDS */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card p {
  color: #edf5ef;
}

/* PAGE HERO */
.page-hero {
  background: var(--green);
  color: white;
  padding: 84px 0;
  border-top: 6px solid var(--sand);
  border-bottom: 6px solid var(--sand);
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #eef7f1;
}

/* 2 COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.rounded-img {
  width: 100%;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

/* CONTACT / CTA */
.contact-box,
.cta-box {
  background: rgba(11, 122, 52, 0.92);
  color: white;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.contact-box h2,
.cta-box h2 {
  margin-bottom: 14px;
  font-size: 38px;
}

.contact-box p,
.cta-box p {
  color: #eef5f0;
}

.contact-box strong {
  color: white;
}

.cta-strong {
  border-top: 6px solid var(--sand);
}

/* FOOTER */
.site-footer {
  background: var(--green-dark);
  color: white;
  padding: 46px 0;
  border-top: 6px solid var(--sand);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 12px;
}

.site-footer h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.site-footer p,
.site-footer a {
  color: #eaf5ee;
  margin-bottom: 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 18px 5%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
    z-index: 1001;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .two-col,
  .footer-wrap,
  .benefits-grid,
  .info-cards-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 70px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-slogan {
    font-size: 12px;
  }

  .section {
    padding: 64px 0;
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.gallery-helper {
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 0;
  font-size: 15px;
}

.card-gallery {
  position: relative;
  overflow: hidden;
  background: #ddd5c7;
}

.card-gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.card-gallery-slide {
  width: 100%;
  flex: 0 0 100%;
  height: 280px;
  object-fit: cover;
}

.large-card .card-gallery-slide {
  height: 360px;
}

.card-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(20, 83, 52, 0.82);
  color: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.card-gallery-btn:hover {
  background: var(--green-dark);
}

.card-gallery-btn.prev {
  left: 12px;
}

.card-gallery-btn.next {
  right: 12px;
}

.card-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.22);
  border-radius: 999px;
  z-index: 2;
}

.card-gallery-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-gallery-dot.active {
  background: white;
  transform: scale(1.15);
}

.card-gallery.single-slide .card-gallery-btn,
.card-gallery.single-slide .card-gallery-dots {
  display: none;
}

/* CAROUSEL */
.carousel-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.carousel-section-header .section-intro {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20, 83, 52, 0.16);
  background: #f7f3eb;
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  color: white;
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.carousel-card.card,
.carousel-card.large-card {
  height: 100%;
}

.carousel-card .card-body {
  height: 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(20, 83, 52, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--green-dark);
  transform: scale(1.15);
}

.carousel-dot:hover {
  background: var(--green);
}

@media (max-width: 1024px) {
  .carousel-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 900px) {
  .carousel-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-controls {
    align-self: flex-end;
  }
}

@media (max-width: 640px) {
  .carousel-track {
    gap: 18px;
  }

  .carousel-card {
    flex-basis: 100%;
  }

  .carousel-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .card-gallery-slide,
  .large-card .card-gallery-slide {
    height: 280px;
  }

  .card-gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}


.main-nav a.active {
  color: #f4e4c7;
}

.spec-note {
  color: var(--green-dark);
  font-weight: 700;
  margin: 10px 0 18px;
}

.faq-grid .feature-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.faq-grid .feature-box h3,
.faq-grid .feature-box p {
  color: white;
}
