/* ===== evolve — coming soon page =====
   Palette pulled from the evolve label + hero photography:
   warm cream background, taupe/brown wordmark, deep bronze accent. */

:root {
  --color-bg: #f2ece2;
  --color-bg-alt: #e9e0d2;
  --color-text: #3d362c;
  --color-text-muted: #8a7b68;
  --color-accent: #a9927a;
  --color-accent-dark: #5f5344;
  --color-border: #d8cbb6;
  --color-cream: #f7f3ec;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --tracking-wide: 0.14em;
  --tracking-mid: 0.06em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- shared section label style (rhode-style bold caps) ---------- */

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dark);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .hero__video {
    object-fit: contain;
  }
}

/* ---------- available markets ---------- */

.markets {
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}

.markets .section-label {
  display: block;
  margin-bottom: 2.5rem;
}

.markets__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 6vw, 4rem);
  flex-wrap: wrap;
}

.market {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.market__flag {
  width: clamp(96px, 14vw, 140px);
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(61, 54, 44, 0.18);
  border: 1px solid var(--color-border);
}

.market__name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mid);
  color: var(--color-text-muted);
}

/* ---------- stay informed ---------- */

.notify {
  background: var(--color-bg-alt);
  padding: 4.5rem 1.5rem 5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.notify__subtext {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.notify__form {
  margin: 2.25rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 460px;
}

.notify__row {
  display: flex;
  gap: 0.6rem;
}

.notify__field {
  flex: 1 1 0;
}

.notify__field .notify__input {
  width: 100%;
}

.notify__input {
  padding: 0.95rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify__input::placeholder {
  color: var(--color-text-muted);
}

.notify__input:focus {
  border-color: var(--color-accent-dark);
}

.notify__button {
  flex: 0 0 auto;
  padding: 0.95rem 2rem;
  background: var(--color-accent-dark);
  color: var(--color-cream);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.notify__button .btn-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.notify__button:hover {
  background: #4b4136;
}

.notify__button:active {
  transform: scale(0.98);
}

.notify__button:disabled {
  opacity: 0.6;
  cursor: default;
}

.notify__message {
  margin-top: 1.1rem;
  min-height: 1.2em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.notify__message.is-error {
  color: #a14b3f;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--color-bg-alt);
}

.site-footer p {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mid);
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .notify__row {
    flex-direction: column;
  }
}
