:root {
  --bg-deep: #1b0f08;
  --bg-mid: #3a2313;
  --bg-warm: #6d431f;
  --gold: #e8a53c;
  --gold-light: #f4cf8f;
  --cream: #f6ece0;
  --cream-dim: rgba(246, 236, 224, 0.72);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--cream);
  background: radial-gradient(120% 90% at 50% 8%, var(--bg-warm) 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
  overflow: hidden;
}

.scene {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 5vh, 3rem) 1.5rem clamp(1rem, 3vh, 2rem);
}

.glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 100vw;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(232, 165, 60, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  flex: 1;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.brand-glow-text {
  text-shadow: 0 0 56px rgba(42, 26, 20, 0.8), 0 0 8px rgba(42, 26, 20, 0.45);
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
}

.brand-tagline {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.5;
  color: var(--cream);
  margin: 0.5rem 0 0;
}

.lede {
  margin: clamp(1.25rem, 4vh, 2rem) 0 clamp(1.25rem, 4vh, 2.2rem);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 190px;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(246, 236, 224, 0.22);
  border-radius: 14px;
  background: rgba(246, 236, 224, 0.06);
  color: var(--cream-dim);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
  background: rgba(246, 236, 224, 0.1);
  border-color: rgba(246, 236, 224, 0.32);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--cream-dim);
  flex-shrink: 0;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}

.store-badge__text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream-dim);
  padding-top: clamp(1rem, 3vh, 2rem);
}

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

.site-footer nav a {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 236, 224, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer nav a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.site-footer nav span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

