:root {
  --ink: #141817;
  --muted: #727875;
  --paper: #f6f6f2;
  --line: #d9dcd8;
  --accent: #2e7469;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.site-shell {
  display: flex;
  width: min(100%, 1180px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 30px clamp(22px, 6vw, 80px) 26px;
  flex-direction: column;
}
.topbar,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.monogram {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.hero {
  display: flex;
  min-height: 68svh;
  padding: clamp(90px, 15vh, 170px) 0 80px;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 11vw, 132px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .92;
}
.full-name {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.roles {
  display: flex;
  margin-top: 58px;
  gap: clamp(24px, 5vw, 70px);
  flex-wrap: wrap;
}
.roles p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
}
.contacts {
  display: flex;
  margin-top: 56px;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.contacts a {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.contact-static {
  padding-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}
.contacts a:hover,
.contacts a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}
.contacts a span,
.contact-static span {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 400;
}
.about {
  display: grid;
  padding: clamp(64px, 10vw, 120px) 0;
  grid-template-columns: minmax(120px, 1fr) 3fr;
  gap: clamp(36px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}
.about h2 {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 68px);
}
.about-text p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}
footer { padding-top: 22px; }

@media (max-width: 680px) {
  .site-shell { padding: 22px 18px 20px; }
  .hero { min-height: auto; padding: 110px 0 66px; }
  h1 { font-size: clamp(58px, 19vw, 88px); }
  .roles { margin-top: 46px; flex-direction: column; gap: 8px; }
  .contacts { margin-top: 44px; flex-direction: column; gap: 18px; align-items: flex-start; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-text { grid-template-columns: 1fr; gap: 24px; }
  footer { align-items: flex-start; gap: 10px; flex-direction: column; }
}
