:root {
  --navy: #1B3A57; --navy-dark: #0f2338; --navy-light: #234970;
  --gold: #D4AF37; --gold-light: #e8c84a;
  --cream: #FAF8F2; --white: #ffffff;
  --text-dark: #1a1a2e; --text-mid: #4a5568; --text-light: #718096;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* NAV */
nav { background: var(--navy-dark); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--gold); }
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-svg { width: 42px; height: 42px; }
.nav-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--gold); letter-spacing: 1px; }
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active-link { color: var(--gold); background: rgba(212,175,55,0.1); }

/* HERO (home) */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%); }
.hero-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212,175,55,0.03) 60px, rgba(212,175,55,0.03) 61px); }
.hero-content { position: relative; z-index: 2; padding: 40px 20px; animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-shield { width: 110px; height: 110px; margin: 0 auto 28px; filter: drop-shadow(0 8px 24px rgba(212,175,55,0.3)); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0%,100% { filter: drop-shadow(0 8px 24px rgba(212,175,55,0.3)); } 50% { filter: drop-shadow(0 8px 32px rgba(212,175,55,0.55)); } }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 7vw, 82px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.hero-title span { color: var(--gold); font-weight: 600; }
.hero-tagline { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.hero-divider { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 28px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 44px; line-height: 1.8; font-weight: 300; }
.hero-cta { display: inline-block; background: var(--gold); color: var(--navy-dark); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 38px; border-radius: 2px; cursor: pointer; transition: all 0.3s; border: 2px solid var(--gold); text-decoration: none; }
.hero-cta:hover { background: transparent; color: var(--gold); }

/* SECTION common */
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.section-subtitle { font-size: 14px; color: var(--text-mid); max-width: 560px; line-height: 1.8; }
.gold-rule { width: 60px; height: 3px; background: var(--gold); margin: 22px 0; }

/* HQ Mission/Vision */
.hq-mv-section { background: var(--cream); padding: 80px 40px; }
.hq-mv-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.hq-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; text-align: left; }
.hq-mv-card { background: var(--white); border: 1px solid rgba(27,58,87,0.1); border-top: 4px solid var(--gold); padding: 44px; border-radius: 2px; box-shadow: 0 6px 30px rgba(27,58,87,0.07); }
.hq-mv-card-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.hq-mv-card-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.hq-mv-card-text { font-size: 14px; color: var(--text-mid); line-height: 1.9; }

/* Pillars */
.pillars-intro { background: var(--white); text-align: center; padding: 80px 40px 20px; }
.pillars-grid { background: var(--white); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 40px; max-width: 1400px; margin: 0 auto; }
.pillar-card { padding: 44px 28px; cursor: pointer; transition: all 0.35s; position: relative; border: 1px solid rgba(27,58,87,0.08); background: var(--white); text-align: center; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.pillar-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { background: var(--navy-dark); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(27,58,87,0.25); }
.pillar-card:hover .pillar-name, .pillar-card:hover .pillar-desc { color: var(--white); }
.pillar-card:hover .pillar-sub { color: var(--gold-light); }
.pillar-logo-wrap { width: 110px; height: 110px; margin: 0 auto 20px; transition: transform 0.3s; cursor: pointer; position: relative; display: block; }
.pillar-logo-wrap:hover { transform: scale(1.08); }
.pillar-logo-wrap img { width: 100%; height: 100%; }
.pillar-logo-wrap .zoom-hint { position: absolute; bottom: -2px; right: -2px; background: var(--gold); color: var(--navy-dark); font-size: 8px; font-weight: 700; padding: 2px 5px; border-radius: 2px; opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.pillar-logo-wrap:hover .zoom-hint { opacity: 1; }
.pillar-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; transition: color 0.35s; }
.pillar-sub { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; transition: color 0.35s; }
.pillar-desc { font-size: 12px; color: var(--text-mid); line-height: 1.7; transition: color 0.35s; }
.pillar-arrow { display: inline-block; margin-top: 18px; font-size: 20px; color: var(--gold); transition: transform 0.3s; }
.pillar-card:hover .pillar-arrow { transform: translateX(6px); }

/* About strip */
.about-strip { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 40px; text-align: center; }
.about-strip .section-title { color: var(--white); max-width: 600px; margin: 0 auto; }
.about-strip .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }

/* Contact */
.contact-section { background: var(--cream); padding: 80px 40px; text-align: center; }
.contact-card { display: inline-block; background: var(--white); border: 1px solid rgba(27,58,87,0.1); border-top: 4px solid var(--gold); padding: 50px 60px; border-radius: 2px; box-shadow: 0 10px 40px rgba(27,58,87,0.08); margin-top: 40px; }
.contact-email { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); font-weight: 600; display: block; margin-bottom: 10px; }
.contact-email a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-email a:hover { color: var(--gold); }
.contact-location { font-size: 12px; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }

/* Footer */
footer { background: var(--navy-dark); border-top: 2px solid var(--gold); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); font-weight: 600; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* Pillar page hero */
.pillar-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 80px 40px 60px; position: relative; overflow: hidden; }
.pillar-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%); }
.pillar-hero-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 50px; flex-wrap: wrap; position: relative; z-index: 2; }
.pillar-hero-logo { width: 140px; height: 140px; flex-shrink: 0; cursor: pointer; transition: transform 0.3s; }
.pillar-hero-logo:hover { transform: scale(1.05); }
.pillar-hero-logo img { width: 100%; height: 100%; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); cursor: pointer; margin-bottom: 22px; transition: gap 0.2s; background: none; border: none; text-decoration: none; }
.back-btn:hover { gap: 12px; }
.pillar-page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 62px); font-weight: 500; color: var(--white); line-height: 1.1; margin-bottom: 8px; }
.pillar-page-sub { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }

/* Mission/Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto 50px; }
.mv-card { background: var(--white); border: 1px solid rgba(27,58,87,0.1); padding: 38px; border-radius: 2px; position: relative; overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.mv-card-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.mv-card-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.mv-card-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* Services */
.services-section { background: var(--navy-dark); padding: 70px 40px; }
.services-section .section-title { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 40px auto 0; }
.service-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.2); border-left: 3px solid var(--gold); padding: 22px 24px; border-radius: 2px; }
.service-item-icon { font-size: 22px; margin-bottom: 10px; }
.service-item-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.service-item-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Hub */
.hub-section { background: var(--cream); padding: 70px 40px; text-align: center; }
.hub-inner { max-width: 700px; margin: 0 auto; }
.hub-coming-soon { display: inline-block; margin-top: 36px; background: var(--white); border: 2px dashed var(--gold); border-radius: 4px; padding: 40px 60px; }
.hub-coming-soon-icon { font-size: 40px; margin-bottom: 14px; }
.hub-coming-soon-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.hub-coming-soon-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

.pillar-content-section { padding: 70px 40px; background: var(--cream); }
.pillar-content-inner { max-width: 900px; margin: 0 auto; }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(10,20,35,0.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-box { background: var(--navy-dark); border: 2px solid var(--gold); border-radius: 4px; padding: 50px; display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 420px; width: 90%; animation: lbSlideUp 0.3s ease; }
@keyframes lbSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.lightbox-img { width: 260px; height: 260px; }
.lightbox-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--gold); text-align: center; }
.lightbox-close { background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; padding: 12px 30px; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.lightbox-close:hover { background: var(--gold-light); }

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 0 16px; flex-wrap: wrap; height: auto; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .nav-links { width: 100%; justify-content: center; gap: 4px; }
  .nav-links a { padding: 6px 8px; font-size: 10px; letter-spacing: 0.8px; }
  .hq-mv-grid, .mv-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .pillar-hero-inner { flex-direction: column; text-align: center; gap: 24px; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .hq-mv-card, .mv-card { padding: 28px; }
  .contact-card { padding: 34px 28px; }
}


/* Clickable hero shield */
.hero-shield-wrap { display: inline-block; cursor: pointer; position: relative; transition: transform 0.3s; }
.hero-shield-wrap:hover { transform: scale(1.05); }
.hero-shield-wrap:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; border-radius: 8px; }
.hero-shield-wrap .zoom-hint-hero { position: absolute; bottom: 24px; right: -6px; background: var(--gold); color: var(--navy-dark); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 2px; opacity: 0; transition: opacity 0.25s; pointer-events: none; letter-spacing: 1px; }
.hero-shield-wrap:hover .zoom-hint-hero,
.hero-shield-wrap:focus-visible .zoom-hint-hero { opacity: 1; }
