@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500&display=swap');

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

:root {
  --amber:        #E89B2C;
  --amber-dark:   #855300;
  --amber-light:  #FDF0D8;
  --bg:           #FAF8F3;
  --card:         #FFFFFF;
  --text:         #1B1B1A;
  --text-mid:     #4A4845;
  --text-muted:   #7A7874;
  --border:       #EAE6DE;
  --dark:         #141210;
  --dark-mid:     #2A2520;
  --max:          720px;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── HEADER ─────────────────────────────────────── */

.site-header {
  background: var(--dark);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,155,44,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,155,44,0.12);
  border: 1px solid rgba(232,155,44,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 28px;
}

.brand-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.brand-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.site-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.header-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.site-header .meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.site-header .meta strong {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ── PROMISE BANNER ─────────────────────────────── */

.promise-banner {
  background: var(--amber);
  padding: 20px 28px;
  text-align: center;
}

.promise-banner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  max-width: var(--max);
  margin: 0 auto;
}

/* ── MAIN ───────────────────────────────────────── */

main {
  padding: 56px 24px 80px;
}

.content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── CARDS ──────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
}

.card.highlight {
  background: var(--amber-light);
  border-color: rgba(232,155,44,0.35);
  box-shadow: 0 1px 4px rgba(232,155,44,0.08), 0 4px 16px rgba(232,155,44,0.08);
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.card.highlight h2 {
  color: #6B4000;
}

.card.highlight h2::after {
  background: rgba(232,155,44,0.3);
}

p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}

p:last-child { margin-bottom: 0; }

p strong {
  color: var(--text);
  font-weight: 600;
}

ul {
  list-style: none;
  margin: 8px 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul:last-child { margin-bottom: 0; }

li {
  display: flex;
  gap: 12px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.65;
}

li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

a {
  color: var(--amber-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}

a:hover { color: var(--amber); }

a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
  text-decoration: none;
}

/* ── FOOTER ─────────────────────────────────────── */

.site-footer {
  background: var(--dark-mid);
  padding: 36px 24px;
  text-align: center;
}

.site-footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

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

/* ── RESPONSIVE ─────────────────────────────────── */

@media (max-width: 580px) {
  .site-header { padding: 48px 20px 44px; }
  .card { padding: 24px 22px; }
  main { padding: 40px 16px 64px; }
  .promise-banner { padding: 18px 20px; }
}
