:root {
  --text: #0b0b0f;
  --muted: #6e6e73;
  --light: #86868b;
  --line: #e5e5e7;
  --link: #0066cc;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 176px;
  max-width: 42vw;
  height: auto;
}

.header-phone {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.header-phone:hover,
.text-link:hover {
  color: var(--link);
}

main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-content: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 8vw, 108px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(54px, 8.8vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.lead {
  max-width: 700px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: #0b0b0f;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.button:hover {
  background: #242428;
}

.text-link {
  color: var(--link);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 112px);
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.info-block h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.info-block p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-row span {
  color: var(--light);
  font-size: 14px;
  font-weight: 500;
}

.contact-row strong,
.contact-row address {
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-row[href]:hover strong {
  color: var(--link);
}

.footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--light);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header,
  main,
  .footer {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding: 22px 0;
  }

  .brand img {
    width: 146px;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 74px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .lead {
    font-size: 20px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 17px 0;
  }
}
