:root {
  --warm: #E8573A;
  --cream: #FFF8F0;
  --dark: #2D2A26;
  --muted: #8C8279;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

nav {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}

.lang {
  padding: 6px 14px;
  border: 1.5px solid var(--dark);
  border-radius: 20px;
  background: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.2s;
}

.lang:hover {
  background: var(--dark);
  color: var(--cream);
}

main {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  text-align: center;
  padding: 0 24px;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--warm);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Steam animation */
.steam {
  display: flex;
  justify-content: center;
  gap: 8px;
  height: 60px;
}

.steam span {
  width: 3px;
  height: 30px;
  background: var(--muted);
  border-radius: 3px;
  opacity: 0.3;
  animation: rise 2s ease-in-out infinite;
}

.steam span:nth-child(2) { animation-delay: 0.4s; height: 40px; }
.steam span:nth-child(3) { animation-delay: 0.8s; height: 25px; }

@keyframes rise {
  0%, 100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) scaleY(1.3);
    opacity: 0.15;
  }
}

footer {
  flex-shrink: 0;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}
