/* ==========================================
   FROM BROKEN TO BESPOKE — GLOBAL STYLES
   Aesthetic: Warm earthy-luxury + editorial
========================================== */

/* :root {
  --bg: #0F0D0A;
  --bg2: #181410;
  --bg3: #211D18;
  --surface: #2A2420;
  --surface2: #332E28;
  --border: rgba(255,255,255,0.08);
  --text: #F5EFE6;
  --text-muted: #9A8E82;
  --text-soft: #C8B9A8;
  --gold: #C9965A;
  --gold-light: #E8C49A;
  --green: #7BBFA5;
  --purple: #9B7FD4;
  --red: #E07070;
  --blue: #5AABCD;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0,0,0,0.4);
} */

:root {
  /* Backgrounds (shifted to deep navy) */
  --bg: #0B1F2E;
  --bg2: #0F2A40;
  --bg3: #132F4C;

  /* Surfaces */
  --surface: #163854;
  --surface2: #1B4666;
  --border: rgba(255,255,255,0.08);

  /* Text */
  --text: #F8FAFC;
  --text-muted: #9FB3C8;
  --text-soft: #CFE0ED;

  /* Gold (keep but refine to match sparkle tone) */
  --gold: #D4AF37;
  --gold-light: #F5D27A;

  /* Accent Colors (based on diamonds) */
  --blue: #A7D8F5;     /* crystal glow */
  --green: #7BBFA5;    /* keep (good contrast) */
  --purple: #8EA6FF;   /* cooler tone */
  --red: #E07070;      /* unchanged */

  /* Fonts */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  /* UI */
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadows / Effects */
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
  --glow-blue: 0 0 20px rgba(167, 216, 245, 0.4);
  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.4);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }
em { font-style: italic; color: var(--gold-light); }
p { color: var(--text-soft); }

a { 
  color: inherit; 
  text-decoration: none;

}

/* ===== NAV ===== */
.navbar {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0.1rem 1.25rem;
  background: rgba(15,13,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { 
  padding: 0.5rem 0.5rem; 
}

.logo {
  margin: 0;
  padding: 0;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px); 
}

.hamburger {
  display: none; 
  background: none; 
  border: none;
  color: var(--text); 
  font-size: 1.4rem; 
  cursor: pointer;
}

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--bg2); z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1.1rem; color: var(--text-soft); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 24px rgba(201,150,90,0.3); 
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover { 
  border-color: var(--gold); 
  color: var(--gold); 
  transform: translateY(-2px); 
}
.btn-large { 
  padding: 1rem 2.25rem; 
  font-size: 1.05rem; 
}

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,150,90,0.1);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}

/* ===== ORBS (background blobs) ===== */
.orb {
  position: absolute; 
  border-radius: 50%; 
  filter: blur(80px);
  pointer-events: none; 
  z-index: 0;
}
.orb1 { 
  width: 500px; 
  height: 500px; 
  background: rgba(201,150,90,0.08); 
  top: -100px; 
  right: -100px; 
}
.orb2 { 
  width: 400px; 
  height: 400px; 
  background: rgba(123,191,165,0.06); 
  bottom: 50px; 
  left: -80px; 
}
.orb3 { 
  width: 300px; 
  height: 300px; 
  background: rgba(155,127,212,0.06); 
  top: 40%; 
  left: 30%; 
}

/* ===== HERO ===== */
.hero {
  position: relative; 
  overflow: hidden;
  min-height: 100vh;
  display: flex; 
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  gap: 4rem;
  max-width: 1140px; 
  margin: 0 auto;
}
.hero-bg {
  background:linear-gradient(#0B1F2E, #0f2a4092), url("/assets/img/hero.jfif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute; 
  inset: 0; 
  z-index: 0; 
}
.hero-content { 
  position: relative; 
  z-index: 1; 
  flex: 1; }
.hero-image { 
  position: relative; 
  z-index: 1; 
  flex: 0 0 380px; }

.hero-badge {
  display: inline-flex; 
  align-items: center; gap: 0.5rem;
  background: rgba(201,150,90,0.12); 
  border: 1px solid rgba(201,150,90,0.25);
  color: var(--gold); 
  border-radius: 50px; 
  padding: 0.35rem 1rem;
  font-size: 0.8rem; 
  font-weight: 600; 
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-title .highlight {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,150,90,0.4);
  text-underline-offset: 6px;
}

.hero-sub { font-size: 1.2rem; color: var(--text-soft); margin-bottom: 2.5rem; max-width: 480px; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
}
.stat span { display: block; font-family: var(--ff-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-card p { font-size: 1.1rem; line-height: 1.65; color: var(--text-soft); font-style: italic; }

/* ===== MISSION PREVIEW ===== */
.mission-preview {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-preview h2 { margin-bottom: 1.5rem; }
.mission-text { max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

/* ===== VALUES ===== */
.values-section { padding: 6rem 0; }
.values-section h2, .values-section .section-tag { text-align: center; }
.values-section h2 { margin-bottom: 3rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--c-rgb,201,150,90),0.08), transparent 60%);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--c, var(--gold)); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; }

/* ===== PROGRAM HIGHLIGHTS ===== */
.highlights-section { padding: 6rem 0; background: var(--bg2); }
.highlights-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.highlights-text p { max-width: 440px; }
.highlights-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.h-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.h-card span {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 900;
  color: var(--gold); margin-bottom: 0.25rem;
}
.h-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner::before {
  content: '✦';
  position: absolute; font-size: 300px; opacity: 0.02;
  top: -60px; right: -40px;
  font-family: var(--ff-display);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 2.5rem; font-size: 1.1rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 10rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; max-width: 560px; margin: 0 auto; }
.page-hero-short { padding: 8rem 0 4rem; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 6rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text p { margin-bottom: 1.25rem; }
.about-text h2 { margin-bottom: 1.5rem; }

.quote-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  position: relative;
  border-left: 3px solid var(--gold);
}
.quote-mark {
  font-family: var(--ff-display);
  font-size: 6rem; line-height: 1;
  color: var(--gold); opacity: 0.3;
  display: block; margin-bottom: -1rem;
}
.quote-block p { font-size: 1.2rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.quote-block cite { font-size: 0.85rem; color: var(--gold); font-style: normal; font-weight: 600; }

.trauma-section { padding: 6rem 0; background: var(--bg2); }
.trauma-section h2 { margin-bottom: 3rem; text-align: center; }
.trauma-section .section-tag { display: block; text-align: center; }

.trauma-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.trauma-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.3s;
}
.trauma-card:hover { transform: translateY(-4px); }
.trauma-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trauma-card h3 { margin-bottom: 0.75rem; }

.values-detail-section { padding: 6rem 0; }
.values-detail-section h2 { margin-bottom: 3rem; }
.values-detail-list { display: flex; flex-direction: column; gap: 1.5rem; }
.vd-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}
.vd-item:hover { border-color: rgba(201,150,90,0.3); }
.vd-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.vd-item h3 { margin-bottom: 0.5rem; }

.who-section { padding: 6rem 0; background: var(--bg2); }
.who-section h2 { margin-bottom: 3rem; text-align: center; }
.who-section .section-tag { display: block; text-align: center; }
.who-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s;
}
.who-card:hover { transform: translateY(-4px); }
.who-card span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.who-card h3 { margin-bottom: 0.5rem; }

/* ===== PROGRAM PAGE ===== */
.program-overview { padding: 4rem 0; background: var(--bg2); border-bottom: 1px solid var(--border); }
.overview-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.ov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
}
.ov-card:hover { transform: translateY(-4px); }
.ov-card span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.ov-card h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 0.25rem; }
.ov-card p { font-size: 0.85rem; color: var(--text-muted); }

.session-flow-section { padding: 6rem 0; }
.session-flow-section h2 { margin-bottom: 3rem; }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: flex; align-items: flex-start; gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.flow-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--ff-display);
  font-size: 3rem; font-weight: 900;
  color: rgba(201,150,90,0.25);
  line-height: 1; min-width: 80px;
  transition: color 0.3s;
}
.flow-step:hover .step-num { color: var(--gold); }
.step-content h3 { margin-bottom: 0.5rem; }

.curriculum-section { padding: 6rem 0; background: var(--bg2); }
.curriculum-section h2 { margin-bottom: 2rem; }
.week-filter {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.week-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}
.week-card:hover { transform: translateY(-4px); border-color: rgba(201,150,90,0.35); }
.week-num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem;
}
.week-card h3 { 
  font-size: 1.1rem; 
  margin-bottom: 0.5rem; 
}
.week-card p { 
  font-size: 0.9rem; 
}
.week-card .week-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.1rem 0.75rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s;
  border: none; cursor: pointer;
}

.week-tag {
  display: inline-block;
  font-size: 0.7rem; 
  font-weight: 600; 
  letter-spacing: 0.08em;
  text-transform: uppercase; 
  padding: 0.2rem 0.7rem;
  border-radius: 50px; 
  margin-top: 1rem;
}
.tag-identity { background: rgba(155,127,212,0.15); color: var(--purple); }
.tag-healing { background: rgba(123,191,165,0.15); color: var(--green); }
.tag-leadership { background: rgba(201,150,90,0.15); color: var(--gold); }
.week-card.hidden { display: none; }

.activities-section { padding: 6rem 0; }
.activities-section h2 { margin-bottom: 3rem; }
.activities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.act-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s;
}
.act-card:hover { transform: translateY(-4px); }
.act-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.act-card h3 { margin-bottom: 0.5rem; }

.outcomes-section { padding: 6rem 0; background: var(--bg2); }
.outcomes-section h2 { margin-bottom: 3rem; text-align: center; }
.outcomes-section .section-tag { display: block; text-align: center; }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.outcome-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}
.outcome-item span { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.outcome-item p { font-size: 0.95rem; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 5rem 0 7rem; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-soft);
  letter-spacing: 0.03em;
}
input, select, textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--ff-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,90,0.12);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--bg2); }
textarea { resize: vertical; }

.error-msg { font-size: 0.8rem; color: var(--red); display: none; }
.error-msg.show { display: block; }
input.error, select.error, textarea.error { border-color: var(--red); }

.submit-btn { align-self: flex-start; margin-top: 0.5rem; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  text-align: center; padding: 4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { margin-bottom: 2rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 1rem; }
.info-block {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-block h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.info-block p { font-size: 0.95rem; color: var(--text); margin: 0; }

.inquiry-guide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
}
.inquiry-guide h4 { margin-bottom: 1rem; }
.inquiry-guide ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.inquiry-guide li { font-size: 0.9rem; color: var(--text-soft); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-logo { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 900; }
.footer-logo span { color: var(--gold); }
.footer p { font-size: 0.9rem; color: var(--text-muted); }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem !important; color: var(--surface2) !important; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-bg {
  background: #0B1F2E;
  position: absolute; 
  inset: 0; 
  z-index: 0; 
}
  .hero { flex-direction: column; padding: 7rem 1.5rem 4rem; gap: 3rem; text-align: center; }
  .hero-image { flex: unset; width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }

  .highlights-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .navbar { 
    padding: 0rem 1.25rem; 
  }
  .hero { padding: 6rem 1.25rem 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .highlights-cards { grid-template-columns: 1fr 1fr; }
  .weeks-grid { grid-template-columns: 1fr; }
}
