/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem;
}

.site-header__logo {
  height: 175px;
  width: auto;
  display: block;
}

/* ---------- Layout ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 104px);
}

.hero__content {
  flex: 1 1 420px;
  max-width: 480px;
}

.hero__image-wrap {
  flex: 1 1 460px;
  max-width: 540px;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
.hero__title {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  color: #333333;
}

.hero__address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  color: #1a1a1a;
}

.hero__phone {
  font-size: 1.1rem;
  margin: 0;
  color: #1a1a1a;
}

/* ---------- Responsive breakpoints ---------- */

/* Tablet */
@media (max-width: 900px) {
  .hero {
    gap: 2.5rem;
    padding: 2rem 1rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }
}

/* Mobile: stack content above image */
@media (max-width: 700px) {
  .site-header {
    padding: 1rem 1rem 0 1rem;
  }

  .site-header__logo {
    height: 100px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero__content,
  .hero__image-wrap {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description,
  .hero__address,
  .hero__phone {
    font-size: 1rem;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero__title {
    font-size: 1.65rem;
  }
}