:root {
  --black: #111111;
  --gray: #666a73;
  --line: #e7e7e9;
  --soft: #f7f7f8;
  --white: #ffffff;
  --red: #c8102e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 20;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}
.skip:focus { top: 12px; }
header { border-bottom: 1px solid var(--line); }
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}
.brand span { color: var(--red); font-size: 12px; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--gray); font-size: 13px; font-weight: 750; text-decoration: none; }
.nav-links a:hover { color: var(--black); }
main { min-height: calc(100vh - 145px); padding: 76px 0 90px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
}
.content { margin-top: 48px; display: grid; gap: 16px; }
.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.panel h2 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.03em; }
.panel p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.75; }
.panel p + p { margin-top: 12px; }
.panel a { font-weight: 800; text-decoration: none; }
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wide { grid-column: 1 / -1; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.note { margin-top: 18px; color: var(--gray); font-size: 12px; line-height: 1.65; }
footer { padding: 28px 0; border-top: 1px solid var(--line); }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--gray);
  font-size: 12px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.footer-links a { font-weight: 750; text-decoration: none; }

@media (max-width: 700px) {
  .wrap { width: min(100% - 28px, 900px); }
  .nav { min-height: 66px; align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .nav-links { flex-wrap: wrap; gap: 12px 16px; }
  main { padding: 58px 0 68px; }
  h1 { font-size: clamp(40px, 13vw, 56px); }
  .lead { font-size: 16px; }
  .content { margin-top: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .button { width: 100%; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
