:root {
  --gold: #c9a84c;
  --gold-light: #efd987;
  --teal: #0b4b4b;
  --teal-deep: #073535;
  --white: #ffffff;
  --ivory: #fbf8f1;
}

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

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

body {
  margin: 0;
  background: var(--teal-deep);
  color: var(--white);
  font-family: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--ivory);
  color: var(--teal-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 22px),
    linear-gradient(125deg, var(--teal-deep), var(--teal) 68%, #12605d);
  background-size: 22px 22px, auto;
}

.coming-soon::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(70vw, 870px);
  height: min(70vw, 870px);
  right: -30vw;
  bottom: -38vw;
  border: 1px solid rgba(239, 217, 135, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 5vw rgba(239, 217, 135, 0.035),
    0 0 0 10vw rgba(239, 217, 135, 0.025),
    0 0 0 15vw rgba(239, 217, 135, 0.015);
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.glow-one {
  width: 38rem;
  height: 38rem;
  top: -23rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(239, 217, 135, 0.22), transparent 68%);
}

.glow-two {
  width: 32rem;
  height: 32rem;
  bottom: -23rem;
  left: -14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 70%);
}

.rings {
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  left: -9rem;
  top: 40%;
  border: 1px solid rgba(239, 217, 135, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(239, 217, 135, 0.03), 0 0 0 5rem rgba(239, 217, 135, 0.02);
}

.topbar {
  width: min(1200px, 100%);
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mini-wordmark {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.topbar > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  width: min(900px, 100%);
  margin: auto;
  padding: clamp(4rem, 10vh, 8rem) 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: clamp(1.5rem, 5vw, 3.2rem);
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 11vw, 8.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

h1 em {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 600;
}

.lead {
  margin: clamp(2rem, 5vw, 3.2rem) auto 0.4rem;
  color: rgba(255, 255, 255, 0.91);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.4;
}

.note {
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.call-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--teal-deep);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(1, 28, 28, 0.25);
  transition: transform 180ms ease, background-color 180ms ease;
}

.call-button:hover {
  transform: translateY(-2px);
  background: #f6e7ad;
}

.call-button:focus-visible,
.mini-wordmark:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

footer {
  width: min(1200px, 100%);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.gold-line {
  width: 2rem;
  height: 1px;
  background: rgba(239, 217, 135, 0.6);
}

@media (max-width: 620px) {
  .coming-soon {
    padding-inline: 1rem;
  }

  .topbar {
    min-height: 78px;
  }

  .topbar > span {
    max-width: 8rem;
    text-align: right;
  }

  .hero {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3.8rem, 22vw, 6.2rem);
  }

  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.14em;
  }

  footer {
    min-height: 88px;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .gold-line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
