* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #222;
  background: #f3f3f3;
  line-height: 1.5;
}

a {
  color: #4b7693;
  text-decoration: none;
}

.hero {
  max-width: 980px;
  margin: 6px auto 0;
  padding: 0 20px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(220px, 315px) 1fr;
  gap: 42px;
  align-items: center;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c8092;
}

.hero-title-block h1 {
  margin: 0 0 8px;
  font-size: clamp(1.95rem, 4vw, 2.95rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f2d3a;
}

.hero-specialty,
.hero-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #5c6e7d;
}

.hero-specialty {
  font-size: 1.08rem;
  font-weight: 600;
  color: #3c5063;
}

.hero-subtitle {
  max-width: 32ch;
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #7b8c9a;
}

.hero-frame {
  border: 1px solid #d8dde3;
  border-radius: 14px;
  overflow: hidden;
  background: #d7dee6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding-right: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #dde4ea;
  font-size: 0.86rem;
  color: #708190;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.contacts {
  padding: 18px 20px 60px;
}

.contacts-inner {
  max-width: 540px;
  margin: 0 auto;
}

.contact-block + .contact-block {
  margin-top: 20px;
}

.contact-block h2 {
  margin: 0 0 6px;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.contact-block p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #555;
}

@media (max-width: 640px) {
  .hero {
    margin: 12px 12px 0;
    padding: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-frame {
    width: min(100%, 268px);
    margin: 0 auto;
  }

  .hero-copy {
    align-items: center;
    padding-right: 0;
    text-align: center;
  }

  .hero-title-block h1 {
    font-size: 1.34rem;
  }

  .hero-specialty {
    font-size: 0.88rem;
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .hero-meta {
    justify-content: center;
    margin-top: 12px;
    gap: 10px;
    padding-top: 10px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .contact-block h2 {
    font-size: 1.22rem;
  }
}
