:root {
  --navy: #062a49;
  --deep-navy: #031c31;
  --ocean: #1f6c9d;
  --seafoam: #8fc5d8;
  --sand: #ead6b2;
  --wheat: #b98145;
  --bread: #8a4a20;
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --ink: #173048;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(143, 197, 216, 0.28), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(234, 214, 178, 0.45), transparent 35%),
    linear-gradient(145deg, #fffdf8 0%, #f4efe5 48%, #edf6f8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  height: 7px;
  z-index: 10;
}

body::before {
  top: 0;
  background: linear-gradient(90deg, var(--navy), var(--ocean), var(--wheat), var(--navy));
}

body::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--wheat), var(--navy), var(--ocean), var(--wheat));
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 20px;
}

.coming-soon-card {
  width: min(980px, 100%);
  text-align: center;
  padding: 34px 34px 28px;
  border: 1px solid rgba(6, 42, 73, 0.14);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 26px 70px rgba(3, 28, 49, 0.13);
  backdrop-filter: blur(8px);
}

.logo-wrap {
  width: min(560px, 100%);
  margin: 0 auto;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  mix-blend-mode: multiply;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(460px, 85%);
  margin: 18px auto 22px;
  color: var(--wheat);
}

.divider span:not(.diamond) {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--wheat));
}

.divider span:last-child {
  background: linear-gradient(90deg, var(--wheat), transparent);
}

.diamond {
  font-size: 11px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 690px;
  margin: 22px auto 24px;
  color: #3d566c;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(31, 108, 157, 0.24);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(143, 197, 216, 0.15);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wheat);
  box-shadow: 0 0 0 rgba(185, 129, 69, 0.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(185, 129, 69, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(185, 129, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 129, 69, 0); }
}

.coastal-line {
  margin: 28px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bread);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.coastal-line i {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--seafoam);
}

.tagline {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(6, 42, 73, 0.1);
  color: #6a7d8d;
  font-size: 0.76rem;
}

footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 24px 12px;
  }

  .coming-soon-card {
    padding: 20px 18px 22px;
    border-radius: 20px;
  }

  .logo {
    border-radius: 14px;
  }

  .divider {
    margin-top: 12px;
  }

  .intro {
    line-height: 1.65;
  }

  .coastal-line {
    gap: 8px;
    letter-spacing: 0.1em;
  }

  .coastal-line i {
    width: 18px;
  }
}
