:root {
  --ink: #101820;
  --paper: #f7f3ea;
  --muted: #6f716f;
  --line: rgba(16, 24, 32, 0.14);
  --green: #2f6f63;
  --gold: #c6a35b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% 0 7% 42%;
  border: 1px solid var(--line);
  border-radius: 999px 0 0 999px;
  pointer-events: none;
}

.hero__visual {
  aspect-ratio: 1;
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 111, 99, 0.15), rgba(198, 163, 91, 0.1)),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.78), transparent 34%),
    var(--white);
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(16, 24, 32, 0.16);
}

.hero__visual::after {
  content: "АС";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 14vw, 178px);
  letter-spacing: 0;
  color: var(--ink);
}

.hero__visual span {
  position: absolute;
  display: block;
  background: var(--green);
}

.hero__visual span:nth-child(1) {
  width: 36%;
  height: 12px;
  left: 0;
  top: 22%;
}

.hero__visual span:nth-child(2) {
  width: 12px;
  height: 42%;
  right: 24%;
  bottom: 0;
  background: var(--gold);
}

.hero__visual span:nth-child(3) {
  width: 44%;
  height: 44%;
  right: -18%;
  top: -18%;
  border-radius: 50%;
  background: rgba(47, 111, 99, 0.12);
}

.hero__content {
  position: relative;
  z-index: 1;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 116px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 32px 0 0;
  max-width: 620px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.note {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 820px) {
  .page {
    place-items: start;
    padding: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 24px 0 54px;
  }

  .hero::before {
    inset: 18% -22px auto 34%;
    height: 56%;
  }

  .hero__visual {
    width: min(320px, 76vw);
  }

  h1 {
    font-size: clamp(52px, 17vw, 84px);
  }

  .lead {
    font-size: 23px;
  }
}
