
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

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

:root {
  --bordeaux-dark:   #3A0F1E;
  --bordeaux:        #6B1F38;
  --bordeaux-mid:    #8C2A49;
  --bordeaux-light:  #B04060;
  --bordeaux-soft:   #D4537E;
  --creme-dark:      #E8D5C0;
  --creme:           #F5EAD8;
  --creme-light:     #FBF4EA;
  --creme-white:     #FFFCF7;
  --text-dark:       #2A0E1A;
  --text-mid:        #5C2E40;
  --text-light:      #8C5A6A;
  --accent:          #C8973A;
  --accent-light:    #E8BF6A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', Georgia, serif;
  background: var(--creme-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--bordeaux-dark);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--bordeaux-mid);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--creme-light);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: var(--creme-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0 18px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--creme-white); border-bottom-color: var(--accent-light); }
.nav-links a.active { color: var(--creme-white); border-bottom-color: var(--accent); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 60%, var(--bordeaux-mid) 100%);
  padding: 72px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,151,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--creme-white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
}
.hero p {
  font-size: 17px;
  color: var(--creme-dark);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 300;
}
.btn-primary {
  background: var(--creme-white);
  color: var(--bordeaux);
  border: none;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--creme); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--creme-light);
  border: 1px solid rgba(245,234,216,0.45);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-left: 12px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* MAIN CONTENT */
main { max-width: 1100px; margin: 0 auto; padding: 48px 40px 80px; }

/* SECTION TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--bordeaux);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 48px; }
.card {
  background: var(--creme-white);
  border: 1px solid var(--creme-dark);
  border-radius: 8px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(58,15,30,0.1); transform: translateY(-2px); }
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--bordeaux); margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* STATS ROW */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.stat-box {
  background: var(--bordeaux-dark);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  color: var(--creme-light);
}
.stat-box .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--accent-light); line-height: 1; }
.stat-box .stat-label { font-size: 13px; color: var(--creme-dark); margin-top: 8px; font-weight: 300; }

/* TABLE */
.table-wrap { overflow-x: auto; margin-bottom: 48px; border-radius: 8px; border: 1px solid var(--creme-dark); }
table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--creme-white); }
thead tr { background: var(--bordeaux); color: var(--creme-white); }
thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
thead th:first-child { border-radius: 8px 0 0 0; }
thead th:last-child { border-radius: 0 8px 0 0; }
tbody tr { border-bottom: 1px solid var(--creme-dark); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--creme-light); }
tbody tr:hover { background: var(--creme); }
tbody td { padding: 13px 16px; color: var(--text-dark); vertical-align: middle; }
tbody td:first-child { font-weight: 600; color: var(--bordeaux); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-amber { background: #fff8e1; color: #f57f17; }
.badge-red   { background: #fce8e8; color: #c62828; }
.badge-blue  { background: #e3f0fb; color: #1565c0; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.step { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bordeaux);
  color: var(--creme-white);
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step h4 { font-size: 15px; font-weight: 600; color: var(--bordeaux); }
.step p  { font-size: 14px; color: var(--text-light); line-height: 1.5; }

/* INFO BOX */
.info-box {
  background: var(--creme);
  border-left: 4px solid var(--bordeaux-mid);
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-mid);
}

/* FOOTER */
footer {
  background: var(--bordeaux-dark);
  color: var(--creme-dark);
  padding: 32px 40px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--creme-dark); text-decoration: none; margin-left: 20px; }
footer a:hover { color: var(--creme-white); }

@media (max-width: 680px) {
  nav { padding: 0 16px; }
  .nav-links a { padding: 0 10px; font-size: 13px; }
  main { padding: 32px 16px 60px; }
  .steps, .stats-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  footer { flex-direction: column; text-align: center; }
  footer a { margin: 0 10px; }
}
