/* ===== Yet Another Outfit — Coming Soon ===== */
:root {
  --paper: #faf8f4;
  --ink: #24211c;
  --accent: #cdb38b;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ===== Layout ===== */
.cs {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.cs-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(22,18,13,0.46) 0%, rgba(22,18,13,0.34) 42%, rgba(22,18,13,0.78) 100%),
    url("https://images.unsplash.com/photo-1664662566408-ef40c502a66b?auto=format&fit=crop&w=1600&q=80") center 28% / cover no-repeat;
  transform: scale(1.06);
  animation: slowZoom 16s ease-out forwards;
}
@keyframes slowZoom { to { transform: scale(1); } }

.cs-top,
.cs-inner,
.cs-foot { position: relative; z-index: 1; }

/* ===== Brand ===== */
.brand {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== Center block ===== */
.cs-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 0;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.85);
}

.cs-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 1.4rem;
}
.cs-title em { font-style: italic; color: var(--accent); }

.cs-sub {
  max-width: 44ch;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.9);
  margin-bottom: 2.6rem;
}

/* ===== Signup ===== */
.signup {
  display: flex;
  width: 100%;
  max-width: 440px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.45);
}
.signup input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 0.4rem;
}
.signup input::placeholder { color: rgba(250, 248, 244, 0.55); }
.signup input:focus { outline: none; }
.signup button {
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0.4rem 0 1rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.signup button:hover { color: var(--accent); }

.note {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
}

/* ===== Footer ===== */
.cs-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.8);
}
.cs-foot a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cs-foot a:hover { color: var(--paper); border-color: rgba(250, 248, 244, 0.6); }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 1s var(--ease) forwards;
}
.cs-title.reveal { animation-delay: 0.12s; }
.cs-sub.reveal { animation-delay: 0.24s; }
.signup.reveal { animation-delay: 0.36s; }
.cs-foot.reveal { animation-delay: 0.5s; opacity: 0; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ===== Responsive ===== */
@media (max-width: 560px) {
  .cs-foot { flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
  .cs-top { text-align: center; }
}
