
:root {
  --bg: #28445c;
  --text: #f2f5fb;
  --muted: #c9d6e8;
  --accent: #dce7f7;
  --radius: 10px;
}

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

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  width: min(1340px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 220px;
  padding-top: 15px;
}

.brand img {
  display: block;
  width: 150px;
  height: 170px;
  object-fit: contain;
  object-position: center top;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 1fr);
  gap: 60px;
  align-items: center;
  flex: 1;
}

.copy {
  max-width: 680px;
  padding-bottom: 15px;
}

.copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.25vw, 37px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.copy h2 {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--muted);
}

.copy p {
  margin: 0 0 22px;
  max-width: 670px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.visual {
  width: 100%;
}

.visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 669;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact {
  text-align: center;
  padding: 28px 0 24px;
}

.contact-title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 20px;
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 1000px) {
  .page {
    width: min(100% - 32px, 760px);
  }

  .brand {
    height: 190px;
  }

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

  .copy {
    max-width: none;
    padding-bottom: 0;
  }

  .visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .contact {
    padding-top: 34px;
  }
}

@media (max-width: 600px) {
  .page {
    width: min(100% - 28px, 560px);
  }

  .brand {
    height: 155px;
    padding-top: 10px;
  }

  .brand img {
    width: 125px;
    height: 140px;
  }

  .hero {
    gap: 26px;
  }

  .copy h1 {
    font-size: 29px;
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .copy h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .copy p {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .visual img {
    border-radius: 8px;
  }

  .contact {
    padding: 28px 0 22px;
  }

  .contact-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .contact-details {
    flex-direction: column;
    gap: 12px;
  }

  .contact-details a {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
