:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5d626b;
  --paper: #f7f5ef;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #2f6f5e;
  --accent-strong: #173f35;
  --signal: #d8503f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(120deg, rgba(47, 111, 94, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(216, 80, 63, 0.12), transparent 34%),
    var(--paper);
}

.page-shell {
  display: grid;
  min-height: 100vh;
}

.intro {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 111, 94, 0.18), transparent 24%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(17, 17, 17, 0.045) 31px,
      rgba(17, 17, 17, 0.045) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(17, 17, 17, 0.035) 31px,
      rgba(17, 17, 17, 0.035) 32px
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2));
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: 0;
}

.content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, 1180px);
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 10vw, 124px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
}

.contacts a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  text-decoration-color: rgba(17, 17, 17, 0.25);
  text-underline-offset: 5px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.contacts a:hover {
  color: var(--accent-strong);
  text-decoration-color: currentColor;
}

.status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding-top: 40px;
  color: var(--muted);
  font-size: 15px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(216, 80, 63, 0.12);
}

@media (max-width: 700px) {
  .brand-mark {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
}
