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

body {
  background:
    radial-gradient(circle at 82% 18%, rgba(12, 74, 68, 0.10), transparent 30%),
    linear-gradient(135deg, #f7f3ec 0%, #ffffff 55%, #edf4f1 100%);
  color: #071421;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.card {
  width: 100%;
  max-width: 820px;
  padding: 82px 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 20, 33, 0.06);
  box-shadow: 0 40px 120px rgba(7, 20, 33, 0.05);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  border: 1px solid rgba(12, 74, 68, 0.18);
  color: #063f3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

.eyebrow {
  color: #0f766e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 34px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 750;
  margin-bottom: 34px;
  color: #071421;
}

.description {
  max-width: 650px;
  margin: 0 auto;
  color: #52616f;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

.divider {
  width: 72px;
  height: 1px;
  background: #c8b48a;
  margin: 42px auto;
}

.phone-link {
  color: #063f3a;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
}

.phone-link:hover {
  color: #071421;
}

@media (max-width: 768px) {

  .coming-soon {
    padding: 24px;
  }

  .card {
    padding: 52px 28px;
  }

  h1 {
    font-size: 3.2rem;
    letter-spacing: -2px;
  }

  .description {
    font-size: 15px;
    line-height: 1.9;
  }

  .eyebrow {
    letter-spacing: 2px;
  }
}