/* =============================================
   manuelaizunwa.org: Main Stylesheet
   Stack: Vanilla PHP | Yellow #e5ca00 + Black
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Albert+Sans:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --purple:       #e5ca00;  /* primary brand yellow */
  --purple-dark:  #111111;  /* secondary brand black */
  --purple-light: #f0d800;  /* lighter yellow */
  --purple-pale:  #fefce8;  /* pale yellow tint */
  --gold:         #e5ca00;  /* accent, same as primary */
  --gold-light:   #f5e040;  /* highlight yellow */
  --gold-pale:    #fefce8;  /* pale yellow bg */
  --text:         #111111;
  --text-muted:   #555555;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --border:       #E8E4D0;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition:   0.25s ease;
  --max-width:    1180px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Albert Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  color: var(--purple-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); font-size: 1rem; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
section.tight { padding: 48px 0; }

.section-label {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-gold   { color: var(--gold); }
.bg-pale     { background: var(--purple-pale); }
.bg-off      { background: var(--off-white); }
.bg-gold     { background: var(--gold-pale); }
.bg-purple   { background: var(--purple-dark); color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: var(--purple-dark);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229,202,0,0.4);
}

.btn-gold {
  background: var(--purple-dark);
  color: var(--white);
  border-color: var(--purple-dark);
}
.btn-gold:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}
.btn-outline:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* --- Navigation --- */
.site-topbar {
  background: var(--purple-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.site-topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.site-topbar a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.site-topbar a:hover { color: var(--gold); }
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials a { font-size: 0.9rem; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(92,45,145,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo .logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-dark);
}
.site-logo .logo-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.primary-nav > li > a:hover,
.primary-nav > li > a.active {
  color: var(--purple);
  background: var(--purple-pale);
}

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--purple);
  background: var(--purple-pale);
  padding-left: 26px;
}

.nav-cta { margin-left: 16px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

.mobile-nav { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-light) 100%);
  padding: 80px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,162,39,0.08);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 640px; }
.page-hero .section-label { color: var(--gold-light); }

/* --- Home Hero --- */
.home-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #222222 55%, #333333 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(201,162,39,0.07);
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 20%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.home-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) 420px;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-content .lead { color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 540px; }
.hero-image {
  position: relative;
}
.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-placeholder {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  max-width: 180px;
  line-height: 1.4;
}

/* --- Introduction Strip --- */
.intro-strip {
  background: var(--purple);
  padding: 48px 0;
  text-align: center;
}
.intro-strip p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Four Pillars --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--purple-light);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pillar-card p  { font-size: 0.875rem; margin-bottom: 20px; }
.pillar-card a.learn-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.pillar-card a.learn-more:hover { color: var(--gold); }

/* --- Featured In --- */
.featured-strip {
  background: var(--off-white);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-strip .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.featured-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.featured-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.featured-logos span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  white-space: nowrap;
}

/* --- Books Section --- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 28px;
}
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.book-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.book-cover {
  aspect-ratio: 3/4;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover-placeholder {
  text-align: center;
  padding: 24px;
  color: var(--purple-light);
  font-size: 0.8rem;
}
.book-info { padding: 20px; }
.book-info h4 { font-size: 1rem; margin-bottom: 8px; color: var(--purple-dark); }
.book-info p  { font-size: 0.82rem; margin-bottom: 16px; }
.book-info .btn { padding: 10px 20px; font-size: 0.8rem; width: 100%; justify-content: center; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--purple-dark); }
.author-context { font-size: 0.78rem; color: var(--text-muted); }

/* --- Newsletter --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  text-align: center;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 0.9rem;
  outline: none;
  font-family: 'Albert Sans', sans-serif;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Albert Sans', sans-serif;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #2a2a2a; }

/* --- Cards / Grids --- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 64px;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}

/* --- Credentials Strip --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.credential-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--purple);
}
.credential-text { font-size: 0.88rem; font-weight: 500; color: var(--text); line-height: 1.4; }

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 32px;
}
.value-item { padding: 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); }
.value-item .value-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.value-item h3 { font-size: 1.1rem; margin-bottom: 12px; }
.value-item p  { font-size: 0.875rem; }

/* --- Speaking Topics --- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.topic-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.topic-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.topic-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.topic-card p  { font-size: 0.82rem; }

/* --- Formats --- */
.formats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.format-tag {
  padding: 10px 20px;
  background: var(--purple-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple);
}

/* --- Coaching Offerings --- */
.coaching-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.coaching-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  text-align: center;
}
.coaching-card.featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px var(--purple);
}
.coaching-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
}
.coaching-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.coaching-card .card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.coaching-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.coaching-card .card-target { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.coaching-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; list-style: none; padding: 0; }
.coaching-card ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.coaching-card ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* --- How It Works --- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px;
  background: var(--border);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--purple-pale);
}
.step-item h4 { margin-bottom: 8px; font-size: 1rem; }
.step-item p  { font-size: 0.82rem; }

/* --- My Work Grid --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.work-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.work-card-header {
  padding: 36px 32px;
  color: var(--white);
}
.work-card-header h3 { color: var(--white); margin-bottom: 8px; }
.work-card-header p  { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.work-card-body { padding: 28px 32px; background: var(--white); }
.work-card-body p  { margin-bottom: 20px; font-size: 0.875rem; }
.wc-thrivewell .work-card-header { background: linear-gradient(135deg, #1a6b4a, #2d9e71); }
.wc-sitrid    .work-card-header { background: linear-gradient(135deg, #1a3d6b, #2d6ea8); }
.wc-deborah   .work-card-header { background: linear-gradient(135deg, #6b1a4a, #a82d7a); }
.wc-gold      .work-card-header { background: linear-gradient(135deg, #6b4a1a, #a87d2d); }

/* --- Contact Form --- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--purple); }
.form-check label { font-size: 0.82rem; color: var(--text-muted); }
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 4px; }
.ci-value { font-size: 0.9rem; color: var(--text); }
.ci-value a { color: var(--purple); transition: color var(--transition); }
.ci-value a:hover { color: var(--gold); }

/* --- Footer --- */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand .footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.75);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* --- Divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0 32px;
}
.gold-divider.centered { margin-left: auto; margin-right: auto; }

/* --- Inline CTA Block --- */
.cta-block {
  background: var(--purple-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.cta-block h2 { margin-bottom: 12px; }
.cta-block p  { margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --- Social Link Hover (replaces inline event handlers for CSP) --- */
.social-link {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.social-link:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
}
.social-link-icon {
  width: 32px;
  height: 32px;
  background: var(--purple-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.social-link-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}
.social-link-handle { font-size: 0.875rem; }

/* --- Utility --- */
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* =============================================
   ANIMATIONS
   ============================================= */

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--purple-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(201,162,39,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: scaleIn 0.5s ease both;
}
.preloader-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.preloader-logo-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.preloader-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  animation: fadeUp 0.5s ease both 0.2s;
}
.preloader-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease both 0.3s;
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: fadeIn 0.5s ease both 0.4s;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadBar 1.4s ease forwards 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes loadBar {
  0%   { transform: scaleX(0); }
  60%  { transform: scaleX(0.75); }
  100% { transform: scaleX(1); }
}

/* --- Keyframes --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,202,0,0); }
  50%       { box-shadow: 0 0 0 8px rgba(229,202,0,0.25); }
}

/* --- Hero entrance (fires on load) --- */
.home-hero .hero-content .section-label { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.home-hero .hero-content h1            { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.home-hero .hero-content .lead         { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.home-hero .hero-content .btn-group    { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.home-hero .hero-image                 { animation: fadeIn 1s ease both;   animation-delay: 0.4s; }

.page-hero .section-label { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
.page-hero h1              { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.page-hero .lead           { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }

/* --- Scroll-triggered base state --- */
.anim-fade-up,
.anim-fade-in,
.anim-slide-left,
.anim-slide-right,
.anim-scale {
  opacity: 0;
  transition: none;
}
.anim-fade-up.is-visible    { animation: fadeUp   0.65s ease forwards; }
.anim-fade-in.is-visible    { animation: fadeIn   0.65s ease forwards; }
.anim-slide-left.is-visible { animation: slideLeft  0.65s ease forwards; }
.anim-slide-right.is-visible{ animation: slideRight 0.65s ease forwards; }
.anim-scale.is-visible      { animation: scaleIn  0.6s ease forwards; }

/* Stagger delays for child items */
.anim-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.anim-stagger > *:nth-child(2) { animation-delay: 0.15s; }
.anim-stagger > *:nth-child(3) { animation-delay: 0.25s; }
.anim-stagger > *:nth-child(4) { animation-delay: 0.35s; }
.anim-stagger > *:nth-child(5) { animation-delay: 0.45s; }
.anim-stagger > *:nth-child(6) { animation-delay: 0.55s; }
.anim-stagger > *:nth-child(7) { animation-delay: 0.65s; }
.anim-stagger > *:nth-child(8) { animation-delay: 0.75s; }

/* Gold divider draw animation */
.gold-divider {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.gold-divider.centered { transform-origin: center; }
.gold-divider.is-visible { transform: scaleX(1); }

/* CTA block pulse on hover */
.cta-block:hover .btn-primary { animation: goldPulse 1.6s ease infinite; }

/* --- Scroll-to-top button --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(92,45,145,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pillars-grid   { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .books-grid     { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid    { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 32px; }
  .home-hero .container { grid-template-columns: minmax(0,1fr); }
  .hero-image     { display: none; }
  .coaching-cards { grid-template-columns: minmax(0,1fr); max-width: 540px; margin: 0 auto; }

  /* Switch to hamburger menu on tablet */
  .primary-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 2000;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--purple-dark);
    padding: 8px;
  }
  .mobile-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:hover { background: var(--purple-pale); color: var(--purple); }
  .mobile-nav .btn-primary,
  .mobile-nav .btn-primary:hover { background: var(--purple); color: var(--purple-dark); border-color: var(--purple); }
  .mobile-nav .btn-gold,
  .mobile-nav .btn-gold:hover    { background: var(--purple-dark); color: var(--white); border-color: var(--purple-dark); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .two-col        { grid-template-columns: minmax(0,1fr); gap: 40px; }
  .three-col      { grid-template-columns: minmax(0,1fr); }
  .pillars-grid   { grid-template-columns: minmax(0,1fr); }
  .books-grid     { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .testimonials-grid { grid-template-columns: minmax(0,1fr); }
  .topics-grid    { grid-template-columns: minmax(0,1fr); }
  .steps-row      { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .steps-row::before { display: none; }
  .work-grid      { grid-template-columns: minmax(0,1fr); }
  .credentials-grid { grid-template-columns: minmax(0,1fr); }
  .values-grid    { grid-template-columns: minmax(0,1fr); }
  .footer-grid    { grid-template-columns: minmax(0,1fr); }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
  .form-grid      { grid-template-columns: minmax(0,1fr); }
  .contact-form-wrap { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); overflow: visible; gap: 12px; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); }
  .site-topbar .container { justify-content: center; }
}

/* =============================================
   Store: cart / checkout / order tables & flash messages
   (also used by admin.css class names so both stylesheets agree)
   ============================================= */
.admin-table, .admin-table.store-cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.admin-table th { color: var(--text-muted); font-weight: 600; }
.store-cart-table-wrap { overflow-x: auto; }

.admin-flash {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.admin-flash-success { background: #eafaf1; color: #1a6b4a; border: 1px solid #b9e8cf; }
.admin-flash-error   { background: #fdecea; color: #a12622; border: 1px solid #f5c2c0; }

.admin-inline-form { display: inline-flex; align-items: center; gap: 6px; }
.admin-link-btn {
  background: none; border: none; padding: 0; font: inherit;
  color: var(--purple-dark); text-decoration: underline; cursor: pointer;
}
.admin-link-danger { color: #c0392b; }

.form-error { color: #c0392b; font-size: 0.85rem; margin-top: 12px; }

@media (max-width: 480px) {
  .books-grid     { grid-template-columns: minmax(0,1fr); }
  .btn-group      { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* Honeypot field — hidden from real visitors, left for bots to fill in */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
