/* Marevai — Coming Soon. Self-contained: no dependency on the main app's
   design system, though the palette and type are the same (see
   ../../docs/blueprint.md Sections 02–03) so the two never look related.

   Deliberately one committed look (a campaign photo, dark scrim, light
   type) rather than a light/dark OS-theme swap — this is a single teaser
   moment, not an app surface someone lives in, so it doesn't need to
   answer to prefers-color-scheme the way the main site does. */

@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo-variable.woff2') format('woff2');
}

:root {
  --ivory: #FAF7EF;
  --ink: #15130E;
  --text: #FDFCF9;
  --text-muted: rgba(253, 252, 249, 0.82);
  --gold: #E4C477;
  --gold-ink: #8A6428;
  --line: rgba(253, 252, 249, 0.38);
  --danger: #E8A38F;
  --good: #A9CBAE;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink); /* shows for an instant before the photo paints, and behind it at any viewport wider/taller than the image */
  color: var(--text);
  font-family: 'Archivo', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  line-height: 1.6;
  position: relative;
}

.bg-photo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Same fix as the homepage hero: anchored low so the shoes are in
     frame instead of just her face — this is a shoe brand's teaser page. */
  object-position: 40% 90%;
  z-index: -2;
}

.scrim {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 19, 14, 0.66) 0%, rgba(21, 19, 14, 0.58) 45%, rgba(21, 19, 14, 0.74) 100%);
  z-index: -1;
}

.page {
  max-width: 460px;
  text-align: center;
}

.monogram-plate {
  display: inline-block;
  background: #FAF7EF;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(21, 19, 14, 0.15);
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
}
.monogram { display: block; width: 84px; height: auto; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.wordmark {
  display: block; /* it's a <span> in the markup — without this it sits inline next to the monogram plate instead of stacking below it */
  font-family: 'Cormorant', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.75rem;
  color: var(--text);
}

h1 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 1.5rem + 2vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-wrap: balance;
  color: var(--text);
}

p { margin: 0 0 1.75rem; color: var(--text-muted); font-size: 1rem; }

form { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; }

input[type="email"] {
  flex: 1 1 220px;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  background: rgba(253, 252, 249, 0.1);
  backdrop-filter: blur(6px);
  color: var(--text);
}
input[type="email"]::placeholder { color: var(--text-muted); }
input[type="email"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

button {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9em 1.6em;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--ivory);
  cursor: pointer;
}
button:hover { background: var(--gold); border-color: var(--gold); }

.notice { font-size: 0.88rem; margin-bottom: 1.25rem; }
.notice.ok { color: var(--good); }
.notice.error { color: var(--danger); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

footer { margin-top: 2.5rem; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.03em; }
