:root {
  --bg: #f4f1ea;
  --bg-elevated: #fffdf8;
  --bg-soft: #e6eee9;
  --ink: #1b2420;
  --ink-muted: #5a675f;
  --ink-faint: #7d877f;
  --brand: #0e5c4f;
  --brand-deep: #0a4339;
  --brand-soft: #d5e7e1;
  --cta: #c24a1c;
  --cta-hover: #a33d16;
  --cta-ink: #fffdf9;
  --success: #1b7a52;
  --error: #b42318;
  --line: #d8d2c6;
  --font: "Plus Jakarta Sans", "Noto Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-pill: 999px;
  --shadow: 0 12px 40px rgba(27, 36, 32, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) clamp(1.25rem, 4vw, 3rem) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.brand-word {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.locale {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: var(--space-7);
  flex: 1;
  align-items: center;
  padding: clamp(2.5rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem) var(--space-6);
}

.hero-copy {
  max-width: 38rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-5);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

h1 {
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lede {
  max-width: 32rem;
  margin: var(--space-5) 0 var(--space-6);
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 400;
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--bg-elevated);
}

.waitlist input {
  width: 100%;
  min-height: 48px;
  padding: 0 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.waitlist input::placeholder {
  color: var(--ink-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-primary {
  background: var(--cta);
  color: var(--cta-ink);
}

.btn-primary:hover {
  background: var(--cta-hover);
}

.note {
  min-height: 1.25rem;
  margin-top: var(--space-3);
  color: var(--success);
  font-size: 0.9rem;
}

.note.error {
  color: var(--error);
}

.price-hint {
  margin-top: var(--space-4);
  color: var(--ink-faint);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.art {
  width: min(100%, 26rem);
  height: auto;
}

.moments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) var(--space-6);
}

.moments span {
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) clamp(1.25rem, 4vw, 3rem) var(--space-6);
  border-top: 1px solid var(--line);
}

.footer p:first-child {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer p:last-child {
  color: var(--ink-faint);
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 4rem;
    padding-top: 6vh;
  }

  .waitlist {
    flex-direction: row;
    align-items: center;
    max-width: 28rem;
    border-radius: var(--r-pill);
  }

  .waitlist input {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
