:root {
  --green-950: #071d17;
  --green-900: #0a2b22;
  --green-800: #10382d;
  --green-700: #174838;
  --wood: #c49359;
  --wood-dark: #8b6034;
  --paper: #f6f1e8;
  --ink: #15201b;
  --muted: #66736c;
  --line: rgba(196, 147, 89, 0.32);
  --shadow: 0 22px 70px rgba(4, 18, 14, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 10px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(7, 29, 23, 0.83);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(86px, 8.5vw, 118px);
  height: auto;
  padding: 8px;
  background: rgba(246, 241, 232, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav a:hover,
.header-action:hover {
  color: #fff;
}

.header-action {
  justify-self: end;
  padding: 11px 16px;
  color: var(--green-950);
  background: var(--wood);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 23, 0.96), rgba(7, 29, 23, 0.72) 42%, rgba(7, 29, 23, 0.18)),
    linear-gradient(0deg, rgba(7, 29, 23, 0.94), rgba(7, 29, 23, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(58px, 9vw, 110px) clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 8vw, 98px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 850;
}

.button.primary {
  color: var(--green-950);
  background: var(--wood);
  border-color: var(--wood);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-900);
  color: #fff;
}

.trust-band article {
  padding: clamp(22px, 4vw, 44px);
  background: var(--green-800);
}

.trust-band span,
.steps span {
  color: var(--wood);
  font-weight: 950;
}

.trust-band strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.trust-band p,
.steps p,
.product-card p,
.intro p,
.contact p {
  color: var(--muted);
}

.trust-band p {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

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

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  background: #fffaf1;
  border: 1px solid rgba(21, 32, 27, 0.1);
  box-shadow: 0 14px 34px rgba(7, 29, 23, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card div {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
}

.product-card h3,
.steps h3 {
  font-size: clamp(22px, 3vw, 30px);
}

.product-card p,
.steps p,
.intro p {
  margin: 0;
  font-size: 16px;
}

.product-card span {
  align-self: end;
  width: fit-content;
  padding-top: 12px;
  color: var(--wood-dark);
  border-top: 2px solid var(--line);
  font-size: 14px;
  font-weight: 850;
}

.process {
  border-top: 1px solid rgba(21, 32, 27, 0.12);
}

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

.steps article {
  padding: clamp(22px, 3vw, 32px);
  background: var(--green-900);
  color: #fff;
  box-shadow: var(--shadow);
}

.steps p {
  color: rgba(255, 255, 255, 0.68);
}

.catalog-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--green-950);
}

.catalog-strip img {
  width: 100%;
  height: 34vw;
  min-height: 280px;
  max-height: 460px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.contact-panel a {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 850;
}

.contact-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 29, 23, 0.96), rgba(7, 29, 23, 0.32)),
      linear-gradient(90deg, rgba(7, 29, 23, 0.92), rgba(7, 29, 23, 0.28));
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    margin-left: 18px;
  }

  .trust-band,
  .intro,
  .product-grid,
  .steps,
  .catalog-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .catalog-strip img {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 78px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 76px;
    padding: 6px;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .button {
    width: 100%;
  }
}
