* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f5f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 600;
}

p {
  margin: 0 0 0.9em;
}

a {
  color: inherit;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #14342e;
  color: #f7f5f0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #f7f5f0;
}

.brand__name {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.brand__tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.65);
}

.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(247, 245, 240, 0.85);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover {
  background: rgba(247, 245, 240, 0.12);
  color: #f7f5f0;
}

.nav-toggle {
  display: none;
}

.hero {
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06), transparent 45%), linear-gradient(160deg, #14342e 0%, #0f231f 100%);
  color: #f7f5f0;
  padding: 88px 0 96px;
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 28px;
  max-width: 760px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(247, 245, 240, 0.6);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  max-width: 16ch;
}

.hero p.lede {
  font-size: 1.08rem;
  color: rgba(247, 245, 240, 0.82);
  max-width: 60ch;
}

.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}
.hero__pillars li {
  font-size: 0.85rem;
  padding: 7px 14px;
  border: 1px solid rgba(247, 245, 240, 0.25);
  border-radius: 999px;
  color: rgba(247, 245, 240, 0.85);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.btn--solid {
  background: #c97a1f;
  color: #241300;
  box-shadow: 0 6px 18px rgba(201, 122, 31, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(247, 245, 240, 0.35);
  color: #f7f5f0;
}

.category {
  padding: 84px 0;
  border-bottom: 1px solid #e2ddd3;
}

.category__head {
  max-width: 720px;
  margin: 0 0 42px;
}

.category__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.category__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.category__lead {
  color: #4b5157;
  font-size: 1.02rem;
  max-width: 62ch;
}

.category--chem {
  background: #eaf2ee;
}
.category--chem .category__kicker {
  background: rgba(60, 110, 88, 0.14);
  color: #3c6e58;
}

.category--plast {
  background: #eaf1f8;
}
.category--plast .category__kicker {
  background: rgba(44, 92, 134, 0.14);
  color: #2c5c86;
}

.category--solar {
  background: #fbf0e0;
}
.category--solar .category__kicker {
  background: rgba(201, 122, 31, 0.16);
  color: rgb(156.8146551724, 95.1810344828, 24.1853448276);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20, 20, 15, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .product-card:hover {
    box-shadow: 0 10px 28px rgba(20, 20, 15, 0.12);
    transform: translateY(-3px);
  }
}

.product-card__media {
  aspect-ratio: 4/3;
  background: #f7f5f0;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5157;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.035), rgba(0, 0, 0, 0.035) 10px, transparent 10px, transparent 20px), #f7f5f0;
  text-align: center;
  padding: 16px;
}

.product-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__body h3 {
  font-size: 1.08rem;
}

.product-card__body p {
  font-size: 0.92rem;
  color: #4b5157;
  margin-bottom: 0.6em;
}

.product-card__text p:last-child {
  margin-bottom: 0;
}

.product-card__note {
  font-size: 0.78rem;
  font-weight: 600;
  color: #c97a1f;
}

.product-card__text {
  overflow: hidden;
  max-height: 4.4rem;
}
@media (prefers-reduced-motion: no-preference) {
  .product-card__text {
    transition: max-height 0.25s ease;
  }
}

.product-card.is-expanded .product-card__text {
  max-height: 2000px;
}

.product-card__toggle {
  align-self: flex-start;
  margin-top: 2px;
  padding: 0;
  border: none;
  background: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: #3c6e58;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s ease;
}
.product-card__toggle:hover, .product-card__toggle:focus-visible {
  text-decoration-color: currentColor;
}

.category--plast .product-card__toggle {
  color: #2c5c86;
}

.category--solar .product-card__toggle {
  color: rgb(156.8146551724, 95.1810344828, 24.1853448276);
}

.product-card__diagrams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.product-card__diagrams img {
  border-radius: 8px;
  border: 1px solid #e2ddd3;
}

.product-card__diagrams figcaption {
  font-size: 0.72rem;
  color: #4b5157;
  text-align: center;
  margin-top: 4px;
}

.product-card--wide {
  grid-column: span 2;
}
@media (max-width: 640px) {
  .product-card--wide {
    grid-column: span 1;
  }
}
.product-card--wide .product-card__media {
  aspect-ratio: 16/7;
}

.service-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #ffffff;
  border-radius: 18px;
  border-left: 5px solid #c97a1f;
  box-shadow: 0 2px 10px rgba(20, 20, 15, 0.06);
  padding: 26px 30px;
  flex-wrap: wrap;
}

.service-banner__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 122, 31, 0.14);
  color: rgb(165.6517241379, 100.5448275862, 25.5482758621);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner__content {
  flex: 1 1 320px;
}

.service-banner__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b5157;
  margin-bottom: 6px;
}

.service-banner__content h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.service-banner__content p {
  font-size: 0.92rem;
  color: #4b5157;
  margin: 0;
  max-width: 60ch;
}

.service-banner__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(201, 122, 31, 0.4);
  color: rgb(147.9775862069, 89.8172413793, 22.8224137931);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.service-banner__cta:hover {
  background: rgba(201, 122, 31, 0.1);
  border-color: #c97a1f;
}

@media (max-width: 560px) {
  .service-banner {
    padding: 22px;
  }
  .service-banner__cta {
    white-space: normal;
  }
}
section {
  scroll-margin-top: 40px;
}

.contact {
  padding: 88px 0 96px;
  background: #14342e;
  color: #f7f5f0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact__kicker {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 240, 0.6);
  margin-bottom: 14px;
}

.contact h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 18px;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.contact-list__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.contact-list__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 240, 0.55);
  margin-bottom: 2px;
}

.contact-list__value {
  color: rgba(247, 245, 240, 0.92);
  font-size: 0.98rem;
}

.contact-list__value a {
  text-decoration: underline;
  text-decoration-color: rgba(247, 245, 240, 0.4);
}

.contact-note {
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.6);
  border-top: 1px solid rgba(247, 245, 240, 0.16);
  padding-top: 18px;
}

.contact-form {
  background: #ffffff;
  color: #1b1d1f;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(20, 20, 15, 0.12);
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.contact-form__required {
  font-size: 0.8rem;
  color: #4b5157;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field .req {
  color: #b5443a;
}

.field input[type=text],
.field input[type=email],
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid #e2ddd3;
  background: #f7f5f0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  color: #1b1d1f;
}
.field input[type=text]:focus,
.field input[type=email]:focus,
.field textarea:focus {
  outline: 2px solid #3c6e58;
  outline-offset: 1px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.field--checkbox input {
  width: 17px;
  height: 17px;
}

.field--captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2ddd3;
  border-radius: 8px;
  padding: 14px 16px;
  background: #f7f5f0;
}
.field--captcha input {
  width: 18px;
  height: 18px;
}
.field--captcha span {
  font-size: 0.88rem;
}

.contact-form button {
  margin-top: 6px;
}

.site-footer {
  background: #0f231f;
  color: rgba(247, 245, 240, 0.55);
  font-size: 0.85rem;
  padding: 24px;
  text-align: center;
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
  }
  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
  }
  .main-nav a {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  .hero {
    padding: 64px 0 72px;
  }
  .category {
    padding: 56px 0;
  }
  .contact {
    padding: 56px 0 72px;
  }
}/*# sourceMappingURL=styles.css.map */