/* Bakata — landing waitlist v0 · 31 ago 2026 */
:root {
  --olive: #3d4f2f;
  --olive-deep: #2a3620;
  --bone: #f2ebe0;
  --amber: #c4893a;
  --amber-soft: #e8c48a;
  --ink: #1c1a16;
  --muted: #5c574e;
  --flash-ok: #2f5d3a;
  --flash-err: #8b3a2f;
  --radius: 2px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background: var(--bone);
  position: relative;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(196, 137, 58, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(61, 79, 47, 0.22), transparent 50%),
    linear-gradient(165deg, #ebe4d6 0%, var(--bone) 45%, #e4ddd0 100%);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from { filter: hue-rotate(0deg) saturate(1); }
  to { filter: hue-rotate(8deg) saturate(1.05); }
}

.site-header {
  padding: 1.25rem 1.5rem 0;
  max-width: 72rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.15s;
}

main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.hero {
  min-height: min(88vh, 52rem);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 4rem;
}

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

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--olive-deep);
  opacity: 0;
  animation: rise 1s ease forwards 0.25s;
}

.brand-sub {
  margin: 0.4rem 0 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  opacity: 0;
  animation: rise 1s ease forwards 0.4s;
}

.manifesto-short {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  opacity: 0;
  animation: rise 1s ease forwards 0.55s;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
  opacity: 0;
  animation: rise 1s ease forwards 0.7s;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  opacity: 0;
  animation: rise 1s ease forwards 0.85s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--olive);
  color: var(--bone);
  border-color: var(--olive);
}

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

.btn-ghost {
  background: transparent;
  color: var(--olive-deep);
  border-color: rgba(61, 79, 47, 0.35);
}

.section {
  padding: 3.5rem 0 1rem;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.is-visible {
  opacity: 1;
  transform: none;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--olive-deep);
}

.section-lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.plain-list,
.intent-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.intent-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(61, 79, 47, 0.15);
}

.intent-list li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--olive);
}

blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--olive-deep);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(61, 79, 47, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  font: inherit;
  color: var(--ink);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: 2px solid var(--amber-soft);
  outline-offset: 1px;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
}

.check input {
  margin-top: 0.25rem;
}

.flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.flash-ok {
  background: rgba(47, 93, 58, 0.12);
  color: var(--flash-ok);
}

.flash-error {
  background: rgba(139, 58, 47, 0.12);
  color: var(--flash-err);
}

.site-footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid rgba(61, 79, 47, 0.15);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 0.5rem;
}

.legal {
  max-width: 36rem;
}

.meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 78vh;
    padding-top: 2rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
