@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');
:root{--navy:#002147;--gold:#C5A059;--bg-grey:#F5F7F9;--bg-tan:#F2F1EF;--pill-blue:#E8F0F2;--white:#FFFFFF;--text-grey:#6B7280;--dark-navy:#001530;--font-heading:'Playfair Display',Georgia,serif;--font-body:'Inter',system-ui,sans-serif}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--navy);line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit;transition:.3s}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* NAV */
.navbar{position:fixed;top:0;left:0;width:100%;z-index:1000;padding:16px 0;transition:.4s}
.navbar.scrolled{background:rgba(0,33,71,.97);backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,.15)}
.nav-inner{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{width:42px;height:42px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--white)}
.logo-text{font-family:var(--font-heading);color:var(--white);font-size:18px;font-weight:700;line-height:1.2}
.logo-text span{display:block;font-size:11px;letter-spacing:3px;font-weight:400;color:var(--gold);font-family:var(--font-body)}
.nav-links{display:flex;align-items:center;gap:32px;list-style:none}
.nav-links a{color:var(--white);font-weight:500;font-size:15px;position:relative}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--gold);transition:.3s}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 28px;border-radius:50px;font-weight:600;font-size:14px;cursor:pointer;border:none;transition:.3s}
.btn-gold{background:var(--gold);color:var(--white)}
.btn-gold:hover{background:#b8933e;transform:translateY(-2px);box-shadow:0 8px 25px rgba(197,160,89,.35)}
.btn-ghost{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.4)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn-navy{background:var(--navy);color:var(--white)}
.btn-navy:hover{background:var(--dark-navy);transform:translateY(-2px)}
.nav-cta .btn{padding:10px 22px;font-size:13px}
.mobile-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none}
.mobile-toggle span{width:24px;height:2px;background:var(--white);transition:.3s}

/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:flex-start;overflow:hidden;padding:180px 0 80px}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center bottom}
.hero-bg::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at center, rgba(255,255,255,0) 0%, rgba(0,33,71,0.4) 100%)}
.hero .container{position:relative;z-index:2;width:100%;max-width:100%;padding:0 5vw}
.hero-content{max-width:550px;text-shadow:0 2px 15px rgba(0,0,0,0.8)}
.hero-eyebrow{display:inline-block;color:var(--gold);font-size:13px;letter-spacing:1px;font-weight:700;margin-bottom:16px;text-transform:uppercase;line-height:1.5;text-shadow:0 2px 10px rgba(0,0,0,0.8)}
.hero h1{font-family:var(--font-heading);font-size:clamp(28px,3.5vw,44px);color:var(--white);line-height:1.2;margin-bottom:16px;font-weight:700}
.hero-sub{color:rgba(255,255,255,.9);font-size:16px;line-height:1.6;margin-bottom:32px;max-width:480px}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:48px}
.hero-contact{display:inline-flex;align-items:center;gap:24px;background:rgba(0,33,71,.7);backdrop-filter:blur(10px);padding:14px 28px;border-radius:50px;border:1px solid rgba(255,255,255,.1)}
.hero-contact a{color:var(--white);font-size:14px;display:flex;align-items:center;gap:8px}
.hero-contact a:hover{color:var(--gold)}
.hero-contact .divider{width:1px;height:20px;background:rgba(255,255,255,.2)}

/* SECTION COMMON */
section{padding:80px 0}
.section-eyebrow{display:inline-block;padding:6px 18px;background:var(--pill-blue);color:var(--navy);font-size:12px;letter-spacing:2px;font-weight:600;border-radius:50px;text-transform:uppercase;margin-bottom:16px}
.section-title{font-family:var(--font-heading);font-size:clamp(28px,3.5vw,42px);color:var(--navy);margin-bottom:16px;font-weight:700;line-height:1.25}
.section-title .gold{color:var(--gold)}
.section-subtitle{color:var(--text-grey);font-size:16px;line-height:1.7;max-width:700px}
.text-center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}

/* SERVICES */
.services{background:var(--bg-grey)}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:48px}
.service-card{background:var(--white);border-radius:16px;padding:36px 28px;box-shadow:0 4px 20px rgba(0,0,0,.05);transition:.3s}
.service-card:hover{transform:translateY(-6px);box-shadow:0 12px 35px rgba(0,0,0,.1)}
.service-icon{width:56px;height:56px;background:var(--pill-blue);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;color:var(--navy);margin-bottom:20px}
.service-card h3{font-family:var(--font-heading);font-size:20px;margin-bottom:12px;color:var(--navy)}
.service-card p{color:var(--text-grey);font-size:14px;line-height:1.7;margin-bottom:16px}
.service-card .learn-more{color:var(--gold);font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:6px}
.service-card .learn-more:hover{gap:10px}

/* STATS */
.stats-bar{background:var(--white);border-radius:16px;padding:32px 20px;box-shadow:0 8px 30px rgba(0,0,0,.06);display:flex;align-items:center;justify-content:space-between;margin-top:-40px;position:relative;z-index:5}
.stat-item{flex:1;text-align:center;padding:8px 10px;border-right:1px solid #e5e7eb}
.stat-item:last-child{border-right:none}
.stat-stars{color:var(--gold);font-size:16px;letter-spacing:4px;margin-bottom:4px}
.stat-number{font-family:var(--font-heading);font-size:28px;font-weight:700;color:var(--navy)}
.stat-label{color:var(--text-grey);font-size:13px;margin-top:4px}
.stat-icon{font-size:28px;color:var(--gold);margin-bottom:4px}

/* TESTIMONIAL */
.testimonial{padding:80px 0;text-align:center}
.testimonial-quote{font-size:48px;color:var(--gold);line-height:1;margin-bottom:16px}
.testimonial-text{font-family:var(--font-heading);font-style:italic;font-size:20px;color:var(--navy);max-width:700px;margin:0 auto 28px;line-height:1.6}
.testimonial-author{display:flex;align-items:center;justify-content:center;gap:14px}
.author-avatar{width:48px;height:48px;background:var(--pill-blue);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--navy);font-size:14px}
.author-info h4{font-size:15px;font-weight:600;color:var(--navy)}
.author-info p{font-size:13px;color:var(--text-grey)}
.testimonial-nav{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:28px}
.testimonial-nav .dot{width:10px;height:10px;border-radius:50%;background:#d1d5db;cursor:pointer;transition:.3s}
.testimonial-nav .dot.active{background:var(--gold);width:28px;border-radius:5px}
.testimonial-nav .arrow{width:36px;height:36px;border-radius:50%;border:1px solid #d1d5db;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.3s;background:none;font-size:14px;color:var(--navy)}
.testimonial-nav .arrow:hover{border-color:var(--gold);color:var(--gold)}

/* APPROACH */
.approach{background:var(--white)}
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:48px}
.approach-card{background:var(--bg-tan);border-radius:16px;padding:36px 28px;transition:.3s;position:relative}
.approach-card:hover{transform:translateY(-4px);box-shadow:0 12px 35px rgba(0,0,0,.08)}
.approach-number{width:48px;height:48px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--white);font-size:18px;margin-bottom:20px}
.approach-card h3{font-family:var(--font-heading);font-size:20px;color:var(--navy);margin-bottom:12px}
.approach-card p{color:var(--text-grey);font-size:14px;line-height:1.7}
.join-bar{background:var(--pill-blue);border-radius:16px;padding:28px 36px;display:flex;align-items:center;justify-content:space-between;margin-top:48px;gap:24px}
.join-bar-left{display:flex;align-items:center;gap:16px}
.join-bar-icon{width:48px;height:48px;background:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--navy);flex-shrink:0}
.join-bar h4{font-size:16px;font-weight:600;color:var(--navy)}
.join-bar p{font-size:14px;color:var(--text-grey)}

/* PROGRAMS */
.programs{background:var(--bg-tan)}
.programs-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-top:48px}
.programs-image{position:relative;border-radius:16px;overflow:hidden}
.programs-image img{border-radius:16px;width:100%;height:400px;object-fit:cover}
.floating-card{position:absolute;bottom:20px;left:20px;background:var(--white);padding:14px 22px;border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,.12);display:flex;align-items:center;gap:12px}
.floating-card .fc-icon{width:40px;height:40px;background:var(--pill-blue);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--navy)}
.floating-card h4{font-size:15px;font-weight:700;color:var(--navy)}
.floating-card p{font-size:12px;color:var(--text-grey)}
.programs-content .features-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:28px 0}
.feature-card{background:var(--white);padding:20px;border-radius:12px;display:flex;align-items:flex-start;gap:12px;transition:.3s;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.feature-card:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(0,0,0,.08)}
.feature-card .fi{font-size:20px;color:var(--navy);flex-shrink:0;width:36px;height:36px;background:var(--pill-blue);border-radius:8px;display:flex;align-items:center;justify-content:center}
.feature-card h4{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:4px}
.feature-card p{font-size:12px;color:var(--text-grey)}

/* CTA */
.cta-section{background:var(--navy);padding:80px 0;text-align:center}
.cta-section .section-eyebrow{background:rgba(255,255,255,.1);color:var(--white)}
.cta-section h2{font-family:var(--font-heading);font-size:clamp(28px,3.5vw,42px);color:var(--white);margin-bottom:16px}
.cta-section h2 .gold{color:var(--gold)}
.cta-section p{color:rgba(255,255,255,.7);font-size:16px;max-width:600px;margin:0 auto 36px;line-height:1.7}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* FOOTER */
.footer{background:var(--dark-navy);color:var(--white);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:40px;margin-bottom:40px}
.footer-about .logo{margin-bottom:16px}
.footer-about p{color:rgba(255,255,255,.6);font-size:14px;line-height:1.7;margin-bottom:16px}
.footer-quote{color:var(--gold);font-style:italic;font-size:14px;margin-bottom:20px}
.social-links{display:flex;gap:10px}
.social-links a{width:36px;height:36px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:14px;transition:.3s}
.social-links a:hover{transform:translateY(-3px);box-shadow:0 4px 15px rgba(197,160,89,.4)}
.footer-col h4{font-size:14px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px;color:var(--white)}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:10px}
.footer-col a{color:rgba(255,255,255,.6);font-size:14px}
.footer-col a:hover{color:var(--gold)}
.footer-col .contact-item{display:flex;align-items:center;gap:10px;margin-bottom:12px;color:rgba(255,255,255,.6);font-size:14px}
.footer-col .contact-item span{font-size:16px;color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{color:rgba(255,255,255,.4);font-size:13px}
.footer-bottom a{color:rgba(255,255,255,.4);font-size:13px}
.footer-bottom a:hover{color:var(--gold)}

/* ABOUT PAGE */
.page-hero{background:var(--navy);padding:140px 0 80px;text-align:center;position:relative;overflow:hidden}
.page-hero::before,.page-hero::after{content:'';position:absolute;width:300px;height:300px;border-radius:50%;border:60px solid rgba(255,255,255,.03)}
.page-hero::before{top:-100px;right:-100px}
.page-hero::after{bottom:-100px;left:-100px}
.breadcrumb{color:rgba(255,255,255,.6);font-size:14px;margin-bottom:20px}
.breadcrumb a{color:rgba(255,255,255,.6)}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb span{color:var(--white)}
.page-hero h1{font-family:var(--font-heading);font-size:clamp(32px,4.5vw,52px);color:var(--white);margin-bottom:16px}
.page-hero h1 .gold{color:var(--gold)}
.page-hero p{color:rgba(255,255,255,.7);font-size:17px;max-width:650px;margin:0 auto;line-height:1.7}

.story-section{padding:80px 0}
.story-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.story-image{border-radius:16px;overflow:hidden}
.story-image img{width:100%;height:420px;object-fit:cover;border-radius:16px}
.story-content .section-subtitle{max-width:none}
.mvv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:60px}
.mvv-card{background:var(--bg-grey);border-radius:16px;padding:32px 24px;transition:.3s}
.mvv-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.08)}
.mvv-card .mvv-icon{width:48px;height:48px;background:var(--pill-blue);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--gold);margin-bottom:16px}
.mvv-card .mvv-label{color:var(--gold);font-size:12px;letter-spacing:2px;font-weight:600;text-transform:uppercase;margin-bottom:8px}
.mvv-card h3{font-family:var(--font-heading);font-size:20px;color:var(--navy);margin-bottom:12px}
.mvv-card p{color:var(--text-grey);font-size:14px;line-height:1.7}

.team-section{background:var(--bg-tan);padding:80px 0}
.team-cards{margin-top:48px;display:flex;flex-direction:column;gap:24px}
.team-card{background:var(--white);border-radius:16px;display:grid;grid-template-columns:200px 1fr;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.05);transition:.3s}
.team-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.1)}
.team-card img{width:100%;height:100%;object-fit:cover;min-height:200px}
.team-card-content{padding:28px 32px;display:flex;flex-direction:column;justify-content:center}
.team-card h3{font-family:var(--font-heading);font-size:22px;color:var(--navy);margin-bottom:4px}
.team-card .role{color:var(--gold);font-size:14px;font-weight:600;margin-bottom:12px}
.team-card p{color:var(--text-grey);font-size:14px;line-height:1.7}

.join-section{position:relative;padding:100px 0;text-align:center;background:var(--navy);overflow:hidden}
.join-section::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,33,71,.9),rgba(0,21,48,.85))}
.join-section .container{position:relative;z-index:2}
.join-section h2{font-family:var(--font-heading);font-size:clamp(28px,3.5vw,42px);color:var(--white);margin-bottom:16px}
.join-section h2 .gold{color:var(--gold)}
.join-section p{color:rgba(255,255,255,.7);font-size:16px;max-width:600px;margin:0 auto 32px;line-height:1.7}

/* CONTACT PAGE */
.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:-60px;position:relative;z-index:5}
.contact-card{background:var(--white);border-radius:16px;padding:32px 24px;text-align:center;box-shadow:0 8px 30px rgba(0,0,0,.06);transition:.3s}
.contact-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.1)}
.contact-card .cc-icon{width:56px;height:56px;background:var(--pill-blue);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;color:var(--gold);margin:0 auto 16px}
.contact-card h3{font-size:16px;font-weight:700;color:var(--gold);margin-bottom:8px;text-transform:uppercase;letter-spacing:1px}
.contact-card p{color:var(--navy);font-size:15px;font-weight:600}
.contact-card .cc-sub{color:var(--text-grey);font-size:13px;font-weight:400;margin-top:4px}

.contact-form-section{background:var(--bg-tan);padding:80px 0}
.contact-layout{display:grid;grid-template-columns:1.2fr 1fr;gap:48px;align-items:start}
.contact-form{background:var(--white);border-radius:16px;padding:40px;box-shadow:0 4px 20px rgba(0,0,0,.05)}
.contact-form h3{font-family:var(--font-heading);font-size:24px;color:var(--navy);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:600;color:var(--navy);margin-bottom:6px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;background:var(--bg-grey);border:1px solid transparent;border-radius:10px;font-family:var(--font-body);font-size:14px;color:var(--navy);transition:.3s;outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(197,160,89,.15)}
.form-group textarea{resize:vertical;min-height:120px}

.faq-sidebar h3{font-family:var(--font-heading);font-size:24px;color:var(--navy);margin-bottom:24px}
.faq-item{background:var(--white);border-radius:12px;margin-bottom:12px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.faq-question{padding:16px 20px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:14px;color:var(--navy);transition:.3s}
.faq-question:hover{color:var(--gold)}
.faq-question .icon{width:28px;height:28px;background:var(--bg-grey);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--gold);transition:.3s;flex-shrink:0}
.faq-answer{padding:0 20px;max-height:0;overflow:hidden;transition:.4s;color:var(--text-grey);font-size:14px;line-height:1.7}
.faq-item.open .faq-answer{max-height:200px;padding:0 20px 16px}
.faq-item.open .icon{transform:rotate(45deg)}

.verse-card{background:var(--white);border-radius:16px;padding:32px;margin-top:28px;text-align:center;box-shadow:0 4px 20px rgba(0,0,0,.05)}
.verse-card .quote-mark{font-size:40px;color:var(--gold);line-height:1}
.verse-card blockquote{font-family:var(--font-heading);font-style:italic;font-size:17px;color:var(--navy);line-height:1.6;margin:12px 0}
.verse-card cite{color:var(--gold);font-size:13px;font-weight:600;letter-spacing:2px;font-style:normal}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.fade-up{opacity:0;transform:translateY(30px);transition:.6s ease-out}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* RESPONSIVE */
@media(max-width:968px){
.nav-links{display:none;position:fixed;top:0;left:0;width:100%;height:100vh;background:var(--navy);flex-direction:column;justify-content:center;align-items:center;gap:24px}
.nav-links.open{display:flex}
.mobile-toggle{display:flex}
.nav-cta{display:none}
.services-grid,.approach-grid,.mvv-grid,.contact-cards{grid-template-columns:1fr}
.stats-bar{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.stat-item{border-right:none}
.story-layout,.programs-layout,.contact-layout{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr 1fr}
.team-card{grid-template-columns:1fr}
.form-row{grid-template-columns:1fr}
}
@media(max-width:640px){
.stats-bar{grid-template-columns:1fr}
.hero-buttons{flex-direction:column}
.hero-contact{flex-direction:column;gap:12px}
.footer-grid{grid-template-columns:1fr}
.footer-bottom{flex-direction:column;text-align:center}
}
