:root {
  --brand-red: #E43D2D;
  --brand-red-dark: #A32A1E;
  --bg: #FFFDF9;
  --surface: #FFFFFF;
  --surface-alt: #FDEEE9;
  --text-primary: #1C1512;
  --text-secondary: #6B6058;
  --border: #F0DFD9;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-red-dark);
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

nav.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

nav.site-nav a:hover {
  color: var(--brand-red);
}

/* Hero */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-red-dark);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--brand-red-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--brand-red);
}

/* Sections */
main {
  padding: 8px 0 64px;
}

section {
  padding: 48px 0;
}

section + section {
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-red-dark);
  margin: 0 0 14px;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

p {
  margin: 0 0 14px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.card {
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 22px;
}

.card-icon {
  width: 26px;
  height: 26px;
  color: var(--brand-red);
  margin-bottom: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0;
}

.callout {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  margin-top: 8px;
}

.callout h2 {
  margin-top: 0;
}

/* Simple page (legal, contact) */
.simple-page h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-red-dark);
  margin: 40px 0 6px;
}

.simple-page .updated {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 30px;
}

.simple-page h2 {
  font-size: 19px;
  margin-top: 32px;
}

.simple-page p, .simple-page li {
  color: var(--text-primary);
  font-size: 15px;
}

.simple-page ul {
  padding-left: 20px;
}

/* Status pages (Stripe redirect) */
.status-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.status-card {
  max-width: 480px;
}

.status-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}

footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

footer.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
}

footer.site-footer a:hover {
  color: var(--brand-red);
}

footer.site-footer .copyright {
  color: var(--text-secondary);
  font-size: 13px;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 30px;
  }
  footer.site-footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
