:root {
  --olive: #5b6b3f;
  --olive-dark: #45512f;
  --copper: #b5651d;
  --copper-light: #d98a3d;
  --cream: #f6f1e7;
  --ink: #2a2a22;
  --ink-soft: #5a5a4c;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(91, 107, 63, 0.08), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(181, 101, 29, 0.10), transparent 45%);
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
}

.logo {
  height: clamp(220px, 26vw, 360px);
  width: auto;
  display: block;
  animation: fade-down 0.7s ease both;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-text {
  animation: fade-up 0.8s 0.1s ease both;
  text-align: center;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

h1 {
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.02;
  color: var(--olive-dark);
  letter-spacing: -0.01em;
}

.tagline {
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 32rem;
}

.hero-animation {
  animation: fade-up 0.8s 0.2s ease both;
  display: flex;
  justify-content: center;
}

#lottie-container {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1000 / 566;
}

.foot {
  animation: fade-up 0.8s 0.3s ease both;
  text-align: center;
}

.foot p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .hero-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .logo {
    order: 1;
  }

  .hero-animation {
    order: 2;
  }

  .tagline {
    margin-inline: auto;
  }
}
