/* ============================================================
   Coming Soon Service Pages
   ============================================================ */

.page-coming-soon {
  min-height: 100vh;
  background: #071108;
  color: #fffdf8;
}

.page-coming-soon .nav {
  z-index: 20;
}

.coming-soon-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(140px, 15vw, 190px) 0 clamp(64px, 8vw, 104px);
  isolation: isolate;
}

.coming-soon-hero__bg,
.coming-soon-hero__bg img,
.coming-soon-hero__overlay {
  position: absolute;
  inset: 0;
}

.coming-soon-hero__bg {
  z-index: -3;
}

.coming-soon-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-hero--videos .coming-soon-hero__bg img {
  object-position: 50% 46%;
}

.coming-soon-hero--social .coming-soon-hero__bg img {
  object-position: 54% 44%;
}

.coming-soon-hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 22%, rgba(223, 161, 35, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(7, 17, 8, 0.92) 0%, rgba(7, 17, 8, 0.74) 48%, rgba(7, 17, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 17, 8, 0.28) 0%, rgba(7, 17, 8, 0.92) 100%);
}

.coming-soon-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.coming-soon-hero__copy {
  max-width: 760px;
}

.coming-soon-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
}

.coming-soon-hero__status {
  margin: 0 0 14px;
  color: #dfa123;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.coming-soon-hero h1 {
  margin: 0;
  max-width: 10.5ch;
  color: #fffdf8;
  font-family: var(--font-heading);
  font-size: clamp(4.4rem, 10vw, 9.4rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.coming-soon-hero h1 span {
  display: block;
  color: #dfa123;
  font-style: italic;
}

.coming-soon-hero__lede {
  max-width: 58ch;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.coming-soon-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.coming-soon-hero__board {
  display: grid;
  gap: 16px;
}

.coming-soon-board__panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.14) 0%, rgba(255, 253, 248, 0.06) 100%),
    rgba(7, 17, 8, 0.38);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.coming-soon-board__label {
  display: block;
  color: #f2c46a;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon-board__panel strong {
  display: block;
  margin-top: 14px;
  color: #fffdf8;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.coming-soon-board__panel p {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.58;
}

.coming-soon-board__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.coming-soon-board__items span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.84);
  font-weight: 800;
}

.coming-soon-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  background: #071108;
}

.coming-soon-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.coming-soon-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.92rem;
}

.coming-soon-footer__brand img {
  width: 124px;
  height: auto;
}

.coming-soon-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.coming-soon-footer__links a {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coming-soon-footer__links a:hover,
.coming-soon-footer__links a:focus-visible {
  color: #f2c46a;
}

@media (max-width: 980px) {
  .coming-soon-hero__content {
    grid-template-columns: 1fr;
  }

  .coming-soon-hero__copy {
    max-width: 680px;
  }

  .coming-soon-hero__board {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .coming-soon-hero {
    min-height: auto;
    padding: 118px 0 52px;
  }

  .coming-soon-hero__overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 8, 0.68) 0%, rgba(7, 17, 8, 0.94) 70%, #071108 100%);
  }

  .coming-soon-hero h1 {
    max-width: 8.6ch;
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .coming-soon-hero__actions,
  .coming-soon-hero__actions .btn {
    width: 100%;
  }

  .coming-soon-hero__actions .btn {
    justify-content: center;
  }

  .coming-soon-footer__inner,
  .coming-soon-footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .coming-soon-footer__links {
    justify-content: flex-start;
  }
}
