/* Home page specific styles */
.hero {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}

.brand {
  position: relative;
  display: inline-block;
  line-height: 0.9;
}

.vanilla {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 180px);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6),
  4px 4px 4px rgba(0, 0, 0, 0.4),
  8px 8px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.essence {
  position: absolute;
  inset: auto 0 18% 0;
  margin: auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(64px, 10vw, 140px);
  color: var(--accent);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
  3px 3px 3px rgba(0, 0, 0, 0.4),
  6px 6px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(10%);
  white-space: nowrap;
  z-index: 1;
}

.divider {
  width: min(920px, 92%);
  height: 1px;
  background: var(--border);
  margin: 20px auto 26px;
}

.tagline {
  width: min(920px, 92%);
  margin: 0 auto;
  font-size: clamp(13px, 2.4vw, 13px);
  font-weight: 650;
  letter-spacing: 0.02em;
  /*text-transform: uppercase;*/
  color: var(--muted);
}

.counter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 28px;
  flex-wrap: wrap;
}

.slot {
  text-align: center;
}

.num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 70px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 12px;
  min-width: 84px;
  display: inline-block;
}

.lbl {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

footer {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #bdbdbd;
  font-size: 12px;
}
