:root {
  --green-950: #062f16;
  --green-900: #083719;
  --green-800: #0e4523;
  --green-700: #1a6638;
  --cream: #fbf7ec;
  --sand: #f1dfba;
  --paper: #fffaf0;
  --brown: #9a623b;
  --ink: #14311f;
  --muted: #697568;
  --line: rgba(20, 49, 31, 0.13);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(4, 32, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--green-700);
  color: var(--white);
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

section {
  scroll-margin-top: 88px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

em {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  width: min(100% - 36px, 1180px);
  height: 66px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(6, 47, 22, 0.54);
  box-shadow: 0 18px 50px rgba(2, 24, 10, 0.18);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  transform: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  color: #f0b06f;
  opacity: 1;
}

.top-cta {
  justify-self: end;
  min-width: 88px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #db8a4c;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-carousel,
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-carousel::after,
.contact-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 24, 10, 0.92), rgba(2, 24, 10, 0.54) 45%, rgba(2, 24, 10, 0.64)),
    linear-gradient(0deg, rgba(2, 24, 10, 0.95), rgba(2, 24, 10, 0.1) 56%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  right: clamp(22px, 6vw, 78px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #e7aa70;
}

.hero-inner {
  width: min(100% - 42px, 1040px);
  margin: 0 auto;
  padding: 150px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #e7aa70;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-700);
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.25rem, 7.4vw, 6.8rem);
  line-height: 0.88;
}

h1 em {
  display: block;
  color: #2e9d57;
}

.hero-inner > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.btn.primary {
  background: var(--white);
  color: var(--green-900);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 860px;
  margin-top: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.stats div {
  min-height: 92px;
  padding: 18px 24px;
  background: rgba(12, 76, 36, 0.86);
}

.stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  white-space: nowrap;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 124px) clamp(22px, 6vw, 78px);
}

.split,
.section-intro,
.contact-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 480px);
  gap: clamp(34px, 7vw, 78px);
  align-items: center;
}

.about {
  background: var(--paper);
}

h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.97;
}

.lead,
.section-intro > p,
.facility .section-intro > p,
.contact p {
  color: var(--muted);
  font-size: 1rem;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-cards {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 18px;
  margin: 34px auto 0;
}

.about-cards article {
  min-height: 134px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 40px rgba(20, 49, 31, 0.06);
}

.about-cards h3,
.product-card h3,
.facility-grid h3,
.advantage-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.about-cards p,
.product-card p,
.facility-grid p,
.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-card {
  background: var(--green-900) !important;
  box-shadow: var(--shadow) !important;
}

.quote-card p {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
}

.products {
  background: var(--green-950);
  color: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 7vw, 88px);
  align-items: end;
}

.section-intro > p {
  margin: 0 0 8px;
}

.products .section-intro > p,
.products .product-card p {
  color: rgba(255, 255, 255, 0.64);
}

.product-grid {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 52px auto 0;
}

.product-card {
  min-height: 420px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #a8ddb4;
  background: rgba(44, 157, 86, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  margin-top: auto;
  border-radius: 4px;
  object-fit: cover;
}

.facility {
  background: var(--paper);
}

.section-intro.pale {
  align-items: center;
}

.facility-grid {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 270px 220px;
  gap: 18px;
  margin: 50px auto 0;
}

.facility-grid .wide {
  position: relative;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.facility-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.facility-grid figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.facility-grid article {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-900);
}

.facility-grid article p {
  color: rgba(255, 255, 255, 0.68);
}

.advantages {
  background: var(--sand);
  padding-top: clamp(66px, 8vw, 102px);
  padding-bottom: clamp(66px, 8vw, 102px);
}

.advantages > .eyebrow,
.advantages > h2,
.advantage-grid {
  width: min(100%, 1040px);
  margin-left: auto;
  margin-right: auto;
}

.advantages h2 {
  margin-bottom: 48px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.advantage-grid article {
  min-height: 216px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-grid article:nth-child(5n) {
  border-right: 0;
}

.advantage-grid article:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.advantage-grid span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green-800);
  background: rgba(26, 102, 56, 0.14);
  font-weight: 900;
}

.advantage-grid svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-grid h3 {
  font-size: 1.08rem;
}

.advantage-grid p {
  font-size: 0.84rem;
}

.contact {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: clamp(76px, 10vw, 122px) clamp(22px, 6vw, 78px) 28px;
  color: var(--white);
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(300px, 1fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: start;
}

.contact h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.contact h2 em {
  color: #2e9d57;
}

.contact p {
  max-width: 370px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  width: 52px;
  height: 52px;
  margin-top: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  display: block;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.contact-panel a:hover {
  background: rgba(255, 255, 255, 0.12);
}

footer {
  width: min(100%, 1040px);
  margin: 90px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 78px 1fr 48px;
  }

  .nav-toggle {
    display: block;
  }

  .top-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border-radius: 12px;
    background: rgba(6, 47, 22, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 16px;
  }

  .hero {
    min-height: 740px;
  }

  .stats,
  .split,
  .section-intro,
  .product-grid,
  .facility-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .stats {
    max-width: 520px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .facility-grid {
    grid-template-rows: auto;
  }

  .facility-grid .wide {
    grid-row: auto;
    min-height: 360px;
  }

  .facility-grid > img {
    min-height: 260px;
  }

  .advantage-grid article,
  .advantage-grid article:nth-child(5n),
  .advantage-grid article:nth-last-child(-n + 5) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .advantage-grid article:nth-child(2n) {
    border-right: 0;
  }

  .advantage-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 30px, 1040px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .stats div {
    min-height: 84px;
    padding: 16px;
  }

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

  .advantage-grid article,
  .advantage-grid article:nth-child(2n),
  .advantage-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advantage-grid article:last-child {
    border-bottom: 0;
  }

  .section,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-card {
    min-height: auto;
  }
}
