/* Pre-launch splash styling — shared by /coming-soon and /notified.
   Standalone: does not depend on global.css (no nav/footer chrome here). */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--pp-ink, #0a0907);
  color: var(--pp-bone, #faf5ea);
  font-family: var(--pp-font-body, Inter, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.cs {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vw, 88px) clamp(20px, 5vw, 48px);
  overflow: hidden;
}
.cs__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center 55%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: cs-drift 26s ease-in-out infinite alternate;
}
@keyframes cs-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(0, -1.4%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cs__photo { animation: none; }
}
.cs__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(239, 203, 135, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.80) 0%, rgba(10, 9, 7, 0.62) 42%, rgba(10, 9, 7, 0.92) 100%);
}

.cs__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  text-align: center;
}

.cs__mark {
  width: clamp(88px, 14vw, 132px);
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  margin: 0 auto 26px;
  display: block;
}

.cs__kicker {
  display: inline-block;
  font-size: clamp(10px, 2.4vw, 11.5px);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pp-honey, #efcb87);
  padding: 7px 16px;
  border: 1px solid rgba(239, 203, 135, 0.34);
  border-radius: 999px;
  background: rgba(10, 9, 7, 0.34);
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

.cs__wordmark {
  font-family: var(--pp-font-display, Fraunces, Georgia, serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 11vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--pp-bone, #faf5ea);
  margin: 0;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.cs__legal-name {
  font-size: clamp(9.5px, 2.2vw, 11px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #cfc2a0;
  margin: 14px 0 0;
}

.cs__tagline {
  font-family: var(--pp-font-display, Fraunces, Georgia, serif);
  font-style: italic;
  font-size: clamp(19px, 4.4vw, 27px);
  color: var(--pp-honey, #efcb87);
  margin: 30px 0 0;
  line-height: 1.25;
}

.cs__body {
  font-size: clamp(14.5px, 3.1vw, 16.5px);
  line-height: 1.65;
  color: #e8e0cc;
  margin: 20px auto 0;
  max-width: 52ch;
}

/* ---- email capture ---- */
.cs__form {
  margin: 38px auto 0;
  max-width: 480px;
}
.cs__form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cfc2a0;
  margin-bottom: 12px;
}
.cs__form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cs__form-row input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--pp-bone, #faf5ea);
  background: rgba(250, 245, 234, 0.09);
  border: 1px solid rgba(250, 245, 234, 0.26);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: border-color 180ms ease, background 180ms ease;
}
.cs__form-row input::placeholder { color: rgba(232, 224, 204, 0.55); }
.cs__form-row input:focus {
  outline: none;
  border-color: var(--pp-honey, #efcb87);
  background: rgba(250, 245, 234, 0.14);
}
.cs__form-row button {
  flex: 0 0 auto;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-bone, #faf5ea);
  background: var(--pp-terracotta, #a6432c);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.cs__form-row button:hover {
  background: var(--pp-terracotta-2, #873321);
  transform: translateY(-1px);
}
.cs__form-fine {
  font-size: 12px;
  color: #a89e88;
  margin: 12px 0 0;
}

/* ---- contact ---- */
.cs__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 46px;
  margin: 42px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(250, 245, 234, 0.16);
}
.cs__contact span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a89e88;
  margin-bottom: 6px;
}
.cs__contact a {
  font-family: var(--pp-font-display, Fraunces, Georgia, serif);
  font-style: italic;
  font-size: clamp(15px, 3.4vw, 18px);
  color: var(--pp-bone, #faf5ea);
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 203, 135, 0.4);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
  overflow-wrap: anywhere;
}
.cs__contact a:hover {
  color: var(--pp-honey, #efcb87);
  border-color: var(--pp-honey, #efcb87);
}

.cs__foot {
  font-size: 11.5px;
  color: #8a8172;
  margin: 34px 0 0;
  line-height: 1.6;
}
