/* ========== BRAND VARIABLES ========== */
:root {
  --emerald: #0f3d2e;        /* Deep Emerald */
  --ivory: #f6f3ee;          /* Soft Ivory */
  --muted: #d6d0c7;          /* Warm muted text */
  --rose-gold: #c8a97e;      /* Subtle accent */
}

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

/* ========== BASE ========== */
body {
  background-color: var(--emerald);
  color: var(--ivory);
  font-family: "Lora", serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 32px 20px;
  text-align: center;
}

/* ========== HERO ========== */
.hero {
  margin-bottom: 36px;
}

.brand {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.category {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--muted);
}

.divider {
  width: 56px;
  height: 1px;
  background-color: var(--rose-gold);
  margin: 20px auto;
}

.tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ivory);
}

/* ========== MESSAGE ========== */
.message {
  margin-bottom: 28px;
}

.message p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ========== PROMISE ========== */
.promise p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ivory);
}

/* ========== FOOTER ========== */
.footer {
  margin-top: 48px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========== DESKTOP REFINEMENT ========== */
@media (min-width: 768px) {
  .container {
    max-width: 480px;
  }

  .brand {
    font-size: 2.6rem;
  }
}
