/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8972a;
  margin-bottom: 12px;
}
.label.light { color: #f0c060; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 16px; }
.section-sub { color: #555; font-size: 1.05rem; }

.btn-primary {
  display: inline-block;
  background: #c8972a;
  color: white;
  padding: 15px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a8791e; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('https://i.imgur.com/e2UmvhN.jpeg');
  background-size: cover;
  background-position: center top;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.65) 60%, rgba(10,22,40,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 40px 24px 40px 8%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0c060;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* === ABOUT === */
.about { padding: 100px 0; background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.photo-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: #444; margin-bottom: 18px; font-size: 1.02rem; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #e8e8e8;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #c8972a; }
.stat-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* === LESSONS === */
.lessons { padding: 100px 0; background: #f8f7f4; }

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lesson-card {
  background: white;
  padding: 36px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lesson-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.lesson-icon { font-size: 2rem; margin-bottom: 16px; }
.lesson-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.lesson-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* === TESTIMONIALS === */
.testimonials { padding: 100px 0; background: #0a1628; color: white; }
.testimonials .section-header h2 { color: white; }
.testimonials .label { color: #f0c060; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px 32px;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.85rem;
  color: #f0c060;
  font-weight: 600;
}

/* === SIGNUP === */
.signup { padding: 100px 0; background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%); color: white; }

.signup-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.signup-inner h2 { font-size: 2.5rem; color: white; margin-bottom: 16px; }
.signup-inner > p { color: rgba(255,255,255,0.75); margin-bottom: 48px; font-size: 1.05rem; }

form { text-align: left; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 20px; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input, select, textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 1rem;
  color: white;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }

input:focus, select:focus, textarea:focus {
  border-color: #c8972a;
  background: rgba(255,255,255,0.12);
}

select option { background: #1a2d4a; color: white; }

textarea { resize: vertical; }

form .btn-primary { margin-top: 12px; width: 100%; font-size: 1.05rem; padding: 16px; }

/* === FOOTER === */
.footer {
  background: #060e1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.9rem;
}
.footer strong { color: rgba(255,255,255,0.8); }
.footer-sub { margin-top: 8px; font-size: 0.82rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 40px 24px; }
  .lessons-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
}
