:root {
  --color-graphite: #1c211f;
  --color-graphite-soft: #303833;
  --color-forest: #5f7f52;
  --color-forest-dark: #38533f;
  --color-mist: #f6f3eb;
  --color-paper: #fffdf7;
  --color-line: rgba(28, 33, 31, 0.14);
  --color-muted: #6f756e;
  --shadow-soft: 0 24px 70px rgba(28, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--color-graphite);
  background: var(--color-mist);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page-shell {
  min-height: calc(100vh - 58px);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(246, 243, 235, 0.96) 0%, rgba(246, 243, 235, 0.84) 48%, rgba(31, 47, 39, 0.92) 100%),
    radial-gradient(circle at 72% 34%, rgba(126, 160, 106, 0.36), transparent 34%),
    #f6f3eb;
}

.hero__background {
  position: absolute;
  inset: auto -8% -28% 38%;
  height: 72%;
  background:
    linear-gradient(145deg, transparent 0 29%, rgba(31, 47, 39, 0.22) 30% 31%, transparent 32%),
    linear-gradient(18deg, transparent 0 38%, rgba(95, 127, 82, 0.18) 39% 41%, transparent 42%),
    linear-gradient(160deg, transparent 0 34%, rgba(255, 253, 247, 0.5) 35% 36%, transparent 37%);
  transform: skewY(-8deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 46px 0 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.brand__mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(28, 33, 31, 0.16);
  border-radius: 50%;
  color: var(--color-paper);
  background: var(--color-graphite);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__name,
.brand__legal,
.eyebrow,
.section-kicker,
.status-badge,
.footer__inner p {
  margin: 0;
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
}

.brand__legal {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 13px;
}

.hero__content {
  max-width: 760px;
  margin-top: 96px;
}

.eyebrow,
.section-kicker {
  color: var(--color-forest-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 18px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: #373d38;
  font-size: 21px;
}

.description {
  max-width: 660px;
  margin: 24px 0 0;
  color: #4e554f;
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 33, 31, 0.22);
  border-radius: 6px;
  padding: 13px 18px;
  color: var(--color-graphite);
  background: rgba(255, 253, 247, 0.72);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(56, 83, 63, 0.58);
  background: var(--color-paper);
  transform: translateY(-1px);
}

.button--primary {
  border-color: var(--color-forest-dark);
  color: var(--color-paper);
  background: var(--color-forest-dark);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-forest);
}

.info-section {
  padding: 72px 0 84px;
  background:
    linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 54%, #ece8dd 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.panel {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  min-height: 100%;
}

.status-panel {
  color: var(--color-paper);
  background:
    linear-gradient(135deg, rgba(35, 45, 39, 0.96), rgba(23, 30, 27, 0.98)),
    var(--color-graphite);
}

.status-panel p {
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: #dfe8d8;
  font-size: 13px;
  font-weight: 700;
}

.requisites-panel {
  grid-column: 1 / -1;
}

.contact-list,
.requisites-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.requisites-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-list div,
.requisites-list div {
  min-width: 0;
}

dt {
  color: var(--color-muted);
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 700;
}

dd a {
  text-decoration-color: rgba(95, 127, 82, 0.44);
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 253, 247, 0.76);
  background: #161c19;
}

.footer__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-bottom: 70px;
  }

  .hero__content {
    margin-top: 72px;
  }

  .lead {
    font-size: 19px;
  }

  .info-grid,
  .requisites-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero__inner {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .brand__name {
    font-size: 16px;
  }

  .hero__content {
    margin-top: 58px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .info-section {
    padding: 46px 0 56px;
  }

  .panel {
    padding: 22px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
