/* Coming-soon gate — reuses tokens from styles.css */

.cs {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: min(100%, 620px);
  justify-content: center; align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 1.4rem;
  color: var(--cream); text-align: center; overflow: hidden;
}
.cs__media {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/hero.webp") center/cover no-repeat;
  transform: scale(1.05);
}
.cs__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12,40,54,.94) 0%, rgba(12,40,54,.6) 55%, rgba(12,40,54,.4) 100%),
    radial-gradient(120% 90% at 50% 40%, transparent 30%, rgba(12,40,54,.55) 100%);
}
.cs__inner { max-width: 620px; width: 100%; min-width: 0; }

.cs__logo { height: 150px; width: auto; margin: 0 auto 1.6rem; filter: drop-shadow(0 0 6px rgba(255,255,255,.5)); }
.cs__eyebrow { color: var(--cedar); }
.cs__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.85rem, 9vw, 4.6rem); line-height: 1.02; color: var(--cream);
  margin: .6rem 0 1.2rem; letter-spacing: -.02em;
}
.cs__title em { color: var(--cedar); font-style: italic; }
.cs__lede {
  max-width: 46ch; margin: 0 auto 2.4rem;
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(247,240,227,.9);
}

/* Password gate */
.cs__gate {
  background: rgba(247,240,227,.07); border: 1px solid rgba(247,240,227,.16);
  border-radius: var(--radius); padding: 1.6rem; max-width: 440px; margin: 0 auto;
  backdrop-filter: blur(8px);
}
.cs__gatelabel {
  display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(247,240,227,.7); margin-bottom: .8rem;
}
.cs__gaterow { display: flex; gap: .6rem; }
.cs__gaterow input {
  flex: 1; background: rgba(12,40,54,.4); border: 1px solid rgba(247,240,227,.25);
  border-radius: 100px; padding: .85rem 1.2rem; color: var(--cream);
  font-family: var(--font-body); font-size: 1rem; transition: border-color .25s;
}
.cs__gaterow input::placeholder { color: rgba(247,240,227,.45); }
.cs__gaterow input:focus { outline: none; border-color: var(--cedar); }
.cs__gaterow .btn { flex: none; }
.cs__err { min-height: 1.2em; margin-top: .8rem; font-size: .88rem; color: #ffcf9e; }

.cs__contact { margin-top: 2rem; font-size: .92rem; color: rgba(247,240,227,.7); }
.cs__contact a { color: var(--cedar); text-decoration: none; }
.cs__contact a:hover { color: var(--cream); }

@media (max-width: 460px) {
  .cs__gaterow { flex-direction: column; }
  .cs__gaterow .btn { width: 100%; }
}
