:root {
  --gold: #d7ad4c;
  --gold-light: #f4d982;
  --silver: #c9cbd0;
  --ink: #060606;
  --muted: #a7a5a0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
}

body {
  color: #f6f2e9;
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px 34px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(145deg, #030303 0%, #0a0a09 52%, #020202 100%);
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(215, 173, 76, 0.13);
  content: "";
  pointer-events: none;
}

.coming-soon::after {
  inset: 28px;
  border-color: rgba(201, 203, 208, 0.06);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
}

.ambient-gold { top: -300px; left: -220px; background: #c89221; }
.ambient-silver { right: -270px; bottom: -320px; background: #a8b0bc; }

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.content {
  width: min(100%, 720px);
  padding: 24px 0 104px;
  text-align: center;
}

.logo-wrap {
  position: relative;
  width: min(78vw, 380px);
  margin: 0 auto 12px;
}

.logo-halo {
  position: absolute;
  inset: 18% 16%;
  border-radius: 50%;
  background: rgba(209, 164, 52, 0.12);
  filter: blur(38px);
}

.brand-logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.65));
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(290px, 62vw);
  margin: 0 auto 28px;
  color: var(--gold);
  font-size: 8px;
}

.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 76, 0.8));
}

.divider span:last-child {
  background: linear-gradient(90deg, rgba(215, 173, 76, 0.8), transparent);
}

.divider i { margin: 0 14px; font-style: normal; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #fff 15%, #d8d9dc 45%, #f7e6ad 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 580px;
  margin: 20px auto 28px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  line-height: 1.8;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(215, 173, 76, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d7d4cc;
  font-size: 12px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.2s infinite;
}

footer {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  text-align: center;
  color: #5f5e5b;
  font-size: 10px;
  letter-spacing: 0.1em;
}

footer p { margin: 0; }

.motto {
  margin-bottom: 8px;
  color: #a88a48;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.motto i { margin: 0 11px; color: #767676; font-style: normal; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 217, 130, 0.4); }
  50% { box-shadow: 0 0 0 7px rgba(244, 217, 130, 0); }
}

@media (max-height: 800px) and (min-width: 620px) {
  .logo-wrap { width: 285px; }
  .content { padding-bottom: 78px; }
  .divider { margin-bottom: 18px; }
  .intro { margin-top: 14px; margin-bottom: 20px; }
}

@media (max-width: 600px) {
  .coming-soon { padding: 30px 28px 28px; }
  .coming-soon::before { inset: 12px; }
  .coming-soon::after { inset: 17px; }
  .content { padding: 12px 0 110px; }
  .logo-wrap { width: min(86vw, 330px); }
  .intro { line-height: 1.65; }
  .status { padding: 0 15px; font-size: 10px; letter-spacing: 0.045em; }
  footer { bottom: 30px; }
}

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