:root {
  --ink: #171837;
  --muted: #5f675b;
  --leaf: #87971e;
  --leaf-dark: #5f6d16;
  --brand-blue: #304694;
  --field: #edf4e6;
  --sun: #f2b441;
  --water: #2f91b8;
  --paper: #fbfcf7;
  --line: #dce5d7;
  --shadow: 0 18px 50px rgba(24, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

main {
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 247, 0.9);
  border-bottom: 1px solid rgba(220, 229, 215, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 21vw, 285px);
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 4vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--brand-blue);
}

.header-action,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  background: var(--brand-blue);
  color: white;
}

.header-action svg,
.primary-button svg,
.contact-form button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(24px, 6vw, 70px);
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 64px) 36px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 23, 15, 0.82) 0%, rgba(10, 23, 15, 0.56) 42%, rgba(10, 23, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(24, 33, 27, 0.42), rgba(24, 33, 27, 0.05) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: white;
}

.hero-quote {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-quote strong {
  color: var(--ink);
  font-size: 1.3rem;
}

.hero-quote span {
  color: var(--muted);
}

.hero-quote a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-blue);
  color: white;
  font-weight: 800;
}

.hero-quote a:last-child {
  background: var(--leaf);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11.5em;
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.primary-button {
  background: var(--brand-blue);
  color: white;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(680px, calc(100% - 36px));
  background: rgba(251, 252, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats span {
  min-height: 86px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stats span + span {
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}

.section,
.feature-band,
.contact-section {
  padding: 84px clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: white;
}

.about-band,
.process-section,
.service-section {
  padding: 84px clamp(18px, 5vw, 64px);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #eef3e7;
}

.about-band p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-band img {
  width: 100%;
  height: min(430px, 52vw);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.banner-section {
  background: #f7faf1;
}

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

.promo-banner {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.promo-banner div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(23, 24, 55, 0.08), rgba(23, 24, 55, 0.78));
}

.promo-banner h2,
.promo-banner p {
  margin: 0;
}

.promo-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.promo-banner p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.promo-banner a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--sun);
  color: #201709;
  font-weight: 900;
}

.section-kicker {
  color: var(--leaf);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child,
.contact-section p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: white;
  color: var(--brand-blue);
  border: 1px solid var(--line);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-details p {
  margin: 0;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--leaf);
  color: white;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.products {
  background: var(--field);
}

.categories {
  background: white;
}

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

.category-card,
.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 33, 27, 0.07);
}

.category-card img,
.product-image,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.category-card img {
  height: 220px;
}

.category-card div {
  padding: 22px;
}

.category-card h3,
.category-card p {
  margin: 0;
}

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

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

.product-card {
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 33, 27, 0.07);
}

.product-image {
  height: 180px;
  width: calc(100% + 48px);
  margin: -24px -24px 20px;
}

.product-card small {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #e6f3ec;
  color: var(--brand-blue);
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-card h3 {
  margin: 24px 0 10px;
  font-size: 1.24rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  background: var(--leaf-dark);
  color: white;
}

.process-section {
  background: white;
}

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

.process-grid article,
.service-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--leaf);
  font-size: 1.8rem;
  font-weight: 900;
}

.process-grid h3,
.service-grid h3 {
  margin: 0 0 8px;
}

.process-grid p,
.service-grid p {
  margin: 0;
  color: var(--muted);
}

.service-section {
  background: var(--ink);
  color: white;
}

.service-section .section-kicker {
  color: #c7d86a;
}

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

.service-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-band .section-kicker {
  color: #aad9bd;
}

.benefits {
  display: grid;
  gap: 12px;
}

.benefits div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.use-cases {
  background: white;
}

.gallery-section {
  background: #f7faf1;
}

.catalog-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 64px);
  background: var(--brand-blue);
  color: white;
}

.catalog-section .section-kicker {
  color: #d9e784;
}

.catalog-section h2,
.catalog-section p {
  margin: 0;
}

.catalog-section p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.catalog-section a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--sun);
  color: #201709;
  font-weight: 900;
  white-space: nowrap;
}

.gallery-grid img {
  height: 260px;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  font-weight: 800;
}

.use-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.use-list span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  font-weight: 800;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
  background: #f7faf1;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-form > p {
  margin: -4px 0 4px;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd9c7;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--water);
  outline: 3px solid rgba(47, 145, 184, 0.18);
}

.contact-form button {
  border: 0;
  padding: 0 18px;
  background: var(--brand-blue);
  color: white;
  cursor: pointer;
  font: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer span:first-child {
  color: white;
  font-weight: 800;
}

@media (max-width: 980px) {
  .product-grid,
  .category-grid,
  .gallery-grid,
  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-stats,
  .intro,
  .about-band,
  .catalog-section,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding: 70px 18px 22px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 15vw, 4.1rem);
  }

  .hero-stats,
  .product-grid,
  .use-list,
  .category-grid,
  .gallery-grid,
  .banner-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section,
  .about-band,
  .catalog-section,
  .process-section,
  .service-section,
  .feature-band,
  .contact-section {
    padding: 58px 18px;
  }

  .process-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}
