body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f4;
  color: #1c2520;
}

.page {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 56px 0 40px;
}

.heroCopy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b24a2f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: #18231d;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  margin: 24px 0 0;
  max-width: 610px;
  color: #46564b;
  font-size: 19px;
  line-height: 1.65;
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #1e3328;
  border-radius: 8px;
  color: #1e3328;
  font-weight: 800;
  text-decoration: none;
}

.actions a:first-child {
  background: #1e3328;
  color: #ffffff;
}

.actions a:last-child {
  background: #ffffff;
}

.productPanel {
  border: 1px solid #d8ded2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(28, 37, 32, 0.12);
  overflow: hidden;
}

.panelHeader,
.addressBlock,
.signalGrid {
  padding: 22px;
}

.panelHeader {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e5e8df;
  background: #eef3e7;
  color: #526150;
  font-size: 14px;
}

.panelHeader strong {
  color: #1e3328;
}

.addressBlock {
  display: grid;
  gap: 8px;
}

.addressBlock span,
.signalGrid span {
  color: #6a746b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.addressBlock strong {
  color: #1c2520;
  font-size: 27px;
  line-height: 1.15;
}

.addressBlock small {
  color: #566258;
  font-size: 15px;
  line-height: 1.55;
}

.signalGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 18px;
  border-top: 1px solid #e5e8df;
}

.signalGrid strong {
  color: #b24a2f;
  text-align: right;
}

.fitSection {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 44px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 72px;
  border-top: 1px solid #d8ded2;
}

.fitSection h2 {
  margin: 0;
  color: #1e3328;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

.fitSection p {
  margin: 16px 0 0;
  color: #4f5d52;
  font-size: 17px;
  line-height: 1.65;
}

.fitSection ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fitSection li {
  padding: 14px 16px;
  border-left: 4px solid #b24a2f;
  background: #ffffff;
  color: #29352d;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .hero,
  .fitSection {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .actions a {
    flex: 1 1 190px;
  }
}
