:root {
  color-scheme: light;
  --wine: #6f1735;
  --wine-dark: #471022;
  --rose: #a85972;
  --cream: #fbf6f4;
  --gold: #bd935a;
  --text: #4a3640;
  --muted: #7e6972;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(189, 147, 90, .13), transparent 28rem),
    radial-gradient(circle at 92% 92%, rgba(111, 23, 53, .10), transparent 30rem),
    var(--cream);
}

.coming-soon {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 42px 22px;
  overflow: hidden;
  position: relative;
}

.coming-soon::before,
.coming-soon::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(189, 147, 90, .2);
  border-radius: 50%;
  pointer-events: none;
}

.coming-soon::before {
  top: -180px;
  right: -80px;
}

.coming-soon::after {
  bottom: -210px;
  left: -65px;
}

.content {
  width: min(100%, 680px);
  text-align: center;
  animation: reveal .7s ease-out both;
}

.logo {
  display: block;
  width: min(84vw, 420px);
  height: auto;
  margin: 0 auto 25px;
}

.divider {
  width: 110px;
  height: 14px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(189, 147, 90, .58);
}

.divider span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.message {
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: clamp(.97rem, 2.4vw, 1.08rem);
  line-height: 1.75;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

.contact-button {
  min-width: 180px;
  min-height: 52px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.contact-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-button svg .filled {
  fill: currentColor;
  stroke: none;
}

.contact-button.whatsapp {
  color: #fff;
  background: var(--wine);
}

.contact-button:hover {
  color: #fff;
  background: var(--wine-dark);
  box-shadow: 0 10px 25px rgba(71, 16, 34, .2);
  transform: translateY(-2px);
}

.contact-button:focus-visible {
  outline: 3px solid rgba(189, 147, 90, .55);
  outline-offset: 4px;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 450px) {
  .contact-links {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
  }

  .message br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }

  .contact-button {
    transition: none;
  }
}
