:root {
  --burgundy: #6b2c32;
  --burgundy-dark: #521f24;
  --cream: #f6f0e8;
  --gold: #c9a24a;
  --gold-light: #e2c06a;
  --olive: #6f7445;
  --charcoal: #2f2f2f;
  --white: #ffffff;
  --border: #e5e7eb;
  --error: #b91c1c;
  --success: #15803d;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Brand header (auth + marketing) */
.brand-header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.logo-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
}

.brand-name {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--burgundy);
  line-height: 1;
}

.brand-tagline {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.brand-tagline::before,
.brand-tagline::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

/* Index.html header alias */
header {
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}

.section-title {
  text-align: center;
  color: var(--burgundy);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1.5rem;
}

.journey-banner {
  margin: 2rem auto;
  max-width: 620px;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  text-align: center;
  clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0 50%);
}

.feature-box {
  background: rgba(255, 255, 255, 0.72);
  border: 2px dashed rgba(107, 44, 50, 0.35);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: 4px;
}

.feature-box svg {
  width: 48px;
  height: 48px;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.feature-box .cta {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 700;
  letter-spacing: 0.06em;
}

footer {
  background: var(--burgundy);
  color: var(--white);
  padding: 1.5rem 0;
}

/* Forms & buttons (shared) */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--olive);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  color: var(--charcoal);
}

.form-input:focus {
  outline: 2px solid rgba(201, 162, 74, 0.45);
  border-color: var(--gold);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--olive);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-full {
  width: 100%;
}

.text-link {
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
}

.alert-success {
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.waitlist-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  min-width: 240px;
  flex: 1;
  max-width: 320px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 2px;
  font: inherit;
}

.waitlist-form button {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: var(--gold);
  color: var(--burgundy-dark);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.waitlist-form button:hover {
  background: var(--gold-light);
}

.site-login-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.site-login-link a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
}

.site-login-link a:hover {
  text-decoration: underline;
}
