/* Radiant Entertainment — apex coming-soon page */

:root {
  --bg: #0a0a0a;
  --ink: #f3efe6;
  --muted: #b8b0a2;
  --gold: #c4a574;
  --gold-soft: #d4bc8e;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  overflow-x: hidden;
  background-color: #000;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-contrast: more) {
  :root {
    --gold: #e0c08a;
    --muted: #d4cdc2;
  }

  :focus-visible {
    outline-width: 3px;
  }
}

.skip {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--bg);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.85rem;
}

.skip:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

h1,
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

/* Full-viewport composition */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 2rem 1.25rem 4.5rem;
  overflow: hidden;
  text-align: center;
}

@supports (contain: paint) {
  .hero {
    contain: paint;
  }
}

.hero__media {
  position: absolute;
  inset: -8%;
  background-color: #000;
  background-image: url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  width: 100%;
  animation: rise 1s var(--ease) both;
}

.brand-mark {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.status {
  margin: 1.75rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__rule {
  display: block;
  width: 2rem;
  height: 1px;
  margin: 1.5rem auto 0;
  border: 0;
  background: rgba(196, 165, 116, 0.55);
}

.hero h1 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 1.5rem 0 0;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.lede {
  margin: 1.35rem auto 0;
  color: var(--muted);
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2.25rem;
}

.text-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: #e0c08a;
  border-color: #e0c08a;
}

.site-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.7rem clamp(1.25rem, 4vw, 2.75rem) 0.85rem;
  text-align: center;
}

.site-credit .service-area-seo {
  margin: 0 0 0.55rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.45;
  color: rgba(184, 176, 162, 0.45);
}

.site-credit p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 176, 162, 0.65);
}

.site-credit a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2%, -1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__media {
    transform: none !important;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 2.5rem clamp(1.25rem, 4vw, 2.75rem) 5rem;
  }
}
