@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --gold: #D4A017;
  --navy: #2F3443;
  --black: #111111;
  --white: #FFFFFF;
  --muted: #6E7280;
  --soft: #F7F7F8;
  --line: #E9E9EC;
  --shadow: 0 24px 80px rgba(47, 52, 67, .09);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 160, 23, .07), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(47, 52, 67, .05), transparent 32%),
    var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(212, 160, 23, .14);
  border-radius: 50%;
  pointer-events: none;
}

.page-shell::before {
  top: -110px;
  left: -110px;
}

.page-shell::after {
  right: -110px;
  bottom: -110px;
}

.coming-soon {
  width: min(100%, 860px);
  text-align: center;
  padding: 56px 48px 38px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(47, 52, 67, .07);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.brand-logo {
  display: block;
  width: min(100%, 310px);
  height: auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 10px 15px;
  color: var(--navy);
  background: #FBF7EA;
  border: 1px solid rgba(212, 160, 23, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 160, 23, .12);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.lead {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.divider {
  width: 56px;
  height: 3px;
  margin: 32px auto;
  background: var(--gold);
  border-radius: 99px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.contact-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 160, 23, .5);
  box-shadow: 0 12px 30px rgba(47, 52, 67, .08);
}

.icon-wrap {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #FBF7EA;
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 4px;
  color: #8A8D97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.domain {
  display: inline-block;
  margin: 28px 0 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #979AA3;
  font-size: 12px;
}

.footer-separator {
  color: var(--gold);
}

@media (max-width: 760px) {
  .page-shell {
    align-items: flex-start;
    padding: 20px 14px;
  }

  .coming-soon {
    margin: auto 0;
    padding: 38px 20px 28px;
    border-radius: 22px;
  }

  .brand-logo {
    width: min(100%, 250px);
  }

  .status-badge {
    font-size: 12px;
  }

  .lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: 82px;
    text-align: left;
  }

  footer {
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .coming-soon {
    padding-inline: 16px;
  }

  h1 {
    font-size: 36px;
  }

  .status-badge {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
