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

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.hero {
  margin-bottom: 2rem;
}

.logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
}

.headline {
  margin: 0 0 0.75rem;
  font-family: "Anton", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1197d6;
}

.intro {
  margin-bottom: 2.5rem;
}

.tagline {
  margin: 0 0 1rem;
  font-family: "Anton", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c17e78;
}

.intro p {
  margin: 0;
  max-width: 36ch;
  margin-inline: auto;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location {
  margin-bottom: 2.5rem;
}

address {
  font-style: normal;
  line-height: 1.7;
}

.socials {
  margin-bottom: 2rem;
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-links a {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: #1197d6;
  color: #fff;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #0d7fb5;
}

.footer {
  padding-top: 1.5rem;
  border-top: 3px solid #c17e78;
}

.footer p {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c17e78;
}

.seo-text {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.seo-text p {
  margin: 0;
  max-width: 42ch;
  margin-inline: auto;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #555;
}

@media (max-width: 480px) {
  .page {
    padding-top: 1.75rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-links a {
    width: 100%;
    max-width: 220px;
  }
}
