:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #15281b;
  background: #ede7d0;
  --brand-green: #0f3924;
  --brand-gold: #d6b14f;
  --brand-gold-soft: #f8e3a5;
  --section-light: #faf5e7;
  --section-dark: #0f3924;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(214, 177, 79, 0.12), transparent 35%),
    linear-gradient(180deg, #f8f3e5 0%, #ebe0c4 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

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

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.brand-label {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-green);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.main-nav a {
  color: var(--brand-green);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: url('721119646_122115619736810952_6683402240211293302_n.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 57, 36, 0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 57, 36, 0.55), rgba(15, 57, 36, 0.82));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: clamp(2.85rem, 5vw, 4.5rem);
  margin: 0.5rem 0 1rem;
}

.hero p {
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3f4f6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stats span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(15, 57, 36, 0.16);
}

.primary {
  background: var(--brand-green);
  color: #fdf0c7;
}

.secondary {
  background: rgba(214, 177, 79, 0.12);
  color: var(--brand-green);
  border-color: rgba(214, 177, 79, 0.3);
}

.section {
  padding: 5rem 0;
}

.light {
  background: var(--section-light);
}

.dark {
  background: var(--section-dark);
  color: #f3eee1;
}

.section h2 {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--brand-gold);
}

.section-intro,
.section h2 + p {
  max-width: 720px;
  margin-bottom: 2rem;
}

.light .section-intro,
.light .section h2 + p {
  color: #3a4a37;
}

.dark .section-intro,
.dark .section h2 + p {
  color: rgba(255, 255, 255, 0.9);
}

.grid-two,
.grid-three {
  display: grid;
  gap: 1.75rem;
}

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

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

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 57, 36, 0.08);
}

.video-card video {
  width: 100%;
  display: block;
  height: 240px;
  object-fit: cover;
  background: #000;
}

.video-card h3 {
  margin: 1rem;
  font-size: 1.05rem;
  color: var(--brand-green);
}
 
 .reverse-grid {
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
 }
 
 .section-heading {
   display: grid;
   gap: 1rem;
   margin-bottom: 2.5rem;
 }
 
 .cards-grid article {
   min-height: 220px;
 }
 
 .card-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 3rem;
   height: 3rem;
   margin-bottom: 1rem;
   border-radius: 1rem;
   background: rgba(255, 255, 255, 0.08);
   font-size: 1.3rem;
 }

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.12);
}

.image-card img,
.product-card img {
  width: 100%;
  object-fit: cover;
  height: 240px;
}

.service-card,
.product-card,
.contact-card {
  border-radius: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 177, 79, 0.2);
}

.dark .service-card,
.dark .product-card {
  background: rgba(255, 255, 255, 0.06);
}

.service-card h3,
.product-card h3 {
  margin-top: 0;
}

.contact-band {
  background: #f8f1d1;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.85rem;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.site-footer {
  padding: 1.8rem 0;
  background: var(--brand-green);
  color: #f8e9b8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .grid-two,
  .grid-three,
  .split-card,
  .reverse-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    inset: 100% auto auto 0;
    width: 100%;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(31, 41, 55, 0.08);
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}
