/* ═══════════════════════════════════════════════════════════════ */
/* MORIVA™ — DESIGN SYSTEM & STYLES                                */
/* ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────── */
/* 1. DESIGN TOKENS                                                */
/* ─────────────────────────────────────────────────────────────── */

:root {
  /* Colors - Primary Palette */
  --purple:      #3D0C6E;
  --purple-lt:   #55159A;
  --gold:        #C4A012;
  --gold-lt:     #E2C355;
  --gold-dim:    #8A6F0D;
  --emerald:     #0A5C3A;
  
  /* Background Colors */
  --deep:        #0D1B2A;
  --deep-2:      #091422;
  --deep-3:      #060E18;
  
  /* Text Colors */
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  
  /* Spacing Scale */
  --spacing-xs:  8px;
  --spacing-sm:  12px;
  --spacing-md:  16px;
  --spacing-lg:  24px;
  --spacing-xl:  32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 80px;
  --spacing-4xl: 120px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

/* ─────────────────────────────────────────────────────────────── */
/* 2. RESET & BASE STYLES                                          */
/* ─────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--deep);
  font-family: var(--font-body);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 16px;
}

/* ─────────────────────────────────────────────────────────────── */
/* 3. TYPOGRAPHY                                                   */
/* ─────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  line-height: 1.75;
}

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

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

/* ─────────────────────────────────────────────────────────────── */
/* 4. UTILITY CLASSES                                              */
/* ─────────────────────────────────────────────────────────────── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-3xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

.text-center {
  text-align: center;
}

.accent-word {
  color: var(--gold);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────── */
/* 5. BUTTONS                                                      */
/* ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: 0;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 160, 18, 0.3);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.25);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

/* ─────────────────────────────────────────────────────────────── */
/* 6. SECTION STYLES                                               */
/* ─────────────────────────────────────────────────────────────── */

section {
  position: relative;
  padding: var(--spacing-4xl) 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-dark {
  background: var(--deep);
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center (optional) */
  text-align: center;
}

.section-darker {
  background: var(--deep-2);
}
.cta-section .container {
  text-align: center;
}

.cta-section .btn {
  display: inline-block;
  margin-top: 32px;
}

.section-dark .section-title,
.section-dark .section-intro {
  text-align: center !important;
}
.section-dark .section-intro {
  max-width: 700px;
  margin: 0 auto 60px;  /* centers + keeps spacing */
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.7);
  max-width: 700px;
  margin-bottom: 60px;
}

/* ─────────────────────────────────────────────────────────────── */
/* 7. NAVIGATION                                                   */
/* ─────────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 160, 18, 0.2);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-3xl);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-2xl);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--white);
}

.logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

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

.logo-tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 400;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 var(--spacing-lg);
  }
}

/* ─────────────────────────────────────────────────────────────── */
/* 8. HERO SECTION                                                 */
/* ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(61, 12, 110, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(10, 92, 58, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(196, 160, 18, 0.08) 0%, transparent 50%),
    var(--deep);
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 1;
  pointer-events: none;
}

.hero-mandala {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: 0.07;
  z-index: 1;
  animation: slowSpin 80s linear infinite;
}

.hero-line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0px 60px 80px;
    gap: 60px;
  }

  .hero-mandala {
    width: 500px;
    height: 500px;
    opacity: 0.05;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 80px 24px 60px;
    gap: 40px;
  }

  .hero-mandala {
    display: none;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-headline .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.3;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.7);
  max-width: 540px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.85s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.05s forwards;
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.2s forwards;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--deep);
  background: var(--purple);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-left: -10px;
  font-family: var(--font-display);
  color: var(--gold-lt);
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.proof-text strong {
  color: var(--gold);
  font-weight: 500;
}

/* Hero Card */
.hero-right {
  opacity: 0;
  animation: fadeLeft 1s ease 0.6s forwards;
}

.hero-card {
  border: 1px solid rgba(196, 160, 18, 0.25);
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(16px);
  padding: 40px 36px;
  position: relative;
}

.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.hero-card::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-card::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.card-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196, 160, 18, 0.3);
}

.pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: background var(--transition-base);
}

.pillar-item:last-child {
  border-bottom: none;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 1px;
  padding-top: 3px;
  min-width: 24px;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.45);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(61, 12, 110, 0.4);
  border: 1px solid rgba(61, 12, 110, 0.8);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.card-cta:hover {
  background: rgba(61, 12, 110, 0.7);
  border-color: var(--purple);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(196, 160, 18, 0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────── */
/* 9. METHODOLOGY SECTION                                          */
/* ─────────────────────────────────────────────────────────────── */

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.pillar-card {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 40px;
  transition: all var(--transition-slow);
}

.pillar-card:hover {
  border-color: rgba(196, 160, 18, 0.5);
  background: rgba(85, 21, 154, 0.12);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.3;
}

.pillar-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.pillar-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.65);
}

/* ─────────────────────────────────────────────────────────────── */
/* 10. PROGRAMS SECTION                                            */
/* ─────────────────────────────────────────────────────────────── */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.program-card {
  border: 1px solid rgba(196, 160, 18, 0.2);
  background: rgba(13, 27, 42, 0.5);
  padding: 48px;
  transition: all var(--transition-slow);
  position: relative;
}

.program-card:hover {
  border-color: rgba(196, 160, 18, 0.6);
  background: rgba(85, 21, 154, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(61, 12, 110, 0.2);
}

.program-card.featured {
  border-color: var(--gold);
  background: rgba(85, 21, 154, 0.15);
  transform: scale(1.02);
}

.program-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--deep);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.program-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.program-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}

.program-duration {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.program-inclusions {
  list-style: none;
  margin-bottom: 32px;
}

.program-inclusions li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196, 160, 18, 0.1);
  color: rgba(250, 247, 242, 0.7);
}

.program-inclusions li:last-child {
  border-bottom: none;
}

.program-card .btn {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────── */
/* 11. ABOUT SECTION                                               */
/* ─────────────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

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

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 24px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, rgba(85, 21, 154, 0.2), rgba(10, 92, 58, 0.1));
  border: 1px solid rgba(196, 160, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.3);
  text-align: center;
  font-family: var(--font-display);
}

/* ─────────────────────────────────────────────────────────────── */
/* 12. CASE STORIES & TESTIMONIALS SECTION                         */
/* ─────────────────────────────────────────────────────────────── */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.story-card {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 40px;
  transition: all var(--transition-slow);
}

.story-card:hover {
  border-color: rgba(196, 160, 18, 0.5);
  background: rgba(85, 21, 154, 0.12);
  transform: translateY(-4px);
}

.story-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.story-challenge,
.story-solution,
.story-outcome {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(250, 247, 242, 0.65);
}

.story-quote {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 160, 18, 0.2);
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 40px;
  transition: all var(--transition-slow);
}

.testimonial:hover {
  border-color: rgba(196, 160, 18, 0.5);
  background: rgba(85, 21, 154, 0.12);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--cream);
}

.testimonial-author {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.testimonial-rating {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────────────────────── */
/* 13. JOURNAL / BLOG SECTION                                      */
/* ─────────────────────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.blog-card {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 40px;
  transition: all var(--transition-slow);
}

.blog-card:hover {
  border-color: rgba(196, 160, 18, 0.5);
  background: rgba(85, 21, 154, 0.12);
  transform: translateY(-4px);
}

.blog-card.featured {
  grid-column: span 1;
  border-color: var(--gold);
  background: rgba(85, 21, 154, 0.15);
}

@media (max-width: 1024px) {
  .blog-card.featured {
    grid-column: span 1;
  }
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.blog-date {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 24px;
}

.read-more {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  transition: all var(--transition-base);
  display: inline-block;
}

.read-more:hover {
  color: var(--gold-lt);
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────── */
/* 14. CONTACT SECTION                                             */
/* ─────────────────────────────────────────────────────────────── */

.contact-container {
  max-width: 900px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

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

.contact-form {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-child {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(196, 160, 18, 0.4);
  background: rgba(196, 160, 18, 0.04);
}

.form-group button {
  width: 100%;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  background: rgba(85, 21, 154, 0.08);
  border: 1px solid rgba(196, 160, 18, 0.2);
  padding: 32px;
}

.info-block h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.info-block p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 16px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block a {
  display: inline-block;
  margin-top: 12px;
}

/* ─────────────────────────────────────────────────────────────── */
/* 15. NEWSLETTER & FOOTER                                         */
/* ─────────────────────────────────────────────────────────────── */

.newsletter-bar {
  background: var(--deep);
  border-top: 1px solid rgba(196, 160, 18, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 80px;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

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

  .newsletter-bar {
    padding: 40px var(--spacing-lg);
  }
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.newsletter-text h3 em {
  color: var(--gold);
  font-style: italic;
}

.newsletter-text p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.45);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.newsletter-input:focus {
  border-color: rgba(196, 160, 18, 0.4);
  background: rgba(196, 160, 18, 0.04);
  border-right: none;
}

.newsletter-btn {
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-base);
}

.newsletter-btn:hover {
  background: var(--gold-lt);
}

/* Footer */
footer {
  background: var(--deep-3);
  padding: 80px 80px 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

  footer {
    padding: 60px 24px 0;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}

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

.footer-logo-tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 5px;
  font-weight: 400;
}

.footer-brand-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.38);
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(250, 247, 242, 0.4);
  transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
  font-size: 12px;
}

.social-link:hover {
  border-color: rgba(196, 160, 18, 0.4);
  color: var(--gold);
  background: rgba(196, 160, 18, 0.06);
}

.footer-nav-heading {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.65);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.35);
}

/* ─────────────────────────────────────────────────────────────── */
/* 16. ANIMATIONS                                                  */
/* ─────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slowSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ─────────────────────────────────────────────────────────────── */
/* 17. RESPONSIVE DESIGN                                           */
/* ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-intro {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 40px;
  }

  .programs-grid,
  .methodology-grid,
  .stories-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────── */
/* 18. ACCESSIBILITY                                               */
/* ─────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.btn:focus,
.nav-links a:focus,
.footer-nav a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  nav,
  .newsletter-bar,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
