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

:root {
  --black: #0d0d0d;
  --dark: #141414;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-dark: #a07830;
  --white: #ffffff;
  --gray: #aaaaaa;
  --light-gray: #cccccc;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAVIGATION ===== */
nav {
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--light-gray);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--light-gray);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--dark);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 680px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

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

@media (max-width: 900px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ===== AI INCOME SCHOOL SECTION ===== */
.ais-section {
  background: linear-gradient(135deg, #100e00 0%, #1a1500 50%, #100e00 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.ais-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.ais-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.ais-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.ais-inner > p {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 720px;
  margin: 0 0 48px;
  line-height: 1.85;
}

.ais-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
  margin-bottom: 48px;
}

.ais-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
}

.ais-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ais-feature span {
  font-size: 0.92rem;
  color: var(--light-gray);
  font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 90px 24px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 640px;
  margin: 0 auto;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.9;
  margin-bottom: 24px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pillar {
  text-align: center;
  padding: 36px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--gray);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 24px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 60px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 36px 24px;
  border-radius: 4px;
  text-align: center;
}

.contact-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-card p, .contact-card a {
  font-size: 0.98rem;
  color: var(--light-gray);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 72px 24px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--white);
}

.legal-date {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-inner h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 40px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-inner p {
  font-size: 0.97rem;
  color: var(--light-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-inner ul {
  margin: 12px 0 16px 24px;
}

.legal-inner ul li {
  font-size: 0.97rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  border-top: 1px solid var(--border);
  padding: 52px 24px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.75;
}

.footer-brand .logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand .logo span {
  color: var(--gold);
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 0.92rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===== ABOUT MISSION GRID ===== */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== WORKSHOPS HEADER ===== */
.workshops-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.workshops-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.workshops-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    position: relative;
  }

  .hero {
    padding: 64px 24px;
  }

  .section {
    padding: 56px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .ais-features {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
