/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:       #E8921A;
  --amber-light: #F5B942;
  --amber-pale:  #FDF3E3;
  --orange-deep: #C45F00;
  --orange-dark: #9A4500;
  --cream:       #FFFCF5;
  --dark:        #1C1108;
  --mid:         #4A3520;
  --muted:       #7A6045;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(196,95,0,0.10);
  --shadow-md:   0 6px 24px rgba(196,95,0,0.14);
  --shadow-lg:   0 16px 48px rgba(196,95,0,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 112px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: #1a1a1a;
  color: var(--white);
  border-color: #1a1a1a;
}
.btn--primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--white {
  background: var(--white);
  color: var(--orange-deep);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--amber-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,146,26,0.12);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav__org-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer__brand .nav__org-name { color: var(--white); }

@media (max-width: 480px) {
  .nav__org-name { font-size: 0.95rem; }
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--amber), var(--orange-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--amber);
  background: rgba(232,146,26,0.08);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__mobile a:hover, .nav__mobile a.active {
  color: var(--amber);
  background: rgba(232,146,26,0.08);
}

.nav__mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--mid);
  border: none;
  background: none;
  line-height: 1;
  padding: 8px;
}

/* ===== PAGE OFFSET ===== */
.page-offset { padding-top: 88px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(28,17,8,0.88) 0%, rgba(61,31,0,0.82) 50%, rgba(107,53,0,0.78) 100%),
    url('blackmom7.jpg') center center / cover no-repeat;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,146,26,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,185,66,0.10) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(196,95,0,0.12) 0%, transparent 40%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px; height: 400px;
  background: var(--amber);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px; height: 300px;
  background: var(--orange-deep);
  bottom: -50px; left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,146,26,0.15);
  border: 1px solid rgba(232,146,26,0.3);
  color: var(--amber-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '\2193';
  font-size: 1.1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--amber-pale);
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 { color: var(--dark); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--muted); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(232,146,26,0.1);
  transition: all var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,146,26,0.2);
}

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--orange-deep);
  font-style: normal;
  line-height: 1;
}

.card h3 { color: var(--dark); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== PILLARS SECTION ===== */
.pillars { background: var(--white); }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #3D1F00 100%);
  color: var(--white);
  padding: 80px 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip h2 { color: var(--white); margin-bottom: 20px; }
.about-strip p { color: rgba(255,255,255,0.72); }

.about-strip__quote {
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--amber-light);
  line-height: 1.6;
}

/* ===== EMAIL SIGNUP ===== */
.signup { background: var(--amber-pale); }

.signup__form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}

.signup__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(232,146,26,0.25);
  border-radius: 50px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}

.signup__input:focus { border-color: var(--amber); }
.signup__input::placeholder { color: var(--muted); }

/* ===== PROGRAMS PAGE ===== */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,146,26,0.1);
  transition: all var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.program-card__header {
  padding: 32px 36px 24px;
  background: linear-gradient(135deg, var(--amber-pale), rgba(245,185,66,0.15));
  border-bottom: 1px solid rgba(232,146,26,0.1);
}

.program-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.program-card__header h3 { color: var(--dark); }

.program-card__body {
  padding: 28px 36px 36px;
}

.program-card__body p { color: var(--muted); }

/* ===== TEAM PAGE ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,146,26,0.1);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 28px auto 20px;
  background: linear-gradient(135deg, var(--amber-pale), rgba(245,185,66,0.2));
  overflow: hidden;
  flex-shrink: 0;
}

.team-card__avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.team-card__body { padding: 24px; }
.team-card__body h3 { color: var(--dark); margin-bottom: 4px; }
.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.team-card__body p { font-size: 0.9rem; color: var(--muted); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1C1108 0%, #3D1F00 60%, #6B3500 100%);
  padding: 100px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232,146,26,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(245,185,66,0.08) 0%, transparent 40%);
}

.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-tag { background: rgba(232,146,26,0.15); color: var(--amber-light); border: 1px solid rgba(232,146,26,0.25); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(232,146,26,0.1);
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(232,146,26,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== SUPPORT / CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange-deep) 100%);
  padding: 88px 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }

/* ===== INFO BOXES ===== */
.info-box {
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.info-box p { color: var(--mid); font-size: 0.9rem; }
.info-box strong { color: var(--orange-deep); }

/* ===== STATS ===== */
.stat-item {
  text-align: center;
  padding: 32px 16px;
}

.stat-item__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,146,26,0.2), transparent);
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #231f20;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo { color: var(--white); margin-bottom: 20px; display: inline-block; }
.footer__brand .nav__logo img { max-width: none; }
.footer__brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; color: #ffffff; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber-light); }

.footer__email {
  color: var(--amber-light);
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ===== ABOUT PAGE ===== */
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(232,146,26,0.1);
  transition: all var(--transition);
}

.values-list li:hover { border-color: rgba(232,146,26,0.25); box-shadow: var(--shadow-sm); }

.values-list__dot {
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.values-list__text strong { color: var(--dark); display: block; margin-bottom: 2px; }
.values-list__text span { font-size: 0.9rem; color: var(--muted); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: 85vh; }

  .about-strip__inner { grid-template-columns: 1fr; gap: 32px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .signup__form { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 24px; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .card { padding: 24px; }
  .program-card__body, .program-card__header { padding-left: 24px; padding-right: 24px; }
  .nav__org-name { font-size: 0.95rem; }
}
