/* ===========================================
   Court Confidence — Premium Navy & Gold system
   =========================================== */

:root {
  --navy:        #0B0E1A;
  --navy-mid:    #111628;
  --navy-card:   #161B2E;
  --navy-border: #1E2540;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5EFD8;
  --white:       #FFFFFF;
  --off-white:   #F5F0E8;
  --gray:        #8A8FA8;
  --light-gray:  #D0D4E0;
  --dark-text:   #2E3245;
  --mid-gray:    #555A6E;
  --light-bg:    #F4F6FA;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Header --- */
.site-header {
  background: var(--navy);
  padding: 22px 0;
  border-bottom: 6px solid var(--gold);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
}
.brand span { color: var(--gold); }
.nav-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  border: 1px solid var(--navy-border);
  padding: 10px 18px;
}

/* --- Eyebrow label --- */
.eyebrow {
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* --- Hero / module banner (full-width navy) --- */
.hero {
  background: var(--navy);
  padding: 70px 0 90px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 18ch;
}
.hero p.subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  max-width: 50ch;
  margin: 0 0 30px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: bold;
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
}
.btn:hover { background: var(--gold-light); }

/* --- Sections --- */
.section {
  padding: 64px 0;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.9rem;
  color: var(--navy);
  margin: 0 0 30px;
}

/* --- Course grid on homepage --- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 8px solid var(--gold);
  padding: 28px;
  text-decoration: none;
  color: var(--dark-text);
  display: block;
}
.course-card .num {
  font-family: var(--font-body);
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.course-card h3 {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 10px 0 10px;
}
.course-card p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.price {
  font-weight: bold;
  color: var(--navy);
}
.course-card.placeholder {
  background: var(--light-bg);
  border-top: 8px solid var(--light-gray);
}
.course-card.placeholder .price { color: var(--gray); }

/* --- Course landing page --- */
.two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 64px; }
}

/* Gold highlight box (key concept) */
.highlight-box {
  background: var(--gold-pale);
  border-top: 12px solid var(--gold);
  border-left: 24px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 22px 24px;
  margin: 0 0 28px;
}
.highlight-box h3 {
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 12px;
}

/* Feature list */
ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
ul.feature-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  color: var(--dark-text);
}
ul.feature-list li:before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Price box — navy card style */
.price-box {
  background: var(--navy-card);
  border-top: 8px solid var(--gold);
  padding: 34px 28px;
  text-align: left;
}
.price-box .label {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.price-box .amount {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 2.3rem;
  color: var(--white);
  margin: 10px 0 22px;
}
.price-box .btn { width: 100%; text-align: center; }
.price-box .note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* Gold quote block */
.quote-block {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 30px;
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.quote-block .attribution {
  font-weight: bold;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* Gold divider */
.gold-rule {
  height: 8px;
  background: var(--gold);
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: var(--gray);
  padding: 30px 0;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer a { color: var(--gold-light); text-decoration: none; }
