:root {
  --green-950: #092a1d;
  --green-900: #0d3b29;
  --green-800: #14523a;
  --green-700: #1f6d4d;
  --green-600: #2e8a62;
  --green-100: #dff5e8;
  --green-50: #f1fbf5;
  --cream: #fffaf0;
  --gold: #f5b84b;
  --orange: #f59f42;
  --ink: #14231b;
  --muted: #657268;
  --line: #dce9df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 66, 43, .14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

img,
svg {
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 14px;
  right: 0;
  left: 0;
  pointer-events: none;
  transition: top .2s ease;
}

.nav-shell {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(241, 251, 245, .82));
  box-shadow: 0 18px 55px rgba(9, 42, 29, .15);
  backdrop-filter: blur(18px);
  transition: padding .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  top: 8px;
}

.site-header.scrolled .nav-shell {
  padding: 8px 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 42px rgba(9, 42, 29, .17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: background .2s ease;
}

.brand:hover {
  background: rgba(223, 245, 232, .72);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), #73c56d);
  box-shadow: 0 10px 24px rgba(31, 109, 77, .28);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: #fffbe8;
}

.brand-mark .brand-line {
  fill: none;
  stroke: #fffbe8;
  stroke-linecap: round;
  stroke-width: 2.8;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--green-950);
  font-size: 1.04rem;
  letter-spacing: .01em;
}

.brand small {
  margin-top: 4px;
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(31, 109, 77, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
}

.nav-links a {
  position: relative;
  overflow: hidden;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: .92rem;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav-links a::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  opacity: 0;
  content: "";
  transition: opacity .2s ease;
}

.nav-links a span,
.nav-links a {
  z-index: 1;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  box-shadow: 0 10px 22px rgba(31, 109, 77, .2);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
}

.nav-links a {
  isolation: isolate;
}

.nav-cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold), #ffe39a);
  box-shadow: 0 14px 34px rgba(245, 184, 75, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 184, 75, .36);
}

.nav-cta span {
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-cta strong {
  margin-top: 4px;
  font-size: .82rem;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 12px 28px rgba(9, 42, 29, .2);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg-slider,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg-slider {
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 5.5s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-bg-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 42, 29, .8), rgba(9, 42, 29, .4));
  content: "";
}

.hero-bg-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 42, 29, .36);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.hero-bg-btn:hover {
  background: rgba(9, 42, 29, .68);
  transform: translateY(-50%) scale(1.06);
}

.hero-bg-prev {
  left: 24px;
}

.hero-bg-next {
  right: 24px;
}

.hero-bg-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 48px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero-bg-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero-bg-dot.active {
  width: 34px;
  background: var(--gold);
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 26%, rgba(245, 184, 75, .25), transparent 30%),
    linear-gradient(180deg, transparent 72%, var(--cream) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  align-items: end;
  gap: 54px;
  min-height: 760px;
  padding: 156px 0 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process-shell h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .96;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold), #ffe08a);
  box-shadow: 0 18px 40px rgba(245, 184, 75, .28);
}

.btn-soft {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.fresh-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff5d2;
  background: rgba(245, 184, 75, .18);
  font-size: .82rem;
  font-weight: 850;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.8rem;
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.65;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-stats span {
  padding: 13px 10px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .12);
  font-size: .76rem;
  text-align: center;
}

.mini-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(245, 184, 75, .16), transparent 26%),
    linear-gradient(180deg, var(--cream), #f5fbf4);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading h2,
.process-shell h2,
.contact-copy h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.process-shell p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 42px rgba(21, 80, 52, .08);
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(46, 138, 98, .09);
  content: "";
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), #72bd63);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(46, 138, 98, .2);
}

.service-card h3,
.product-body h3,
.contact-form h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.24rem;
}

.service-card p,
.product-body p,
.form-header p {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(14, 66, 43, .2);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--green-100);
}

.product-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: .75rem;
  font-weight: 900;
}

.product-body a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green-700);
  font-weight: 900;
}

.section-pattern {
  background:
    linear-gradient(135deg, rgba(9, 42, 29, .95), rgba(20, 82, 58, .94)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.process-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.process-shell h2 {
  color: var(--white);
}

.process-shell p {
  color: rgba(255, 255, 255, .76);
}

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

.process-list div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 950;
}

.process-list strong {
  display: block;
  color: var(--white);
  font-size: 1.16rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.real-gallery {
  grid-template-columns: 1.05fr .82fr 1fr;
  grid-auto-rows: 250px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.gallery-card.tall img {
  object-fit: contain;
  background: #f6f8f4;
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
  color: var(--white);
  background: rgba(9, 42, 29, .68);
  backdrop-filter: blur(10px);
  font-weight: 850;
}

.gallery-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.media-heading {
  margin-top: 72px;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--green-950);
  object-fit: cover;
}

.video-card h3 {
  margin: 0;
  padding: 16px 18px;
  color: var(--green-950);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--green-950);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(21, 80, 52, .06);
  font-weight: 800;
}

.contact-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-700);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 20px;
}

.form-header p {
  margin: 8px 0 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form label span {
  color: var(--green-950);
  font-size: .88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e5db;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfffb;
  font: inherit;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(46, 138, 98, .12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green-700);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .74);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 28px;
  align-items: center;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small,
.footer-grid p {
  color: rgba(255, 255, 255, .72);
}

.footer-grid p {
  max-width: 430px;
  line-height: 1.7;
}

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

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.copyright {
  justify-self: end;
  text-align: right;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: linear-gradient(135deg, var(--green-50), var(--cream));
}

.error-card {
  max-width: 520px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-card h1 {
  margin: 0;
  color: var(--green-950);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .hero-grid,
  .process-shell,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
    padding-bottom: 80px;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .copyright {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 11px;
    left: 11px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 52px rgba(9, 42, 29, .18);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 6px;
    border-radius: 18px;
    background: rgba(241, 251, 245, .9);
  }

  .nav-links a {
    text-align: center;
  }

  .nav-cta {
    align-items: center;
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 8px;
  }

  .nav-shell {
    border-radius: 24px;
    padding: 10px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 132px 0 66px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-bg-btn {
    top: auto;
    bottom: 28px;
    width: 40px;
    height: 40px;
  }

  .hero-bg-prev {
    left: 16px;
  }

  .hero-bg-next {
    right: 16px;
  }

  .hero-bg-dots {
    bottom: 42px;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .service-grid,
  .product-grid,
  .process-list,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .media-heading {
    margin-top: 52px;
  }

  .process-shell,
  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }
}
