:root {
  --green: #0c6b3d;
  --green-dark: #073f27;
  --green-soft: #e9f3ed;
  --wood: #b9824b;
  --wood-soft: #f3eadf;
  --ink: #17201b;
  --muted: #657169;
  --line: #dfe7e2;
  --paper: #f7f8f6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 32, 27, .10);
}
* { 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(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 35px rgba(23, 32, 27, .08);
}
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.88);
  font-size: 17px;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a:hover { color: white; }
.main-header {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,231,226,.95);
}
.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
}
.brand img {
  width: 238px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 29px 0 27px;
  color: #26322b;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-cta, .button, .cookie-banner button {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.header-cta { font-size: 17px; white-space: nowrap; }
.button:hover, .header-cta:hover, .cookie-banner button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(12, 107, 61, .24);
}
.button-light {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.65);
}
.button-light:hover { background: white; color: var(--green-dark); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--green-dark);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.hero-slider {
  min-height: clamp(560px, 72vh, 760px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 5s ease;
  z-index: -3;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,31,22,.82), rgba(7,31,22,.54), rgba(7,31,22,.18));
  z-index: -2;
}
.hero-content { color: white; padding: 80px 0; }
.hero-content h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  margin: 18px 0 22px;
}
.hero-content p {
  max-width: 660px;
  color: rgba(255,255,255,.86);
  font-size: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.eyebrow {
  color: var(--green);
  font-size: 17px;
  font-weight: 840;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #cfe9d8; }
.section { padding: 96px 0; }
.section.alt { background: linear-gradient(180deg, var(--paper), #fff); }
.section-heading { max-width: 840px; margin-bottom: 44px; }
h1, h2, h3 { line-height: 1.13; margin-top: 0; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 74px); margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 50px); margin-bottom: 18px; }
h3 { font-size: 21px; margin-bottom: 10px; }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: 20px; max-width: 820px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compact-grid { align-items: stretch; }
.card, .value-card, .feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
}
.value-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--wood));
}
.value-card p, .card p, .media-card p, .product-detail p, .project-card p { color: var(--muted); }
.media-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.media-card:hover, .project-card:hover, .product-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 32, 27, .14);
}
.media-card img { height: 190px; width: 100%; object-fit: cover; }
.media-card div { padding: 24px; }
.media-card a {
  color: var(--green);
  font-weight: 820;
  display: inline-block;
  margin-top: 12px;
}
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: start; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: .65em;
}
.stats-band {
  background: var(--green-dark);
  color: white;
  padding: 38px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
}
.stats-grid div {
  background: var(--green-dark);
  padding: 26px;
}
.stats-grid strong { display: block; font-size: 24px; }
.stats-grid span { color: rgba(255,255,255,.72); }

.page-hero {
  background:
    linear-gradient(115deg, rgba(7,63,39,.92), rgba(12,107,61,.78)),
    url("../images/hero-home.jpg") center/cover;
  color: white;
  padding: 110px 0 84px;
}
.page-hero .lead { color: rgba(255,255,255,.80); }
.page-hero .eyebrow { color: #d8f1df; }
.product-list { display: grid; gap: 28px; }
.product-detail, .project-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-detail > img, .project-card > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.product-detail > div, .project-content { padding: 34px; }
.product-tag {
  display: inline-flex;
  width: fit-content;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail h2, .project-card h2 { font-size: clamp(27px, 3vw, 38px); margin-top: 14px; }
.product-detail h3 { margin-top: 22px; font-size: 17px; color: var(--green-dark); }
.project-grid { display: grid; gap: 28px; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-gallery-blank {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}
.photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.photo-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 32, 27, .14);
}
.photo-slot {
  aspect-ratio: 4 / 3;
  border: 1px dashed #b9c8bf;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(247,248,246,.92)),
    repeating-linear-gradient(45deg, #eef3ef 0, #eef3ef 10px, #f8faf8 10px, #f8faf8 20px);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.photo-slot:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 32, 27, .14);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(7, 20, 14, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.procurement-notice {
  background: #f2f5f0;
  padding: 18px 0 24px;
  border-bottom: 1px solid var(--line);
}
.notice-date {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 820;
  margin: 0 0 8px;
}
.notice-date-spaced {
  margin-top: 22px;
}
.notice-document {
  background: white;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(23, 32, 27, .10);
  padding: 18px 22px;
  color: #17201b;
  font-size: clamp(10px, .82vw, 12px);
  line-height: 1.33;
}
.notice-image-document {
  padding: 14px;
}
.notice-image-document a {
  display: block;
}
.notice-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.notice-image-document img {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 4px;
}
.notice-document p {
  margin: 0 0 6px;
}
.notice-company {
  display: grid;
  gap: 1px;
  margin-bottom: 8px;
}
.notice-document h2 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  text-align: center;
  margin: 7px 0 9px;
  letter-spacing: .03em;
}
.notice-subtitle {
  text-align: center;
  font-weight: 720;
  max-width: 900px;
  margin: 0 auto 10px !important;
}
.notice-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.notice-document h3 {
  color: var(--green-dark);
  font-size: clamp(11px, .95vw, 13px);
  line-height: 1.1;
  margin: 8px 0 3px;
}
.notice-signature {
  margin-top: 12px !important;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0;
}
.mini-gallery img {
  height: 88px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-weight: 820;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.form-card { padding: 34px; }
form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { color: #26322b; font-weight: 720; }
input, textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ccd8d1;
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfb;
}
input:focus, textarea:focus { outline: 2px solid rgba(12,107,61,.20); border-color: var(--green); }
textarea { min-height: 160px; resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.checkbox input { width: auto; margin-top: 5px; }
.notice {
  background: var(--wood-soft);
  color: #5f513f;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
}
.legal { max-width: 900px; }
.legal h2 { font-size: 30px; margin-top: 42px; }
.legal p { color: #4f5b54; }

.site-footer {
  background: #101713;
  color: #d8e0db;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-brand img {
  width: 235px;
  background: white;
  border-radius: 7px;
  padding: 8px;
  margin-bottom: 18px;
}
.footer-title {
  color: white;
  font-weight: 820;
  margin-bottom: 14px;
}
.site-footer a, .site-footer p {
  display: block;
  color: #d8e0db;
  margin: 0 0 9px;
}
.site-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #2a342e;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  color: #aab6af;
  font-size: 14px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(23,32,27,.22);
  border-radius: 8px;
  padding: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 14px; }
.cookie-banner div { display: flex; align-items: center; gap: 14px; }
.cookie-banner a { color: var(--green); font-weight: 800; }

@media (max-width: 1080px) {
  .nav-wrap { grid-template-columns: 230px auto auto; }
  .nav { gap: 20px; }
  .header-cta { padding: 0 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar-inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .nav-wrap { grid-template-columns: 1fr auto auto; min-height: 74px; }
  .brand img { width: 210px; height: 52px; }
  .menu-button { display: inline-grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 20px 40px rgba(23,32,27,.10);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; }
  .nav a::after { bottom: 8px; transform-origin: left; }
  .split, .contact-grid, .product-detail, .project-card { grid-template-columns: 1fr; gap: 34px; }
  .product-detail > img, .project-card > img { min-height: 280px; }
  .photo-gallery, .photo-gallery-blank { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .hero-slider { min-height: 620px; }
  .hero-content h1 { font-size: 44px; }
  .hero-content p, .lead { font-size: 18px; }
  .section { padding: 68px 0; }
  .notice-image-pair { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .stats-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .photo-gallery, .photo-gallery-blank { grid-template-columns: 1fr; }
  .media-card img { height: 210px; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; }
  .footer-bottom { flex-direction: column; }
}
