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

:root {
  --ink: #101010;
  --paper: #f9f2e4;
  --accent: #3f5a34;
}

body {
  font-family: 'Space Mono', monospace;
  color: var(--ink);
  background: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}

/* --- image side --- */

.hero-image {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
  transform: scale(1.15);
  display: block;
}

/* --- content side --- */

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4.5rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid var(--ink);
  width: fit-content;
  margin-bottom: 1.75rem;
}

h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 2rem;
  max-width: 38ch;
}

/* --- key facts --- */

.key-facts {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.key-facts li {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.key-facts li.dot {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* --- form --- */

.waitlist-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 460px;
  border: 2px solid var(--ink);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}

.waitlist-form input::placeholder {
  color: #8a8a8a;
}

.waitlist-form button {
  padding: 1rem 1.5rem;
  border: none;
  border-left: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--accent);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-height: 1.2rem;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.legal-links a {
  font-size: 0.75rem;
  color: #6a6a6a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-links a:hover {
  color: var(--ink);
}

/* --- legal pages --- */

.legal-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  line-height: 1.7;
}

.legal-page a.back {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--ink);
}

.legal-page h1 {
  font-size: 2rem;
  text-transform: none;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  margin-top: 2.25rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.legal-page .placeholder {
  background: #fff3cd;
  padding: 0 0.3rem;
}

@media (max-width: 900px) {
  html, body {
    height: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-image {
    min-height: 0;
    height: 43vh;
    height: 43dvh;
  }

  .hero-content {
    padding: 1.45rem 1.5rem 1.5rem;
    justify-content: flex-start;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
  }

  .hero-content > p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .key-facts {
    flex-wrap: wrap;
    row-gap: 0.5rem;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .key-facts li {
    font-size: 0.7rem;
  }

  .waitlist-form input,
  .waitlist-form button {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }

  .form-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
  }
}
