/* ============================================================
   EDGE IMPACT — style.css
   Colors: Navy #1C2B4A | Orange #E87722 | Dark #0f1a2e | Off-white #F6F7F9
   Fonts: Bebas Neue (display) | DM Sans (body)
   ============================================================ */

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

:root {
  --navy:      #1C2B4A;
  --orange:    #E87722;
  --dark:      #0f1a2e;
  --offwhite:  #F6F7F9;
  --white:     #ffffff;
  --text:      #2a2a2a;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --radius:    6px;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
.display-xl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); line-height: 1; letter-spacing: .02em; }
.display-lg { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }
.display-md { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; }
.display-sm { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ── SECTION VARIANTS ── */
.section-navy { background: var(--navy); color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-offwhite { background: var(--offwhite); }
.section-orange { background: var(--orange); color: var(--white); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: .8rem 1.8rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: #cf6510; border-color: #cf6510; text-decoration: none; }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--dark); border-color: var(--dark); text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); text-decoration: none; }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); text-decoration: none; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--dark); border-bottom: 2px solid var(--orange); transition: all .3s; }
.navbar.scrolled { background: rgba(15,26,46,.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.navbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-logo img { height: 44px; width: auto; }
.navbar-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.navbar-links a { color: var(--white); font-weight: 600; font-size: .9rem; letter-spacing: .03em; transition: color .2s; }
.navbar-links a:hover { color: var(--orange); text-decoration: none; }
.navbar-cta { margin-left: 1rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all .3s; }
.mobile-nav { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 1rem 1.5rem 1.5rem; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a { display: block; padding: .9rem 0; color: var(--white); font-weight: 600; }

/* ── PAGE HERO ── */
.page-hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; padding-top: 68px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,26,46,.82) 0%, rgba(28,43,74,.65) 100%); }
.page-hero-diagonal { position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--white); -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.page-hero-diagonal.offwhite { background: var(--offwhite); }
.page-hero-diagonal.navy { background: var(--navy); }
.page-hero-content { position: relative; z-index: 2; padding: 5rem 0 6rem; }
.page-hero-visual { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; z-index: 1; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,26,46,1) 0%, transparent 60%); z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--orange); color: var(--white); padding: .4rem 1rem; border-radius: 2rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }

/* ── INFO BAND ── */
.info-band { background: var(--orange); color: var(--white); padding: 1rem 0; }
.info-band-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center; }
.info-item { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; }
.info-item svg { flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.trust-bar-inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.trust-logo { height: 44px; width: auto; object-fit: contain; opacity: 1; filter: none; transition: all .3s; }
.trust-logo:hover { opacity: .85; }

/* ── PROGRAM CARDS ── */
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.program-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.program-card-img { height: 220px; overflow: hidden; position: relative; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.program-card:hover .program-card-img img { transform: scale(1.04); }
.program-card-body { padding: 1.5rem; }
.program-card-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }

/* ── PHOTO GRID ── */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.photo-grid-item { overflow: hidden; aspect-ratio: 1; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-grid-item.tall { grid-row: span 2; aspect-ratio: auto; }
.photo-grid-item.wide { grid-column: span 2; aspect-ratio: auto; }

/* ── TESTIMONIAL ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--offwhite); border-radius: 8px; padding: 2rem; border-left: 4px solid var(--orange); }
.testimonial-quote { font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-meta { font-size: .82rem; color: var(--muted); }

/* ── PULL QUOTE ── */
.pull-quote { border-left: 5px solid var(--orange); padding: 1.5rem 2rem; background: var(--offwhite); border-radius: 0 8px 8px 0; margin: 2rem 0; }
.pull-quote p { font-size: 1.3rem; font-style: italic; font-weight: 600; color: var(--navy); line-height: 1.5; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--orange); }
.timeline-item { position: relative; padding: 0 0 2.5rem 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.55rem; top: .4rem; width: 16px; height: 16px; background: var(--orange); border-radius: 50%; border: 3px solid var(--white); }
.timeline-day { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--orange); }
.timeline-title { font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.timeline-desc { color: var(--muted); font-size: .95rem; margin-top: .25rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.2rem 0; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--navy); }
.faq-question svg { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1.2rem; color: var(--text); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── INCLUDED GRID ── */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.included-item { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem; background: rgba(255,255,255,.06); border-radius: var(--radius); }
.included-item svg { color: var(--orange); flex-shrink: 0; margin-top: .15rem; }

/* ── CONTENT WITH SIDEBAR ── */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--offwhite); border-radius: 8px; padding: 1.5rem; border-top: 4px solid var(--orange); }

/* ── ABOUT PHOTO ── */
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; border-radius: 8px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.about-photo-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--orange); color: var(--white); padding: 1rem 1.5rem; border-radius: 8px; text-align: center; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.stat-item { text-align: center; padding: 2rem 1rem; background: rgba(255,255,255,.06); border-radius: 8px; border-bottom: 3px solid var(--orange); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--orange); line-height: 1; }
.stat-label { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); margin-top: .4rem; }

/* ── BOLD CALLOUT ── */
.bold-callout { background: var(--navy); color: var(--white); padding: 3rem; border-radius: 8px; text-align: center; position: relative; overflow: hidden; }
.bold-callout::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }

/* ── STICKY CTA (mobile) ── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); border-top: 2px solid var(--orange); padding: .8rem 1.5rem; }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sticky-cta-text { font-size: .85rem; font-weight: 600; color: var(--white); }

/* ── SPLIT SECTIONS ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: 8px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── DIAGONAL DIVIDER ── */
.diagonal-divider { height: 60px; position: relative; overflow: hidden; }
.diagonal-divider::after { content: ''; position: absolute; inset: 0; background: inherit; -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%); clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { height: 40px; margin-bottom: 1rem; }
.footer-tagline { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-heading { font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.social-links a:hover { color: var(--orange); }

/* ── FORM ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: .95rem; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.rounded { border-radius: 8px; overflow: hidden; }
.shadow { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.tag { display: inline-block; background: rgba(232,119,34,.12); color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-visual { display: none; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: block; }
  .sticky-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-photo-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-block; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .display-xl { font-size: 2.8rem; }
}
