:root {
  --bg: #f4f6f3;
  --bg-elevated: #fbfcfa;
  --text: #18211e;
  --muted: #52615d;
  --brand: #245a47;
  --brand-soft: #d8e8df;
  --line: #d9e0dc;
  --accent: #b98949;
  --radius: 18px;
  --shadow: 0 18px 36px rgba(22, 34, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 12%, rgba(185, 137, 73, 0.2), transparent 44%),
    radial-gradient(circle at 85% 10%, rgba(36, 90, 71, 0.22), transparent 45%),
    linear-gradient(170deg, #f6f7f4, #eef2ee);
}

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

.section {
  padding: 84px 0;
}

.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(244, 246, 243, 0.85);
  border-bottom: 1px solid rgba(24, 33, 30, 0.08);
  z-index: 20;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.logo-wordmark {
  width: 248px;
  height: 60px;
  max-width: 248px;
  max-height: 60px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
}

.nav .nav-contact-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 14px;
  min-height: 34px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.nav .nav-contact-btn:hover,
.nav .nav-contact-btn:focus-visible {
  color: #fff;
  background: #194837;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  padding-top: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  line-height: 1.12;
  margin-top: 12px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 64ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 26px;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #194837;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.hero-stats strong {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-art {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-art iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.hero-art video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  background: #000;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
}

.orb-a {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.22);
  left: 8%;
  top: 20%;
  animation: drift 8s ease-in-out infinite;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: rgba(185, 137, 73, 0.28);
  right: -40px;
  top: 34%;
  animation: drift 11s ease-in-out infinite reverse;
}

.orb-c {
  width: 120px;
  height: 120px;
  background: rgba(216, 232, 223, 0.7);
  left: 28%;
  bottom: 12%;
  animation: drift 7s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(10px);
  }
}

.section-head {
  max-width: 72ch;
}

.section-head > p:last-child {
  color: var(--muted);
}

.about-grid,
.product-grid,
.facilities-home-grid,
.sustainability-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.card,
.product-card,
.s-card,
.contact-form,
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 18px rgba(25, 39, 33, 0.04);
}

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

.products-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.product-card {
  min-height: 220px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-arrow-icon {
  font-size: 1rem;
  line-height: 1;
}

.sustainability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.facilities-home-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.facilities-home-grid .section-head {
  grid-column: 1 / -1;
}

.facilities-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.sustainability-grid .section-head {
  grid-column: 1 / -1;
}

.sustainability-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.about-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.clean-list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 7px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro intro"
    "form details"
    "locations locations";
  margin-top: 12px;
  align-items: start;
  row-gap: 16px;
  column-gap: 20px;
}

.contact-grid .section-head {
  grid-area: intro;
  grid-column: 1 / -1;
  max-width: none;
  margin-bottom: 0;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form button {
  justify-self: start;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.form-status--success {
  color: var(--accent, #2d6a4f);
}

.form-status--error {
  color: #c1121f;
}

.contact-card p {
  color: var(--muted);
  margin: 8px 0;
}

.contact-card {
  grid-area: details;
  align-self: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.contact-card .eyebrow {
  margin-bottom: 6px;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.locations-panel {
  grid-area: locations;
  grid-column: 1 / -1;
  margin-top: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 18px rgba(25, 39, 33, 0.04);
}

.locations-head {
  margin-bottom: 14px;
}

.locations-head > .eyebrow {
  margin-bottom: 6px;
}

.locations-head > h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

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

.locations-panel .location-item {
  border: 1px solid rgba(24, 33, 30, 0.12);
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
}

.locations-panel h3 {
  font-size: 0.98rem;
  margin: 0 0 6px;
}

.locations-panel .location-address {
  color: var(--muted-strong, #2a3934);
  margin: 0 0 4px;
  line-height: 1.45;
  font-size: 0.92rem;
}

.locations-panel .location-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.9rem;
  font-style: italic;
}

.contact-detail {
  color: var(--text);
  line-height: 1.5;
  margin: 7px 0;
}

.contact-detail strong {
  color: var(--text);
  margin-right: 4px;
}

.contact-detail .contact-value {
  color: var(--muted);
}

.contact-social {
  margin-top: 14px;
}

.contact-social-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-strong, #2a3934);
  margin-bottom: 8px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(24, 33, 30, 0.12);
  font-size: 0.85rem;
  color: var(--brand);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(36, 90, 71, 0.04), rgba(185, 137, 73, 0.04));
}

.contact-social-links a:hover {
  border-color: rgba(24, 33, 30, 0.24);
  background:
    linear-gradient(135deg, rgba(36, 90, 71, 0.08), rgba(185, 137, 73, 0.08));
}

.contact-chat-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-chat-action {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid rgba(24, 33, 30, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 8px 10px;
  text-align: left;
  font: inherit;
}

.contact-chat-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(36, 90, 71, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-chat-icon svg {
  width: 19px;
  height: 19px;
  fill: rgba(36, 90, 71, 0.95);
}

.contact-chat-icon .chat-dot {
  fill: #fff;
}

.contact-chat-text {
  display: grid;
  gap: 2px;
}

.contact-chat-action small {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-chat-action:hover,
.contact-chat-action:focus-visible {
  border-color: rgba(24, 33, 30, 0.24);
}

.footer {
  border-top: 1px solid rgba(24, 33, 30, 0.1);
  padding: 24px 0 40px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
}

.reveal,
.reveal-delay,
.reveal-delay-2,
.reveal-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-delay {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .about-grid,
  .facilities-home-grid,
  .sustainability-grid,
  .contact-grid,
  .locations-grid,
  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-areas:
      "intro"
      "form"
      "details"
      "locations";
    row-gap: 14px;
    column-gap: 0;
  }

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

  .hero-art {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .nav-wrap {
    gap: 10px;
    justify-content: flex-start;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-wordmark {
    width: min(248px, 46vw);
    max-width: 248px;
    height: auto;
    max-height: 60px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 6px;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 72px;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: var(--brand-soft);
  color: var(--text);
}

.lang-btn.is-active {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 760px) {
  .lang-switch {
    margin-left: auto;
    gap: 4px;
    padding: 4px;
    flex: 0 0 auto;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 5px 8px;
  }
}
