/* =============================================
   AUXESIS LEARNING — Design System
   ============================================= */

/* --- Color Tokens --- */
:root {
  --navy:        #0C2340;
  --navy-dark:   #071629;
  --navy-light:  #1a3a5c;
  --gold:        #D4AF37;
  --gold-light:  #e8cc5c;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --gray-900:    #111827;
  --text-primary:   #0C2340;
  --text-secondary: #4b5563;
  --text-muted:     #9ca3af;
  --border:          #e5e7eb;
  --border-strong:   #d1d5db;

  /* Semantic */
  --bg-primary:     var(--white);
  --bg-secondary:   var(--off-white);
  --bg-tertiary:   var(--gray-50);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);

  /* Layout */
  --max-w-sm:  640px;
  --max-w-md:  768px;
  --max-w-lg:  1024px;
  --max-w-xl:  1200px;
  --page-pad:  clamp(1rem, 4vw, 2rem);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 500;
}
h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }
p { color: var(--text-secondary); line-height: 1.7; }
p + p { margin-top: var(--space-4); }
.lead { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.7; }
.small { font-size: 0.875rem; color: var(--text-muted); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w-xl);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.container--sm { max-width: var(--max-w-sm); }
.container--md { max-width: var(--max-w-md); }
.container--lg { max-width: var(--max-w-lg); }

.section { padding: var(--space-16) 0; }
.section--sm { padding: var(--space-10) 0; }
.section--lg { padding: var(--space-20) 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.8); }
.section--gray { background: var(--bg-secondary); }

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* --- Flex Utilities --- */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap-sm { gap: var(--space-2); }
.flex--gap { gap: var(--space-4); }
.flex--gap-lg { gap: var(--space-6); }
.flex--wrap { flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; }
.stack--gap-sm { gap: var(--space-2); }
.stack--gap { gap: var(--space-4); }
.stack--gap-lg { gap: var(--space-6); }

/* --- Text Alignment --- */
.text-center { text-align: center; }
.text-right { text-align: right; }

/* --- Dividers --- */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: var(--space-8) 0;
}
.divider--gold {
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  width: 60px;
  margin: var(--space-4) 0;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}
.site-header__inner {
  max-width: var(--max-w-xl);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.site-logo span { color: var(--gold); }
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.site-nav a:hover { color: var(--navy); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-4) var(--page-pad);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
  }
  .site-nav.open { display: flex; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { opacity: 0.9; }
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { opacity: 0.95; }
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition);
  position: relative;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--accent {
  border-left: 4px solid var(--navy);
}
.card--gold {
  border-left: 4px solid var(--gold);
}
.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  display: block;
}
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.card__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
}
.card__footer:hover { opacity: 0.8; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}
.hero--dark {
  background: var(--navy);
  color: var(--white);
}
.hero--dark h1,
.hero--dark h2 { color: var(--white); }
.hero--dark p { color: rgba(255,255,255,0.8); }
.hero__eyebrow { margin-bottom: var(--space-4); }
.hero__title {
  margin-bottom: var(--space-4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.hero--dark .hero__subtitle { color: rgba(255,255,255,0.8); }
.hero__ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__graphic {
  margin-top: var(--space-12);
  text-align: center;
}
.hero__graphic img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.section-header .eyebrow { margin-bottom: var(--space-3); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-header p {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* =============================================
   FEATURE BLOCKS
   ============================================= */
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5) 0;
}
.feature__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feature__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.feature__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-12) 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-6);
}
.cta-band__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   TABS
   ============================================= */
.tabs {
  display: flex;
  gap: var(--space-1);
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-8);
  overflow-x: auto;
}
.tab {
  padding: var(--space-3) var(--space-5);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab:hover { color: var(--navy); }
.tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-input,
.form-textarea,
.form-select {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.form-error {
  font-size: 0.8rem;
  color: #dc2626;
}
.form-row {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-12) 0 var(--space-10);
  text-align: center;
}
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: var(--white); margin-bottom: var(--space-4); }
.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.page-header__meta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-5);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  padding-bottom: var(--space-8);
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) + 3px);
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: var(--radius-full);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.timeline__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIAL / QUOTE
   ============================================= */
.testimonial {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  opacity: 0.4;
}
.testimonial__quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-4);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial__role { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gray-100);
}
.blog-card__body { padding: var(--space-5); }
.blog-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: var(--space-3);
}

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: var(--space-5); font-size: 0.95rem; }

/* =============================================
   BADGE / PILL
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--navy { background: var(--navy); color: var(--white); }
.badge--gold { background: var(--gold); color: var(--navy); }
.badge--outline { border: 1.5px solid var(--border); color: var(--text-secondary); }

/* =============================================
   STEP INDICATOR
   ============================================= */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: var(--space-5);
  position: relative;
  padding-bottom: var(--space-8);
}
.step:last-child { padding-bottom: 0; }
.step__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step__number span {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.step__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: var(--space-2);
}
.step:last-child .step__line { display: none; }
.step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
  padding-top: var(--space-2);
}
.step__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) 0 var(--space-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-3);
  line-height: 1.6;
}
.site-footer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.site-footer__logo span { color: var(--gold); }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}
.site-footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--gold); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.site-footer__bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.site-footer__bottom a:hover { color: var(--gold); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.gap-0 { gap: 0; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.w-full { width: 100%; }

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
@media (max-width: 640px) {
  .hide-sm { display: none !important; }
  .section { padding: var(--space-10) 0; }
  .section--lg { padding: var(--space-12) 0; }
}
@media (max-width: 768px) {
  .hide-md { display: none !important; }
}
