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

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --gold: #c9a84c;
  --gold-light: #e0c97f;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #2d3748;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); line-height: 1.3; }
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  padding: 1rem 0;
  font-weight: 700;
}
.logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(201,168,76,0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(26,35,50,0.82), rgba(36,48,68,0.88)), url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 8rem 1.5rem;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: 3rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2rem;
}
.badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-alt {
  background: var(--off-white);
}
.section-alt .section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
}
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ===== CONTENT LISTS ===== */
.content-list {
  list-style: none;
  padding: 0;
}
.content-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== CARDS GRID ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.card h3 { color: var(--navy); }
.card .label {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.fact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 2rem;
}
.headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  margin: 0 auto 1.5rem;
  display: block;
  border: 3px solid var(--gold);
}
.fact-card h3 { color: var(--gold); margin-bottom: 1rem; }
.fact-card ul { list-style: none; }
.fact-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.fact-card li:last-child { border-bottom: none; }
.fact-card strong { color: var(--gold-light); }
.bio p { margin-bottom: 1rem; }
.bio ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.bio ul li::before {
  content: '—';
  color: var(--gold);
  margin-right: 0.5rem;
  margin-left: -1.5rem;
}

/* ===== COMPANIES ===== */
.companies {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  line-height: 1.9;
  color: var(--gray);
  font-size: 0.95rem;
}
.companies strong { color: var(--navy); }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 150px; }

/* ===== RULES / POLICY ===== */
.policy-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold);
}
.policy-box h3 { margin-bottom: 1rem; }
.conditions { margin-top: 2rem; }
.conditions li {
  padding: 0.5rem 0;
}

/* ===== SEMINARS LIST (inline) ===== */
.seminar-list-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}
.seminar-list-inline li {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  transition: all var(--transition);
}
.seminar-list-inline li:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===== LESSONS LAYOUT ===== */
.lessons-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.lessons-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .lessons-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lessons-photo {
    order: -1;
    max-height: 250px;
    position: static;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }

  .hero { padding: 5rem 1.5rem; }
  .hero h1 { font-size: 2rem; }

  .page-header h1 { font-size: 1.8rem; }

  .section { padding: 3rem 1.5rem; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
