* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", sans-serif;
  background-color: #121212;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header,
.site-footer {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.catchphrase {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.image-gallery {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  max-height: 30vh;
}

.contact-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.icon-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 400;
  transition: color 0.3s ease, transform 0.2s ease;
}

.cta-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.icon-cta:hover {
  color: #e6c26f;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .site-header,
  .site-footer {
    padding: 0.7rem;
  }

  .catchphrase {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .image-gallery {
    gap: 0.25rem;
    padding: 0.5rem;
  }

  .image-container img {
    max-height: 22vh;
  }

  .contact-ctas {
    flex-direction: column;
    gap: 0.8rem;
  }

  .icon-cta {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
  }

  .cta-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}
