* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, #FFF7D7 0%, #FFE3D9 100%);
  font-family: 'Poppins', sans-serif;
  color: #525252;
}

.content {
  width: min(960px, 100%);
  text-align: center;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  width: 340px;
  max-width: 100%;
  height: auto;
}

.divider {
  width: 100%;
  height: 4px;
  margin: 40px auto;
  background-color: #A7753F;
  border-radius: 2px;
}

h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: #505B60;
}

.contact-grid {
  margin: 48px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: left;
}

.contact-card {
  font-size: 18px;
  font-weight: 500;
}

.contact-card p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #8B5F34;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.contact-card strong {
  color: #505B60;
}

.coming-soon {
  margin: 0;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8B5F34;
}

@media (max-width: 767px) {
  body {
    padding: 60px 20px;
  }

  .logo img {
    width: 247px;
  }

  h1 {
    font-size: 26px;
  }

  .contact-grid {
    margin: 32px 0;
    gap: 24px;
  }

  .divider {
    margin: 24px auto;
  }

  .coming-soon {
    font-size: 24px;
  }
}
