:root {
  --bg: #ffffff;
  --hero-bg: #eae5df;
  --text: #000000;
  --font: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  background: #fff;
  min-height: 80px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 12px 40px;
}

.site-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 20px;
  line-height: 1.25;
  text-align: right;
}

.site-contacts a:hover {
  opacity: 0.7;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.social-links img,
.social-links svg {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hero {
  background: var(--hero-bg);
  min-height: min(100vh, 1600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  width: min(121%, 1600px);
  max-width: none;
  object-fit: cover;
}

.about {
  padding: 60px 20px;
}

.about__inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
}

.about__inner p {
  margin: 0 0 1em;
}

.about__inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header__inner {
    padding: 16px 20px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-header__right {
    width: 100%;
    justify-content: space-between;
  }

  .site-contacts {
    font-size: 16px;
    align-items: flex-start;
    text-align: left;
  }

  .hero {
    min-height: 55vh;
  }

  .hero__image {
    width: 100%;
  }

  .about {
    padding: 40px 20px 60px;
  }

  .about__inner {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    font-size: 18px;
  }

  .site-contacts {
    font-size: 14px;
  }
}
