:root {
  --forest: #153f27;
  --leaf: #52672c;
  --moss: #9dad82;
  --soil: #7a4c26;
  --cream: #f7f6e8;
  --paper: #fcfbf1;
  --surface: #ffffff;
  --text: #2d3428;
  --muted: #68705e;
  --line: #dedfc7;
  --shadow: 0 20px 55px rgba(33, 55, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  padding: 28px;
  background: var(--forest);
  color: white;
}

.brand img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 8px;
  background: var(--cream);
}

nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

nav a:hover {
  color: var(--moss);
}

main {
  margin-left: 260px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: clamp(26px, 5vw, 70px);
  min-height: 100vh;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(140deg, rgba(247, 246, 232, 0.98), rgba(221, 227, 198, 0.84)),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(21, 63, 39, 0.07) 120px 121px);
}

.hero-copy {
  max-width: 780px;
}

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

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

h1 {
  margin-bottom: 22px;
  color: var(--forest);
  font-size: clamp(3.4rem, 10vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--forest);
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--forest);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 900;
}

.hero-card span:last-child {
  border-bottom: 0;
}

.intro,
.mission,
.catalog,
.value,
.contact {
  padding: clamp(56px, 8vw, 98px) clamp(20px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(26px, 5vw, 76px);
  background: var(--surface);
}

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

.copy-block {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

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

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

.mission article {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mission p,
.catalog-grid p,
.value-rows p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.catalog-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(33, 55, 28, 0.06);
}

.catalog-grid article:nth-child(2n) {
  border-top: 6px solid var(--moss);
}

.catalog-grid article:nth-child(2n + 1) {
  border-top: 6px solid var(--leaf);
}

.value {
  background: var(--forest);
  color: white;
}

.value h2,
.value h3,
.value .section-kicker {
  color: white;
}

.value-rows {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.value-rows article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.value-rows strong {
  color: var(--moss);
  font-size: 2.4rem;
  line-height: 1;
}

.value-rows p {
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  background: var(--surface);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card p {
  margin: 0;
}

.contact-card strong {
  display: block;
  color: var(--leaf);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-card a,
.contact-card span {
  color: var(--forest);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .sidebar {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
  }

  nav a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  main {
    margin-left: 0;
  }

  .hero,
  .intro,
  .mission,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .sidebar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .catalog-grid article {
    min-height: auto;
  }

  .value-rows article {
    grid-template-columns: 1fr;
  }
}
