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

:root {
  --bg: #f6f4f0;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #c43e1c;
  --accent-light: #fdf0ec;
  --border: #e4e0da;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover { color: var(--accent); }

main { max-width: 1100px; margin: 0 auto; padding: 0 2rem 4rem; }

.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,62,28,0.25); }

.courses h2, .about h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.grid article h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.grid article p { color: var(--muted); font-size: 0.95rem; }

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact { padding: 3rem 0; }
.contact h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; margin-bottom: 1.5rem; }
.contact-block { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; max-width: 500px; box-shadow: var(--shadow); }
.contact-block p { margin-bottom: 0.75rem; }

.legal { padding: 2rem 0; max-width: 780px; }
.legal h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; margin-bottom: 0.5rem; }
.legal h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal p, .legal ul { margin-bottom: 1rem; color: #333; }
.legal ul { padding-left: 1.5rem; }
.legal code { background: #eee; padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.9rem; }

footer {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

footer .links { margin-bottom: 1rem; }
footer .links a { margin: 0 0.75rem; text-decoration: none; color: var(--muted); }
footer .links a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  header { flex-direction: column; gap: 0.75rem; }
}
=== END ===
