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

:root {
  --ink: #1a1208;
  --ink-soft: #2d2416;
  --mid: #6b5c3e;
  --muted: #9c8c6e;
  --border: #e8e0d0;
  --surface: #faf8f4;
  --white: #ffffff;
  --gold: #b8952a;
  --gold-light: #f5f0e0;
  --gold-dark: #8a6e1a;
  --purple: #5b1f8a;
  --purple-light: #f0e8f8;
  --purple-dark: #421669;
  --font-body: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
  --pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink-soft); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2rem); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.94); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 24px rgba(26,18,8,0.07); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.2rem,4vw,2rem); display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 38px; width: auto; max-width: 200px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--mid); text-decoration: none; font-size: 0.92rem; font-weight: 500; padding: 0.4rem 0; position: relative; transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 1px; transition: width 0.3s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: white; padding: 0.6rem 1.4rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* HERO */
.hero { padding: calc(72px + 5rem) 0 var(--pad); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 70% at 80% 10%, rgba(91,31,138,0.06) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(184,149,42,0.07) 0%, transparent 55%), linear-gradient(180deg, var(--white) 0%, var(--surface) 100%); }
.hero-dots { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle, rgba(184,149,42,0.08) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold-light); color: var(--gold-dark); padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 1.3rem; letter-spacing: -0.3px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--mid); max-width: 500px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: white; padding: 0.85rem 1.8rem; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: background 0.2s, transform 0.2s, box-shadow 0.3s; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,149,42,0.25); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--border); color: var(--ink-soft); padding: 0.85rem 1.8rem; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: border-color 0.3s, color 0.3s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-visual { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(26,18,8,0.1); }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: -2rem; position: relative; z-index: 5; background: var(--white); box-shadow: 0 4px 24px rgba(26,18,8,0.05); }
.stat { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; font-weight: 500; }

/* SECTIONS */
section { padding: var(--pad) 0; }
.alt-bg { background: var(--surface); }
.s-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.s-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 1px; }
.s-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--ink); margin-bottom: 0.8rem; line-height: 1.2; letter-spacing: -0.3px; }
.s-desc { color: var(--mid); max-width: 620px; font-size: 1.02rem; margin-bottom: 3rem; }
.centered { text-align: center; }
.centered .s-desc { margin-left: auto; margin-right: auto; }

/* INTRO SPLIT */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-text p { color: var(--mid); font-size: 1.02rem; margin-bottom: 1rem; }
.split-visual { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(26,18,8,0.08); }
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faith-verse { margin-top: 1.5rem; padding: 1.2rem 1.5rem; border-left: 3px solid var(--gold); background: var(--gold-light); border-radius: 0 10px 10px 0; font-style: italic; color: var(--mid); font-size: 0.95rem; }

/* IDENTITY PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.pillar-card { padding: 1.8rem; border-radius: 12px; border: 1px solid var(--border); background: var(--white); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,18,8,0.06); border-color: rgba(184,149,42,0.3); }
.pillar-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--border); margin-bottom: 0.5rem; line-height: 1; }
.pillar-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 0.4rem; }
.pillar-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* MISSION / VISION / VALUES */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.mv-card { padding: 2.5rem; border-radius: 14px; border: 1px solid var(--border); }
.mv-card.mission { background: var(--gold-light); border-color: rgba(184,149,42,0.2); }
.mv-card.vision { background: var(--purple-light); border-color: rgba(91,31,138,0.15); }
.mv-card h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 0.8rem; }
.mv-card p { color: var(--mid); font-size: 0.95rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.val-card { padding: 1.8rem; border-left: 3px solid var(--gold); background: var(--surface); border-radius: 0 10px 10px 0; }
.val-card h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.4rem; font-weight: 700; }
.val-card p { font-size: 0.85rem; color: var(--mid); }

/* DIVISIONS */
.div-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.div-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2.2rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.div-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); border-radius: 2px 0 0 2px; }
.div-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,18,8,0.06); border-color: rgba(184,149,42,0.25); }
.div-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--border); margin-bottom: 0.6rem; line-height: 1; }
.div-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.div-card p { font-size: 0.88rem; color: var(--mid); margin-bottom: 0.8rem; }
.div-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.div-tag { background: var(--gold-light); color: var(--gold-dark); font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 5px; }

/* PHILOSOPHY */
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.phil-card { padding: 2rem; border-radius: 12px; background: var(--white); border: 1px solid var(--border); }
.phil-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.phil-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 0.5rem; }
.phil-card p { font-size: 0.86rem; color: var(--mid); }

/* IMPACT */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.impact-card { padding: 1.8rem; border-radius: 12px; background: var(--white); border: 1px solid var(--border); text-align: center; }
.impact-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.impact-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); }

/* PROMISE */
.promise-banner { background: var(--ink); border-radius: 20px; padding: 4rem; position: relative; overflow: hidden; }
.promise-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,149,42,0.15), transparent); }
.promise-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.promise-text h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; margin-bottom: 1.5rem; line-height: 1.3; }
.promise-list { list-style: none; }
.promise-list li { color: rgba(255,255,255,0.75); font-size: 0.95rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 0.8rem; }
.promise-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.promise-creed { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1.5rem; padding-top: 1.5rem; }
.promise-creed p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-style: italic; margin-bottom: 0.3rem; }

/* GEO */
.geo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.geo-card { padding: 2rem; border-radius: 12px; border: 1px solid var(--border); background: var(--white); }
.geo-flag { font-size: 2rem; margin-bottom: 0.8rem; }
.geo-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.geo-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.6; }

/* CTA */
.cta-band { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 16px; padding: 3rem; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 1.9rem); color: white; margin-bottom: 1.5rem; }
.btn-white { background: white; color: var(--gold-dark); padding: 0.85rem 2rem; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.95rem; display: inline-block; transition: transform 0.2s, box-shadow 0.3s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.offices-list { display: flex; flex-direction: column; gap: 1rem; }
.office { padding: 1.4rem; background: var(--surface); border-radius: 12px; border: 1px solid var(--border); }
.office h4 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.office p { font-size: 0.85rem; color: var(--mid); }
.cd-row { display: flex; align-items: center; gap: 0.7rem; margin: 0.7rem 0; }
.cd-icon { width: 36px; height: 36px; background: var(--gold-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.cd-row span { font-size: 0.92rem; color: var(--ink-soft); }
.contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form input, .contact-form textarea { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 1.1rem; font-family: var(--font-body); font-size: 0.92rem; color: var(--ink); outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button { background: var(--gold); color: white; border: none; padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: background 0.2s, transform 0.2s; align-self: flex-start; font-family: var(--font-body); }
.contact-form button:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 280px; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.8rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-tagline { font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .split-grid, .contact-grid, .promise-inner { grid-template-columns: 1fr; }
  .hero-visual { max-height: 320px; }
  .mv-grid, .div-grid, .phil-grid { grid-template-columns: 1fr; }
  .values-grid, .impact-grid, .geo-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }
  .promise-banner { padding: 2.5rem; }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .values-grid, .impact-grid, .geo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* DIVISION FEATURE ROWS */
.div-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 2.5rem;
}
.div-feature-reverse { direction: rtl; }
.div-feature-reverse > * { direction: ltr; }
.div-feature-img {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(26,18,8,0.08); height: 320px;
}
.div-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.div-feature-text .div-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 0.6rem; }
.div-feature-text h3 { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 0.8rem; }
.div-feature-text p { font-size: 0.92rem; color: var(--mid); margin-bottom: 1rem; line-height: 1.7; }

/* DIV CARD IMAGE */
.div-img-card {
  border-radius: 10px; overflow: hidden; height: 180px; margin-bottom: 0.5rem;
  border: 1px solid var(--border);
}
.div-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* PHILOSOPHY LIST */
.phil-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.phil-item { display: flex; gap: 1rem; align-items: flex-start; }
.phil-item .phil-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.phil-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 0.2rem; }
.phil-item p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* SPLIT VISUAL IMAGE */
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 380px; }

@media (max-width: 900px) {
  .div-feature, .div-feature-reverse { grid-template-columns: 1fr; direction: ltr; }
  .div-feature-img { height: 240px; }
}
