/* ============================================================
   CHRISTOPHER COLUMBUS SEMBUYA FOUNDATION
   Colour Palette: Deep Navy #0d1f3c | Gold #c9a84c | Warm White #faf8f4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600&display=swap');

:root {
  --navy:        #0d1f3c;
  --navy-2:      #162947;
  --navy-3:      #1e3560;
  --navy-4:      #243f74;
  --gold:        #c9a84c;
  --gold-light:  #e0c068;
  --gold-pale:   #fdf6e3;
  --gold-dim:    rgba(201,168,76,.18);
  --cream:       #faf8f4;
  --cream-2:     #f4f0e8;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-body:   #3d3d52;
  --text-muted:  #7a7a95;
  --border:      #e8e2d6;
  --border-gold: rgba(201,168,76,.3);
  --success:     #2d7a4a;
  --shadow-sm:   0 2px 12px rgba(13,31,60,.08);
  --shadow-md:   0 6px 28px rgba(13,31,60,.13);
  --shadow-lg:   0 12px 48px rgba(13,31,60,.18);
  --r-sm:  6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cinzel', serif;
  --font-b: 'Lato', sans-serif;
  --t: 0.28s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body { background:var(--cream); color:var(--text-body); font-family:var(--font-b); line-height:1.75; overflow-x:hidden }
img  { max-width:100%; display:block }
a    { color:inherit; text-decoration:none }
ul   { list-style:none }
button,input,select,textarea { font-family:var(--font-b) }
::selection { background:var(--gold); color:var(--white) }
::-webkit-scrollbar { width:6px }
::-webkit-scrollbar-track { background:var(--cream-2) }
::-webkit-scrollbar-thumb { background:var(--navy-3); border-radius:3px }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-h); color:var(--text-dark); line-height:1.2; letter-spacing:-.01em }
h1 { font-size:clamp(2rem,5vw,3.6rem); font-weight:700 }
h2 { font-size:clamp(1.7rem,3.5vw,2.6rem); font-weight:700 }
h3 { font-size:clamp(1.1rem,2vw,1.4rem); font-weight:600 }
h4 { font-size:1.05rem; font-weight:600 }
p  { color:var(--text-body); font-size:.96rem; line-height:1.8 }

.eyebrow {
  display:inline-block; font-family:var(--font-accent);
  font-size:.68rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); background:var(--gold-pale); border:1px solid var(--border-gold);
  border-radius:var(--r-full); padding:.28rem 1rem; margin-bottom:1rem;
}

/* ── LAYOUT ── */
.container { max-width:1160px; margin:0 auto; padding:0 5vw }
.section    { padding:5.5rem 5vw }
.section-sm { padding:3.5rem 5vw }
.s-white  { background:var(--white) }
.s-cream  { background:var(--cream) }
.s-cream2 { background:var(--cream-2) }
.s-navy   { background:var(--navy) }
.grid-2   { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center }
.grid-3   { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem }
.grid-4   { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem }
.text-center { text-align:center }

/* ── GOLD DIVIDER ── */
.gold-divider { display:flex; align-items:center; gap:.8rem; margin:.8rem 0 1.4rem }
.gold-divider span:first-child,
.gold-divider span:last-child  { flex:1; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent) }
.gold-divider .diamond { width:10px; height:10px; background:var(--gold); transform:rotate(45deg); flex-shrink:0 }
.gold-divider.center { justify-content:center }
.gold-line { width:60px; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); margin:.8rem 0 1.4rem; border-radius:2px }
.gold-line.center { margin:.8rem auto 1.4rem }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:7px; padding:.75rem 1.9rem; border-radius:var(--r-full); font-family:var(--font-b); font-size:.9rem; font-weight:700; letter-spacing:.04em; border:2px solid transparent; cursor:pointer; transition:all var(--t); white-space:nowrap; text-transform:uppercase }
.btn-gold  { background:var(--gold); color:var(--navy); border-color:var(--gold) }
.btn-gold:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,168,76,.35) }
.btn-navy  { background:var(--navy); color:var(--white); border-color:var(--navy) }
.btn-navy:hover { background:var(--navy-2); transform:translateY(-2px); box-shadow:var(--shadow-md) }
.btn-outline-gold { background:transparent; color:var(--gold); border-color:var(--gold) }
.btn-outline-gold:hover { background:var(--gold); color:var(--navy) }
.btn-outline-white { background:transparent; color:var(--white); border-color:rgba(255,255,255,.6) }
.btn-outline-white:hover { background:var(--white); color:var(--navy) }
.btn-sm  { padding:.5rem 1.3rem; font-size:.78rem }
.btn-lg  { padding:.95rem 2.3rem; font-size:.95rem }

/* ── NAVBAR ── */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; height:76px; display:flex; align-items:center; justify-content:space-between; padding:0 5vw; background:rgba(13,31,60,.97); backdrop-filter:blur(20px); border-bottom:1px solid rgba(201,168,76,.15); transition:var(--t) }
#navbar.scrolled { box-shadow:0 4px 32px rgba(0,0,0,.35) }
.nav-logo { display:flex; align-items:center; gap:.9rem }
.nav-logo img { height:50px; width:auto; object-fit:contain }
.nav-logo-text { font-family:var(--font-accent); font-size:.85rem; font-weight:600; color:var(--white); line-height:1.3; letter-spacing:.03em }
.nav-logo-text span { color:var(--gold); display:block; font-size:.62rem; font-weight:400; letter-spacing:.08em; margin-top:1px; font-family:var(--font-b) }
.nav-links { display:flex; align-items:center; gap:.1rem }
.nav-links>li>a { padding:.5rem .85rem; font-size:.83rem; font-weight:700; color:rgba(255,255,255,.75); border-radius:var(--r-md); transition:var(--t); letter-spacing:.03em; text-transform:uppercase }
.nav-links>li>a:hover,.nav-links>li>a.active { color:var(--gold); background:rgba(201,168,76,.1) }
.nav-dropdown { position:relative }
.dropdown-menu { position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%); background:var(--navy-2); border:1px solid rgba(201,168,76,.2); border-radius:var(--r-lg); padding:.5rem; min-width:230px; box-shadow:var(--shadow-lg); opacity:0; visibility:hidden; transition:var(--t) }
.nav-dropdown:hover .dropdown-menu { opacity:1; visibility:visible }
.dropdown-menu a { display:block; padding:.6rem 1rem; border-radius:var(--r-md); font-size:.82rem; color:rgba(255,255,255,.7); transition:var(--t); font-weight:600; letter-spacing:.02em; text-transform:uppercase }
.dropdown-menu a:hover { color:var(--gold); background:rgba(201,168,76,.1) }
.nav-cta { background:var(--gold)!important; color:var(--navy)!important; border-radius:var(--r-full)!important; padding:.5rem 1.3rem!important; font-weight:700!important; margin-left:.5rem; letter-spacing:.04em!important; text-transform:uppercase!important }
.nav-cta:hover { background:var(--gold-light)!important; color:var(--navy)!important }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none }
.hamburger span { width:22px; height:2px; background:var(--white); transition:var(--t); display:block; border-radius:2px }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
.hamburger.open span:nth-child(2) { opacity:0 }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }

/* ── HERO SLIDER ── */
.hero-slider { position:relative; width:100%; height:calc(100vh - 76px); min-height:580px; overflow:hidden }
.slide { position:absolute; inset:0; display:flex; align-items:center; opacity:0; transition:opacity 1.2s ease; pointer-events:none }
.slide.active { opacity:1; pointer-events:auto; z-index:2 }
.slide-bg { position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.06); transition:transform 8s ease }
.slide.active .slide-bg { transform:scale(1) }
.slide-overlay { position:absolute; inset:0; background:linear-gradient(100deg,rgba(8,18,40,.88) 0%,rgba(8,18,40,.55) 55%,rgba(8,18,40,.2) 100%) }
.slide-content { position:relative; z-index:2; padding:0 5vw; max-width:720px }
.slide-year { display:inline-block; font-family:var(--font-accent); font-size:.7rem; letter-spacing:.2em; color:var(--gold); background:rgba(201,168,76,.15); border:1px solid rgba(201,168,76,.4); border-radius:var(--r-full); padding:.3rem 1rem; margin-bottom:1.2rem }
.slide-content h1 { color:var(--white); text-shadow:0 2px 24px rgba(0,0,0,.4); margin-bottom:1rem }
.slide-content h1 em { color:var(--gold-light); font-style:normal }
.slide-content p { color:rgba(255,255,255,.82); font-size:1.05rem; max-width:540px; margin-bottom:2.2rem; font-weight:300 }
.slide-actions { display:flex; gap:1rem; flex-wrap:wrap }
.slider-dots { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); display:flex; gap:.6rem; z-index:10 }
.slider-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.35); border:2px solid transparent; cursor:pointer; transition:var(--t) }
.slider-dot.active { background:var(--gold); border-color:var(--white); transform:scale(1.25) }
.slider-arrows { position:absolute; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; padding:0 1.2rem; z-index:10; pointer-events:none }
.slider-arrow { width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3); color:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; pointer-events:auto; transition:var(--t); font-size:1rem }
.slider-arrow:hover { background:var(--gold); border-color:var(--gold); color:var(--navy) }
.slide-progress { position:absolute; bottom:0; left:0; height:3px; background:var(--gold); z-index:10; width:0; transition:none }

/* ── SECTION HEADER ── */
.section-header { max-width:700px }
.section-header.center { margin:0 auto; text-align:center }
.section-header h2 { margin-bottom:.6rem }
.section-header p  { font-size:1rem; color:var(--text-muted); max-width:560px }
.section-header.center p { margin:0 auto }

/* ── CARDS ── */
.card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:2rem; transition:all var(--t); box-shadow:var(--shadow-sm) }
.card:hover { border-color:var(--border-gold); box-shadow:var(--shadow-md); transform:translateY(-4px) }
.card h3 { margin-bottom:.5rem }
.card p  { font-size:.9rem; color:var(--text-muted); line-height:1.7 }

/* ── PROGRAM CARDS ── */
.program-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:all var(--t); box-shadow:var(--shadow-sm); display:flex; flex-direction:column }
.program-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); border-color:transparent }
.program-card-top { height:5px; background:linear-gradient(90deg,var(--navy),var(--gold)) }
.program-card-body { padding:1.8rem; flex:1; display:flex; flex-direction:column }
.program-icon { font-size:2.2rem; margin-bottom:.9rem }
.program-card-body h3 { margin-bottom:.5rem; font-size:1.15rem }
.program-card-body p { font-size:.88rem; color:var(--text-muted); flex:1; margin-bottom:1.4rem }
.program-card-body a { margin-top:auto }

/* ── FOUNDER CARDS ── */
.founder-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:2rem; text-align:center; box-shadow:var(--shadow-sm); transition:all var(--t) }
.founder-card:hover { box-shadow:var(--shadow-md); border-color:var(--border-gold) }
.founder-avatar { width:88px; height:88px; border-radius:50%; margin:0 auto 1rem; background:var(--navy-3); border:3px solid var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:1.5rem; font-weight:700; color:var(--gold); overflow:hidden }
.founder-avatar img { width:100%; height:100%; object-fit:cover }
.founder-card h4 { margin-bottom:.2rem; font-size:1rem }
.founder-role { font-size:.78rem; color:var(--gold); font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:.7rem }
.founder-card p { font-size:.84rem; color:var(--text-muted); line-height:1.65 }

/* ── QUOTE BLOCK ── */
.quote-block { border-left:4px solid var(--gold); padding:1.5rem 2rem; background:var(--gold-pale); border-radius:0 var(--r-lg) var(--r-lg) 0; margin:2rem 0 }
.quote-block p { font-family:var(--font-h); font-size:1.1rem; font-style:italic; color:var(--text-dark); line-height:1.7 }
.quote-block cite { display:block; margin-top:.8rem; font-size:.82rem; color:var(--text-muted); font-style:normal }

/* ── TIMELINE ── */
.timeline { position:relative; padding-left:2.5rem }
.timeline::before { content:''; position:absolute; left:.9rem; top:0; bottom:0; width:2px; background:linear-gradient(180deg,var(--gold),var(--navy)); border-radius:2px }
.timeline-item { position:relative; padding-bottom:2rem }
.timeline-item::before { content:''; position:absolute; left:-1.75rem; top:.3rem; width:12px; height:12px; border-radius:50%; background:var(--gold); border:3px solid var(--white); box-shadow:0 0 0 2px var(--gold) }
.timeline-year { font-family:var(--font-accent); font-size:.72rem; color:var(--gold); font-weight:600; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.3rem }
.timeline-item h4 { margin-bottom:.3rem; font-size:1rem }
.timeline-item p { font-size:.87rem; color:var(--text-muted) }

/* ── VALUE CARDS ── */
.value-card { border-left:4px solid var(--gold); padding:1.5rem; background:var(--white); border-radius:0 var(--r-lg) var(--r-lg) 0; box-shadow:var(--shadow-sm); transition:all var(--t) }
.value-card:hover { box-shadow:var(--shadow-md); transform:translateX(4px) }
.value-icon { font-size:1.8rem; margin-bottom:.7rem }
.value-card h4 { color:var(--navy); margin-bottom:.4rem; font-family:var(--font-accent); letter-spacing:.04em }
.value-card p { font-size:.87rem; color:var(--text-muted) }

/* ── FORMS ── */
.form-group { display:flex; flex-direction:column; gap:.4rem }
.form-group label { font-size:.74rem; font-weight:700; color:var(--text-dark); letter-spacing:.06em; text-transform:uppercase }
.form-group input,.form-group select,.form-group textarea { background:var(--cream); border:1.5px solid var(--border); border-radius:var(--r-md); padding:.78rem 1rem; color:var(--text-dark); font-size:.9rem; outline:none; transition:border-color var(--t),box-shadow var(--t) }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.12) }
.form-group textarea { resize:vertical; min-height:130px }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem }

/* ── PAGE HERO ── */
.page-hero { background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%); padding:9.5rem 5vw 4.5rem; position:relative; overflow:hidden; margin-top:76px }
.page-hero::before { content:''; position:absolute; top:-100px; right:-100px; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 70%) }
.page-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent) }
.page-hero .eyebrow { background:rgba(201,168,76,.12); color:var(--gold-light); border-color:rgba(201,168,76,.25) }
.page-hero h1 { color:var(--white); margin-bottom:.8rem }
.page-hero p  { color:rgba(255,255,255,.72); font-size:1rem; max-width:560px }
.breadcrumb { display:flex; align-items:center; gap:.5rem; font-size:.78rem; color:rgba(255,255,255,.45); margin-bottom:.8rem }
.breadcrumb a { color:var(--gold-light) }
.breadcrumb span { opacity:.4 }

/* ── FOOTER ── */
#footer { background:var(--navy) }
.footer-top { padding:4.5rem 5vw 3rem; border-bottom:1px solid rgba(201,168,76,.15) }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem }
.footer-brand p { font-size:.85rem; color:rgba(255,255,255,.5); line-height:1.85; max-width:280px; margin-top:1rem }
.footer-brand .logo-row { display:flex; align-items:center; gap:.8rem }
.footer-brand .logo-row img { height:50px; background:rgba(255,255,255,.08); border-radius:var(--r-md); padding:4px }
.footer-brand .logo-text { font-family:var(--font-accent); font-size:.9rem; font-weight:600; color:var(--white) }
.footer-brand .logo-text span { color:var(--gold); display:block; font-family:var(--font-b); font-size:.65rem; letter-spacing:.08em }
.footer-social { display:flex; gap:.6rem; margin-top:1.3rem }
.footer-social a { width:36px; height:36px; border-radius:var(--r-md); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:.82rem; transition:var(--t); color:rgba(255,255,255,.5) }
.footer-social a:hover { background:var(--gold); color:var(--navy); border-color:var(--gold) }
.footer-col h4 { font-family:var(--font-accent); font-size:.75rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-light); margin-bottom:1.2rem }
.footer-col ul li { margin-bottom:.55rem }
.footer-col ul li a { font-size:.84rem; color:rgba(255,255,255,.5); transition:color var(--t); display:flex; align-items:center; gap:.4rem }
.footer-col ul li a:hover { color:var(--gold-light) }
.footer-bottom { padding:1.4rem 5vw; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem }
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.3) }
.footer-bottom a { color:rgba(255,255,255,.3); transition:color var(--t) }
.footer-bottom a:hover { color:var(--gold) }

/* ── MOBILE NAV ── */
.mobile-nav { display:none; position:fixed; inset:0; z-index:999; background:var(--navy); padding:5.5rem 5vw 2rem; flex-direction:column; gap:.3rem; overflow-y:auto }
.mobile-nav.open { display:flex }
.mobile-nav a { font-size:1rem; font-weight:700; color:rgba(255,255,255,.7); padding:.8rem 0; border-bottom:1px solid rgba(255,255,255,.08); letter-spacing:.04em; text-transform:uppercase }
.mobile-nav a:hover { color:var(--gold) }

/* ── ANIMATIONS ── */
.fade-up   { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease }
.fade-left { opacity:0; transform:translateX(-24px); transition:opacity .65s ease,transform .65s ease }
.fade-right{ opacity:0; transform:translateX(24px); transition:opacity .65s ease,transform .65s ease }
.fade-up.visible,.fade-left.visible,.fade-right.visible { opacity:1; transform:translate(0) }
[data-delay="100"]{transition-delay:.1s}[data-delay="200"]{transition-delay:.2s}
[data-delay="300"]{transition-delay:.3s}[data-delay="400"]{transition-delay:.4s}

/* ── BACK TO TOP ── */
#back-top { position:fixed; bottom:1.8rem; right:1.8rem; z-index:500; width:44px; height:44px; border-radius:50%; background:var(--gold); color:var(--navy); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; visibility:hidden; transition:var(--t); box-shadow:0 4px 16px rgba(201,168,76,.4); font-size:1rem; font-weight:700 }
#back-top.show { opacity:1; visibility:visible }
#back-top:hover { background:var(--gold-light); transform:translateY(-3px) }

/* ── TOAST ── */
#toast-container { position:fixed; bottom:2rem; left:2rem; z-index:9999; display:flex; flex-direction:column; gap:.7rem }
.toast { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:.9rem 1.3rem; display:flex; align-items:center; gap:.8rem; box-shadow:var(--shadow-lg); animation:toastIn .3s ease; min-width:280px; font-size:.85rem }
.toast.success { border-left:3px solid var(--success) }
.toast.error   { border-left:3px solid #c0392b }
@keyframes toastIn { from{transform:translateX(-100%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ── PRELOADER ── */
#preloader { position:fixed; inset:0; z-index:99999; background:var(--navy); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.8rem }
#preloader img { height:70px; animation:pp 1s infinite }
@keyframes pp { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.04)} }
.loader-bar { width:200px; height:2px; background:rgba(255,255,255,.1); border-radius:2px; overflow:hidden }
.loader-prog { height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-light)); width:0; animation:load 1.4s ease forwards }
@keyframes load { to{width:100%} }
.loader-text { font-family:var(--font-accent); font-size:.72rem; letter-spacing:.2em; color:rgba(255,255,255,.4); text-transform:uppercase }

/* ── GALLERY ── */
.gallery-grid { columns:3; gap:1rem }
.gallery-item { break-inside:avoid; margin-bottom:1rem; border-radius:var(--r-lg); overflow:hidden; cursor:pointer; position:relative }
.gallery-item img { width:100%; display:block; transition:transform .4s ease }
.gallery-item:hover img { transform:scale(1.05) }
.gallery-overlay { position:absolute; inset:0; background:rgba(13,31,60,.75); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity var(--t) }
.gallery-item:hover .gallery-overlay { opacity:1 }
.lightbox { position:fixed; inset:0; z-index:2000; background:rgba(5,12,25,.95); display:none; align-items:center; justify-content:center }
.lightbox.open { display:flex }
.lightbox-img { max-width:90vw; max-height:85vh; border-radius:var(--r-lg) }
.lightbox-close { position:absolute; top:1.5rem; right:1.5rem; font-size:2rem; color:rgba(255,255,255,.6); cursor:pointer; background:none; border:none; transition:color var(--t) }
.lightbox-close:hover { color:var(--gold) }

/* ── BLOG ── */
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:all var(--t); box-shadow:var(--shadow-sm) }
.blog-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px) }
.blog-card-img { width:100%; height:210px; object-fit:cover; background:var(--cream-2) }
.blog-card-body { padding:1.5rem }
.blog-meta { display:flex; align-items:center; gap:.8rem; font-size:.76rem; color:var(--text-muted); margin-bottom:.7rem; flex-wrap:wrap }
.blog-card h3 { font-size:1.05rem; margin-bottom:.5rem; line-height:1.4 }
.blog-card p { font-size:.86rem; color:var(--text-muted); -webkit-line-clamp:3; display:-webkit-box; -webkit-box-orient:vertical; overflow:hidden }

/* ── BADGES ── */
.badge { display:inline-flex; align-items:center; border-radius:var(--r-full); padding:.2rem .75rem; font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase }
.badge-gold  { background:var(--gold-pale); color:#8a6e1a; border:1px solid var(--border-gold) }
.badge-navy  { background:#e8edf8; color:var(--navy); border:1px solid rgba(13,31,60,.2) }

/* ── MARQUEE ── */
.marquee-wrap { background:var(--navy); border-top:1px solid rgba(201,168,76,.15); border-bottom:1px solid rgba(201,168,76,.15); padding:.9rem 0; overflow:hidden }
.marquee-inner { display:flex; gap:3rem; animation:marquee 28s linear infinite; width:max-content; white-space:nowrap }
.marquee-inner span { font-family:var(--font-accent); font-size:.72rem; color:rgba(255,255,255,.4); letter-spacing:.15em; text-transform:uppercase; display:flex; align-items:center; gap:.7rem }
.marquee-inner span::before { content:'◆'; color:var(--gold); font-size:.5rem }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STATS BAR ── */
.stats-bar { background:var(--navy-2); border-bottom:1px solid rgba(201,168,76,.15); padding:1.8rem 5vw }
.stats-inner { display:flex; align-items:center; justify-content:space-around; flex-wrap:wrap; gap:1.5rem }
.s-item { text-align:center }
.s-num  { font-family:var(--font-h); font-size:2.2rem; font-weight:700; color:var(--white); line-height:1 }
.s-num span { color:var(--gold) }
.s-lbl  { font-family:var(--font-accent); font-size:.68rem; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.1em; margin-top:.3rem }
.s-div  { width:1px; height:44px; background:rgba(201,168,76,.2) }

/* ── CTA BANNER ── */
.cta-banner { background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%); border-radius:var(--r-xl); padding:4rem; text-align:center; position:relative; overflow:hidden }
.cta-banner::before { content:''; position:absolute; top:-80px; left:-80px; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,rgba(201,168,76,.15) 0%,transparent 70%) }
.cta-banner::after { content:''; position:absolute; bottom:0; left:10%; right:10%; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent) }
.cta-banner h2 { color:var(--white); margin-bottom:.8rem; position:relative; z-index:1 }
.cta-banner p { color:rgba(255,255,255,.7); max-width:480px; margin:0 auto 2rem; position:relative; z-index:1 }
.cta-banner .btn-wrap { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; position:relative; z-index:1 }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr) }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem }
}
@media(max-width:768px) {
  .nav-links { display:none }
  .hamburger { display:flex }
  .grid-2,.grid-3 { grid-template-columns:1fr; gap:2rem }
  .grid-4 { grid-template-columns:1fr }
  .gallery-grid { columns:2 }
  .hero-slider { height:80vh; min-height:480px }
  .footer-grid { grid-template-columns:1fr }
  .form-grid { grid-template-columns:1fr }
  .page-hero { padding:8rem 5vw 3rem }
  .s-div { display:none }
  .cta-banner { padding:2.5rem 1.5rem }
}
@media(max-width:480px) { .gallery-grid{columns:1} }
