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

:root {
  --bg: #faf7f2;
  --fg: #1e1b16;
  --muted: #6b6358;
  --accent: #c9622a;
  --card: #ffffff;
  --border: rgba(30,27,22,.08);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,27,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,27,22,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 32px 20px 0;
  position: relative;
  z-index: 1;
}

.logo {
  height: 140px;
  width: auto;
}

.hero {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}

.courses, .contact {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px 60px;
  position: relative;
  z-index: 1;
}

.course-card, .contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.course-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.course-time {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-line {
  color: var(--muted);
  line-height: 1.7;
}

.contact-line.strong {
  color: var(--fg);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-line.phone {
  margin-top: 12px;
}

.contact-line.phone a {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
  font-size: .85rem;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color .15s ease, border-color .15s ease;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
