:root {
  --navy: #052a4e;
  --navy-deep: #031a31;
  --gold: #b67a12;
  --red: #9f161c;
  --paper: #fbf8ef;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  background: var(--paper);
  color: var(--navy-deep);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 88%, rgba(182, 122, 18, .11), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e3 100%);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(182, 122, 18, .27);
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  top: -22vw;
  right: -15vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(182, 122, 18, .2);
  box-shadow: 0 0 0 40px rgba(182, 122, 18, .035),
              0 0 0 100px rgba(5, 42, 78, .025);
}

.ambient-two {
  bottom: -20vw;
  left: -25vw;
  width: 50vw;
  height: 50vw;
  background: rgba(5, 42, 78, .04);
}

.hero {
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: auto;
  grid-template-columns: minmax(330px, .84fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
}

.brand-panel::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 30px 90px rgba(3, 26, 49, .10);
}

.logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.content { max-width: 650px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5.6vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

h1 span { color: var(--red); }

.intro {
  max-width: 590px;
  margin: 30px 0 25px;
  color: #52606d;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(182, 122, 18, .13);
  animation: pulse 2s ease-in-out infinite;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(5, 42, 78, .25);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 2px;
  transition: color .2s ease, border-color .2s ease;
}

.contact > span:first-child {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact:hover { color: var(--red); border-color: var(--red); }
.arrow { font-size: 22px; transition: transform .2s ease; }
.contact:hover .arrow { transform: translateX(5px); }

footer {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 36px;
  color: rgba(5, 42, 78, .66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes pulse {
  50% { transform: scale(.78); opacity: .65; }
}

@media (max-width: 820px) {
  .coming-soon { padding: 45px 30px 28px; }
  .coming-soon::before { inset: 10px; }
  .hero { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .brand-panel { width: min(310px, 80vw); margin: 0 auto; }
  .content { margin: 0 auto; }
  .eyebrow { margin-bottom: 14px; }
  h1 { font-size: clamp(38px, 11vw, 60px); }
  .intro { margin: 22px auto 20px; }
  .status, .contact { margin-left: auto; margin-right: auto; }
  .status { margin-bottom: 22px; }
  footer { padding-top: 38px; }
}

@media (max-width: 480px) {
  .coming-soon { padding-inline: 24px; }
  .brand-panel { width: min(250px, 76vw); }
  .contact { gap: 8px; font-size: 14px; }
  .contact > span:first-child { display: none; }
  footer { flex-wrap: wrap; gap: 8px; }
}

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