:root {
  --navy: #10243e;
  --green: #416b56;
  --deep-green: #274b3b;
  --gold: #c7a562;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --ink: #22303c;
  --muted: #66717b;
  --line: #dfe5df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16,36,62,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,248,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,36,62,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: white;
  font-family: "Playfair Display", serif; font-size: 18px;
  box-shadow: inset 0 0 0 3px rgba(199,165,98,.55);
}
.brand strong { display: block; letter-spacing: .08em; font-size: 14px; color: var(--navy); }
.brand small { display: block; color: var(--green); letter-spacing: .13em; font-size: 10px; margin-top: 1px; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--green); }
.nav-cta { padding: 10px 18px; border-radius: 999px; background: var(--navy); color: white !important; }
.menu-toggle { display:none; border:0; background:transparent; font-size:26px; color:var(--navy); }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(199,165,98,.22), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(65,107,86,.22), transparent 30%),
    linear-gradient(135deg, #f8f2e8 0%, #edf4ef 55%, #eef2f7 100%);
}
.hero::after {
  content:""; position:absolute; inset:auto -5% -30% auto; width:520px; height:520px;
  border-radius:50%; border:80px solid rgba(65,107,86,.07);
}
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.5fr .8fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.eyebrow, .section-kicker { display:inline-block; color:var(--green); font-weight:700; letter-spacing:.16em; font-size:12px; margin-bottom:14px; }
.hero h1, h2 {
  font-family:"Playfair Display", serif;
  color:var(--navy); line-height:1.12; margin:0;
}
.hero h1 { font-size: clamp(46px, 6vw, 78px); max-width: 840px; }
.hero-text { max-width:680px; font-size:18px; color:#43515e; }
.ko { font-family:"Noto Sans KR", sans-serif; color:var(--green); }
.hero .ko { font-size:18px; margin:18px 0; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.btn {
  display:inline-flex; justify-content:center; align-items:center;
  min-height:50px; padding:0 24px; border-radius:999px; font-weight:700;
  transition:.2s ease; border:1px solid transparent;
}
.btn:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(16,36,62,.12); }
.btn.primary { background:var(--navy); color:white; }
.btn.secondary { border-color:rgba(16,36,62,.25); color:var(--navy); background:rgba(255,255,255,.45); }
.btn.full { width:100%; }
.hero-card {
  background:rgba(255,255,255,.76); border:1px solid rgba(255,255,255,.9);
  border-radius:28px; padding:38px; box-shadow:var(--shadow);
}
.hero-card blockquote { font-family:"Playfair Display",serif; font-size:25px; line-height:1.45; color:var(--navy); margin:12px 0; }
.hero-card cite { color:var(--gold); font-style:normal; font-weight:700; }
.verse-label { font-size:11px; letter-spacing:.18em; color:var(--green); font-weight:700; }
.hero-card-ko { margin-top:22px; padding-top:20px; border-top:1px solid var(--line); color:var(--green); font-family:"Noto Sans KR",sans-serif; }
.impact-strip { background:var(--navy); color:white; }
.impact-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.impact-grid div { padding:28px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.13); }
.impact-grid div:last-child { border-right:0; }
.impact-grid strong { display:block; font-family:"Playfair Display",serif; font-size:34px; color:#f2d998; }
.impact-grid span { font-size:13px; letter-spacing:.06em; }
.section { padding:110px 0; }
.section.alt { background:#f3f6f2; }
.two-col { display:grid; grid-template-columns:1.15fr .85fr; gap:72px; align-items:start; }
.section h2 { font-size:clamp(38px,4vw,58px); margin-bottom:26px; }
.section p { font-size:17px; }
.name-story {
  background:var(--cream); border-left:5px solid var(--gold);
  padding:34px; border-radius:0 20px 20px 0;
}
.name-story h3 { color:var(--navy); font-family:"Playfair Display",serif; font-size:28px; margin-top:0; }
.reference { font-size:13px !important; color:var(--green); font-weight:700; }
.section-heading { max-width:780px; margin-bottom:48px; }
.cards { display:grid; gap:24px; }
.cards.three { grid-template-columns:repeat(3,1fr); }
.card {
  background:white; border-radius:22px; padding:34px;
  box-shadow:0 14px 42px rgba(16,36,62,.07);
  border:1px solid rgba(16,36,62,.06);
}
.icon { width:52px; height:52px; border-radius:50%; display:grid; place-items:center; background:var(--cream); color:var(--green); font-size:24px; }
.card h3 { color:var(--navy); font-family:"Playfair Display",serif; font-size:29px; margin:18px 0 10px; }
.card .ko { font-size:14px; }
.outreach-grid { align-items:center; }
.outreach-visual {
  min-height:480px; border-radius:32px; padding:46px;
  background:
    linear-gradient(140deg, rgba(16,36,62,.94), rgba(39,75,59,.88)),
    radial-gradient(circle at 20% 20%, rgba(199,165,98,.4), transparent 40%);
  color:white; position:relative; overflow:hidden; box-shadow:var(--shadow);
}
.outreach-visual::after {
  content:""; position:absolute; width:280px; height:280px; border:60px solid rgba(255,255,255,.06);
  border-radius:50%; right:-90px; bottom:-90px;
}
.music-lines { font-size:130px; opacity:.14; position:absolute; right:28px; top:18px; }
.visual-copy { position:absolute; left:46px; right:46px; bottom:52px; }
.visual-copy span { display:block; letter-spacing:.12em; color:#f2d998; font-size:13px; }
.visual-copy strong { display:block; font-family:"Playfair Display",serif; font-size:44px; line-height:1.1; margin:12px 0; }
.visual-copy small { font-family:"Noto Sans KR",sans-serif; font-size:17px; }
.check-list { padding:0; margin:28px 0 0; list-style:none; }
.check-list li { margin:12px 0; padding-left:28px; position:relative; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:800; }
.event-card {
  display:grid; grid-template-columns:.85fr 1.15fr; overflow:hidden;
  border-radius:28px; background:white; box-shadow:var(--shadow);
}
.event-image { background:#dfe8e1; min-height:520px; }
.event-image img { width:100%; height:100%; object-fit:cover; }
.event-image.placeholder::after { content:"Event artwork"; display:grid; place-items:center; height:100%; color:var(--green); }
.event-content { padding:54px; }
.event-tag { color:var(--green); font-weight:700; font-size:12px; letter-spacing:.15em; }
.event-content h3 { font-family:"Playfair Display",serif; font-size:38px; color:var(--navy); margin:18px 0 12px; line-height:1.2; }
.event-content dl { margin:30px 0 0; }
.event-content dl div { display:grid; grid-template-columns:100px 1fr; padding:14px 0; border-bottom:1px solid var(--line); }
.event-content dt { font-weight:700; color:var(--green); }
.event-content dd { margin:0; }
.leadership-grid { display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:24px; }
.profile { padding:28px; border:1px solid var(--line); border-radius:22px; background:white; }
.profile.featured { background:var(--navy); color:white; border-color:var(--navy); }
.profile.featured h3 { color:white; }
.avatar {
  width:58px; height:58px; border-radius:50%; display:grid; place-items:center;
  background:#f2d998; color:var(--navy); font-family:"Playfair Display",serif; font-weight:700; margin-bottom:20px;
}
.avatar.muted { background:var(--cream); color:var(--green); }
.profile span { color:var(--gold); font-size:12px; letter-spacing:.08em; font-weight:700; }
.profile h3 { color:var(--navy); font-family:"Playfair Display",serif; font-size:28px; margin:8px 0 10px; }
.profile p { font-size:15px; }
.volunteer-section { background:linear-gradient(135deg,var(--navy),var(--deep-green)); color:white; }
.volunteer-section h2 { color:white; }
.section-kicker.light { color:#f2d998; }
.volunteer-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:70px; align-items:center; }
.contact-card { background:white; color:var(--ink); border-radius:24px; padding:34px; }
.contact-card h3 { color:var(--navy); font-family:"Playfair Display",serif; font-size:28px; margin-top:0; }
.contact-card small { display:block; text-align:center; color:var(--muted); margin-top:12px; }
.faith-section { background:var(--cream); }
.site-footer { background:#0b1d31; color:#dbe4eb; padding:60px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.1fr 1fr 1fr; gap:40px; }
.footer-brand { font-family:"Playfair Display",serif; font-size:26px; color:white; }
.site-footer strong { color:#f2d998; }
.site-footer a:hover { color:white; }
.copyright { margin-top:42px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); font-size:13px; color:#96a6b3; }

@media (max-width: 900px) {
  .menu-toggle { display:block; }
  .nav {
    display:none; position:absolute; top:76px; left:0; right:0; background:var(--paper);
    padding:20px; flex-direction:column; border-bottom:1px solid var(--line);
  }
  .nav.open { display:flex; }
  .hero-grid, .two-col, .volunteer-grid { grid-template-columns:1fr; gap:42px; }
  .hero-grid { min-height:auto; padding:100px 0 80px; }
  .cards.three, .leadership-grid { grid-template-columns:1fr; }
  .event-card { grid-template-columns:1fr; }
  .event-image { min-height:420px; }
  .impact-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
  .container { width:min(100% - 26px,1160px); }
  .brand small { display:none; }
  .hero h1 { font-size:44px; }
  .hero-card { padding:28px; }
  .section { padding:78px 0; }
  .section h2 { font-size:39px; }
  .event-content { padding:30px; }
  .event-content h3 { font-size:31px; }
  .event-content dl div { grid-template-columns:82px 1fr; }
  .impact-grid strong { font-size:28px; }
}
