:root {
  --primary: #3d6b4f;
  --primary-dark: #2e5239;
  --terracotta: #c4654a;
  --gold: #d4a853;
  --gold-light: #f5e6c8;
  --cream: #faf7f2;
  --charcoal: #2c2c2c;
  --charcoal-light: #5c5c5c;
  --stone: #8a8580;
  --sage-light: #e8f0e9;
  --white: #ffffff;
  --border: #e8e2da;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(44, 44, 44, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.5;
}

.page {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  text-align: center;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.glow--gold {
  width: 280px;
  height: 280px;
  background: var(--gold-light);
  top: -40px;
  right: -80px;
}

.glow--sage {
  width: 240px;
  height: 240px;
  background: var(--sage-light);
  bottom: 120px;
  left: -100px;
}

.hero,
.stores,
.footer {
  position: relative;
  z-index: 1;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--gold-light), var(--white));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lede {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  max-width: 36ch;
  margin-inline: auto;
}

.stores {
  margin-top: 40px;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stores h2 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.stores-note {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--stone);
}

.store-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.store-btn:not(.store-btn--soon):hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(61, 107, 79, 0.12);
  transform: translateY(-1px);
}

.store-btn--soon {
  cursor: default;
  opacity: 0.92;
}

.store-label {
  font-size: 0.75rem;
  color: var(--stone);
}

.store-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--primary-dark);
}

.store-btn.is-live .badge {
  display: none;
}

.footer {
  margin-top: 36px;
  font-size: 0.875rem;
  color: var(--charcoal-light);
}

.footer a {
  color: var(--primary);
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-meta {
  margin-top: 12px;
  color: var(--stone);
  font-size: 0.8125rem;
}

@media (min-width: 480px) {
  .store-row {
    flex-direction: row;
  }

  .store-btn {
    flex: 1;
  }
}
