:root {
  --ink: #17211f;
  --muted: #5c6965;
  --line: #dbe3df;
  --paper: #f6f4ef;
  --white: #ffffff;
  --green: #1f6f58;
  --green-dark: #154d3f;
  --red: #b33a32;
  --steel: #456f8f;
  --gold: #b28a43;
  --shadow: 0 18px 45px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 239, 0.9);
  border-bottom: 1px solid rgba(219, 227, 223, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.header-action,
.nav,
.button,
.contact-line {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
}

.nav {
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--green-dark);
}

.header-action {
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 7px;
  font-weight: 700;
}

.header-action svg,
.button svg,
.service-card svg,
.contact-line svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 23, 21, 0.82) 0%, rgba(14, 23, 21, 0.61) 41%, rgba(14, 23, 21, 0.17) 78%),
    linear-gradient(0deg, rgba(14, 23, 21, 0.34), rgba(14, 23, 21, 0.02) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(58px, 10vh, 104px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f2c56d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.quote-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--paper);
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services,
.fit,
.proof,
.why {
  background: var(--white);
}

.contrast {
  background: #edf2ef;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.why-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 32px;
  color: var(--green);
}

.why-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.why-grid p {
  color: var(--muted);
}

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.contrast-grid article {
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contrast-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.contrast-grid p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.service-card,
.category-grid article,
.proof-grid article,
.fit-panel,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 220px;
  padding: 26px;
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--green);
}

.service-card h3,
.fit-panel h3,
.timeline h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.service-card p,
.category-grid p,
.proof-grid p,
.timeline p,
.fit-panel li,
.quote-copy p {
  color: var(--muted);
}

.categories {
  background: var(--paper);
}

.category-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.category-grid article {
  min-height: 260px;
  padding: 26px;
}

.category-grid span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--gold);
  font-weight: 900;
}

.category-grid h3,
.proof-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.factory-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
  margin-bottom: 16px;
}

.factory-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.factory-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.factory-gallery figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-grid article {
  min-height: 230px;
  padding: 26px;
}

.proof-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 32px;
  color: var(--green);
}

.process {
  background: #edf2ef;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline li {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.timeline span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--gold);
  font-weight: 900;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.fit-panel {
  padding: 30px;
}

.fit-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--paper);
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-copy p {
  max-width: 520px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.contact-line {
  gap: 10px;
  margin-top: 28px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-line + .contact-line {
  margin-top: 12px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

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

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

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfb;
  font-weight: 500;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(31, 111, 88, 0.18);
  border-color: var(--green);
}

.form-output {
  min-height: 28px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    margin-top: 130px;
  }

  .trust-strip,
  .intro,
  .why-grid,
  .contrast-grid,
  .service-grid,
  .category-grid,
  .proof-grid,
  .timeline,
  .fit-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-copy {
    position: static;
  }
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(112px, 14vw, 170px) clamp(18px, 5vw, 70px) clamp(58px, 8vw, 96px);
  background: var(--paper);
}

.catalog-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  line-height: 1;
}

.catalog-hero-copy p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.catalog-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.catalog-section {
  background: var(--white);
}

.outdoor-catalog {
  background: #edf2ef;
}

.catalog-intro {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

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

.product-card img,
.placeholder-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.product-card img {
  object-fit: cover;
}

.product-card div:not(.placeholder-icon) {
  padding: 22px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

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

.placeholder-icon {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(31, 111, 88, 0.14), rgba(69, 111, 143, 0.12)),
    var(--paper);
}

.placeholder-icon svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.catalog-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: var(--green-dark);
  color: var(--white);
}

.catalog-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.04;
}

.catalog-cta .eyebrow {
  color: #f2c56d;
}

.catalog-cta .button.primary {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--green-dark);
}

@media (max-width: 940px) {
  .catalog-hero,
  .factory-gallery,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-cta {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    width: 100%;
  }

  .header-action {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(14, 23, 21, 0.89) 0%, rgba(14, 23, 21, 0.64) 58%, rgba(14, 23, 21, 0.16) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
  }

  h1 {
    font-size: 2.58rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
