:root {
  --ink: #18364b;
  --navy: #17384d;
  --blue: #7ab6d8;
  --blue-deep: #327ca8;
  --sky: #dceff8;
  --sky-soft: #edf7fb;
  --cream: #fbfaf4;
  --white: #fff;
  --sage: #dfeadd;
  --gold: #e6c98d;
  --text: #486273;
  --line: rgba(24, 54, 75, .13);
  --shadow: 0 24px 70px rgba(42, 90, 118, .14);
  --radius: 30px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--ink); color: white; padding: .8rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding-block: 110px; }

.site-header { height: 90px; padding: 0 max(24px, calc((100% - 1180px)/2)); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 244, .9); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { height: 76px; border-color: var(--line); box-shadow: 0 8px 30px rgba(24,54,75,.05); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; display: grid; place-content: center; font: 700 20px/1 var(--serif); background: var(--ink); color: white; position: relative; letter-spacing: -4px; padding-right: 3px; box-shadow: inset 0 0 0 4px rgba(255,255,255,.08); }
.brand-mark span { color: var(--gold); }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 18px; letter-spacing: .01em; }
.brand-copy small { color: var(--text); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 600; }
.site-nav a:not(.nav-cta) { position: relative; padding: 12px 0; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 7px; background: var(--blue-deep); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 999px; transition: .2s ease; }
.nav-cta:hover { background: var(--ink); color: white; }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; transition: .2s; }

.hero { min-height: calc(100vh - 90px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; padding-block: 70px 110px; }
.eyebrow { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; color: var(--blue-deep); display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.hero h1, .page-hero h1 { font: 400 clamp(52px, 6.4vw, 90px)/.98 var(--serif); letter-spacing: -.045em; margin: 0 0 30px; max-width: 850px; }
.hero h1 em, .page-hero h1 em { color: var(--blue-deep); font-weight: 400; }
.hero-intro { color: var(--text); max-width: 650px; font-size: 18px; margin: 0 0 32px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 22px; border-radius: 999px; font-size: 13px; font-weight: 750; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 24px rgba(24,54,75,.16); }
.button-primary:hover { background: var(--blue-deep); box-shadow: 0 16px 30px rgba(50,124,168,.24); }
.button-soft { border-color: var(--line); background: rgba(255,255,255,.6); }
.button-soft:hover { background: white; box-shadow: 0 10px 25px rgba(24,54,75,.08); }
.button-white { background: white; color: var(--ink); }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--text); font: italic 15px var(--serif); }
.hero-note p { margin: 0; }
.spark { color: var(--gold); font-size: 20px; }
.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.portrait-halo { position: absolute; width: 470px; height: 540px; border-radius: 48% 48% 44% 44%; background: linear-gradient(145deg, var(--sky), #c9e6f4); transform: rotate(4deg); }
.portrait-frame { width: 390px; height: 520px; border-radius: 195px 195px 40px 40px; overflow: hidden; position: relative; box-shadow: var(--shadow); background: var(--sky); }
.portrait-frame::after { content:""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); border-radius: inherit; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: saturate(.88) contrast(.98); }
.floating-card { position: absolute; z-index: 2; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 18px 45px rgba(34,85,112,.15); border-radius: 16px; padding: 15px 18px; }
.floating-card small { display: block; color: var(--text); text-transform: uppercase; font-size: 8px; letter-spacing: .16em; }
.floating-card strong { font-family: var(--serif); font-size: 18px; }
.card-top { right: -28px; top: 92px; }
.card-bottom { left: -22px; bottom: 86px; display: flex; gap: 11px; align-items: center; }
.card-bottom p { margin: 0; }
.card-bottom strong { font: 700 13px var(--sans); display:block; }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; background: var(--sage); border-radius: 50%; }
.hero-doodle { position: absolute; width: 145px; right: -10px; bottom: 45px; overflow: visible; }
.hero-doodle path { fill: none; stroke: var(--blue-deep); stroke-width: 1.4; stroke-linecap: round; }

.proof-strip { background: var(--sky); padding: 28px max(24px, calc((100% - 1180px)/2)); display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; align-items: center; gap: 28px; }
.proof-strip > div { display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(24,54,75,.14); }
.proof-strip strong { font: 400 32px var(--serif); color: var(--blue-deep); }
.proof-strip span { font-size: 11px; max-width: 120px; line-height: 1.3; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
.proof-strip p { margin: 0; justify-self: end; font: italic 20px var(--serif); color: var(--text); }

.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }
.section-heading h2, .mission-copy h2, .connect-panel h2, .content-section h2 { font: 400 clamp(38px, 4.5vw, 62px)/1.05 var(--serif); letter-spacing: -.035em; margin: 0 0 20px; }
.section-heading p:last-child { color: var(--text); font-size: 17px; }
.thread-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.thread-card { min-height: 390px; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: relative; display: flex; flex-direction: column; transition: .28s ease; overflow: hidden; }
.thread-card::before { content:""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -80px; top: -90px; background: var(--sky-soft); transition: .28s ease; }
.thread-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.thread-card:hover::before { transform: scale(1.2); }
.card-number { position: absolute; right: 25px; top: 19px; font: 12px var(--serif); color: var(--text); }
.line-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--sky); color: var(--blue-deep); display: grid; place-items: center; font-size: 25px; margin-bottom: 48px; }
.thread-work .line-icon { background: var(--sage); color: #52745b; }
.thread-faith .line-icon { background: #f5eacb; color: #a4823e; }
.thread-card h3 { font: 400 32px var(--serif); margin: 0 0 12px; }
.thread-card p { color: var(--text); margin: 0 0 28px; font-size: 14px; }
.text-link { color: var(--ink); font-size: 13px; font-weight: 750; display: inline-flex; gap: 9px; align-items: center; margin-top: auto; }
.text-link span, .text-link b { color: var(--blue-deep); transition: transform .2s; }
.text-link:hover span, .text-link:hover b { transform: translateX(4px); }

.mission-band { padding-block: 105px; background: var(--ink); color: white; overflow: hidden; }
.mission-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.eyebrow.light { color: #9ed3ee; }
.mission-copy p:not(.eyebrow) { color: #bfd0da; max-width: 600px; }
.mission-copy blockquote { font: italic 24px/1.4 var(--serif); margin: 28px 0; padding-left: 22px; border-left: 2px solid var(--gold); color: #f9efd7; }
.mission-compass { height: 480px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(158,211,238,.25); border-radius: 50%; }
.orbit-one { width: 340px; height: 340px; }
.orbit-two { width: 460px; height: 460px; }
.orbit::before, .orbit::after { content:""; position:absolute; width: 5px; height: 5px; background: var(--gold); border-radius:50%; }
.orbit-one::before { top: 15%; left: 13%; }.orbit-one::after { bottom: 8%; right: 23%; }
.orbit-two::before { top: 50%; left: -3px }.orbit-two::after { right: 8%; top: 22%; }
.compass-center { width: 210px; height: 210px; border-radius: 50%; background: rgba(122,182,216,.09); border: 1px solid rgba(255,255,255,.25); display:grid; place-content:center; text-align:center; box-shadow: 0 0 70px rgba(122,182,216,.12); }
.compass-center span, .compass-center small { letter-spacing: .18em; font-size: 9px; }.compass-center strong { font-size: 52px; color: var(--gold); line-height: 1.2; }
.orbit-label { position: absolute; font: italic 19px var(--serif); color: #b9d7e6; }.label-one { top: 42px; }.label-two { right: -6px; bottom: 103px; }.label-three { left: 5px; bottom: 112px; }

.split-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; }
.split-heading .eyebrow, .split-heading h2 { margin-bottom: 0; }
.article-grid { display: grid; grid-template-columns: 1.35fr .8fr; gap: 22px; }
.article-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-art { height: 250px; position: relative; overflow:hidden; background: var(--sky); display:grid; place-content:center; text-align:center; }
.art-wave::before { content:""; position:absolute; width: 130%; height:100%; left:-15%; top:45%; border-radius: 48%; background:#acd4e8; transform:rotate(-7deg); }.art-wave::after { content:""; position:absolute; width:120%; height:80%; left:-10%; top:67%; border-radius:50%; background:#83bcd8; transform:rotate(5deg); }
.art-wave span, .art-wave small { position:relative; z-index:2; }.art-wave span { font: 400 84px/.9 var(--serif); }.art-wave small { letter-spacing:.2em; font-weight:800; }
.art-rings { background: #e5eee1; }.art-rings i { position:absolute; border: 1px solid rgba(57,99,68,.4); border-radius:50%; width:100px; height:100px; }.art-rings i:nth-child(2) { width:170px;height:170px }.art-rings i:nth-child(3) { width:240px;height:240px }.art-rings::after { content:"✦"; font-size:48px; color:#54735b; z-index:2; }
.article-body { padding: 30px; }.article-body .meta { color: var(--blue-deep); text-transform:uppercase; letter-spacing:.14em; font-size:9px; font-weight:800; margin:0 0 14px }.article-body h3 { font:400 27px/1.15 var(--serif); margin:0 0 14px; }.article-body > p:not(.meta) { color:var(--text); font-size:14px; }.article-body .text-link { margin-top: 18px; }

.grace-section { min-height: 600px; background: linear-gradient(180deg,#d8edf7 0%,#f6f4e9 100%); display:grid; place-items:center; position:relative; overflow:hidden; padding:100px 24px; }
.grace-rays { position:absolute; width:800px; height:800px; top:-510px; border-radius:50%; background:repeating-conic-gradient(from -3deg,rgba(255,255,255,.8) 0deg 8deg,transparent 8deg 18deg); filter:blur(8px); opacity:.55; }
.grace-content { max-width:820px; position:relative; text-align:center; }.centered-eyebrow { justify-content:center; }.grace-content blockquote { font:400 clamp(38px,5vw,65px)/1.1 var(--serif); margin:26px 0; letter-spacing:-.03em; }.grace-content > p:not(.eyebrow) { color:var(--text); max-width:680px; margin:0 auto 30px; }
.connect-panel { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:end; border-top:1px solid var(--line); }.connect-panel p { color:var(--text); }.connect-panel .button-row { margin-top:24px; }

.site-footer { background:#102b3d; color:white; padding-top:70px; }.footer-main { display:grid; grid-template-columns:1.4fr .6fr .6fr 1fr; gap:60px; padding-bottom:60px; }.footer-mark { background:var(--sky); color:var(--ink); margin-bottom:20px; }.footer-brand p { color:#a9c1ce; max-width:270px; font-size:14px; }.footer-main h2 { font:400 17px var(--serif); margin:0 0 16px; color:#dcecf4; }.footer-main a { display:block; color:#a9c1ce; font-size:13px; padding:4px 0; }.footer-main a:hover { color:white; }.footer-note { border-left:1px solid rgba(255,255,255,.15); padding-left:35px; }.footer-note p { font:italic 22px/1.35 var(--serif); color:#e9d7ac; }.footer-note small { color:#809dab; text-transform:uppercase; letter-spacing:.15em; }.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-block:20px; display:flex; justify-content:space-between; color:#7894a2; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }

/* Interior pages */
.page-hero { padding:95px 0 110px; position:relative; overflow:hidden; }.page-hero::after { content:""; position:absolute; width:460px; height:460px; border:1px solid var(--line); border-radius:50%; right:-100px; top:-130px; box-shadow:0 0 0 80px rgba(122,182,216,.06),0 0 0 160px rgba(122,182,216,.04); }.page-hero p.page-lead { max-width:720px; color:var(--text); font-size:19px; }.page-hero .button-row { margin-top:30px; }
.page-kicker { display:flex; gap:10px; align-items:center; text-transform:uppercase; letter-spacing:.17em; font-size:10px; color:var(--blue-deep); font-weight:800; margin-bottom:24px; }.page-kicker::before { content:""; width:25px; height:1px; background:currentColor; }
.content-section { padding-block:95px; }.content-section.alt { background:var(--sky-soft); }.content-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; align-items:start; }.content-grid.reverse { grid-template-columns:1.2fr .8fr; }.content-section h3 { font:400 28px var(--serif); margin:0 0 10px; }.content-section p { color:var(--text); }.pull-quote { font:italic 32px/1.35 var(--serif); color:var(--ink)!important; border-left:2px solid var(--gold); padding-left:25px; margin:35px 0; }
.value-grid, .service-grid, .ministry-grid, .resource-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:45px; }.value-card, .service-card, .ministry-card, .resource-card { padding:30px; background:white; border:1px solid var(--line); border-radius:24px; }.value-card span, .service-card span, .ministry-card span { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:var(--sky); color:var(--blue-deep); margin-bottom:25px; }.value-card p, .service-card p, .ministry-card p { font-size:14px; }
.timeline { position:relative; padding-left:30px; }.timeline::before { content:""; position:absolute; left:4px; top:10px; bottom:10px; width:1px; background:var(--line); }.timeline-item { position:relative; padding:0 0 36px 22px; }.timeline-item::before { content:""; position:absolute; left:-30px; top:7px; width:9px; height:9px; border-radius:50%; background:var(--blue-deep); box-shadow:0 0 0 6px var(--sky); }.timeline-item small { text-transform:uppercase; color:var(--blue-deep); font-weight:800; letter-spacing:.12em; }.timeline-item h3 { margin:4px 0; }.timeline-item p { margin:0; }
.profile-panel { position:sticky; top:110px; background:var(--sky); border-radius:var(--radius); padding:28px; }.profile-panel img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:50% 35%; border-radius:20px; margin-bottom:24px; }.profile-panel h2 { font-size:32px; }.profile-panel ul { list-style:none; margin:20px 0 0; padding:20px 0 0; border-top:1px solid var(--line); }.profile-panel li { display:flex; justify-content:space-between; gap:15px; padding:7px 0; font-size:12px; }.profile-panel li span { color:var(--text); }
.expertise-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:30px 0; }.expertise-list div { background:white; border:1px solid var(--line); border-radius:14px; padding:15px 17px; font-size:13px; font-weight:700; display:flex; gap:10px; }.expertise-list div::before { content:"✓"; color:var(--blue-deep); }
.credential-cloud { display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; }.credential-cloud span { border:1px solid var(--line); border-radius:999px; padding:8px 13px; font-size:11px; background:white; font-weight:700; }
.faith-hero { background:linear-gradient(150deg,#f6f2e4 0%,#dfeff6 70%); }.faith-statement { padding:50px; background:var(--ink); color:white; border-radius:var(--radius); }.faith-statement h2 { color:white; }.faith-statement p { color:#bfd0da; }.faith-statement .scripture { color:#f1dcad; font:italic 25px var(--serif); border-top:1px solid rgba(255,255,255,.15); margin-top:25px; padding-top:25px; }
.language-bridge { display:flex; gap:12px; align-items:center; margin-top:25px; }.language-bridge span { padding:9px 15px; border-radius:999px; background:var(--sky); font-weight:700; font-size:12px; }.language-bridge i { width:40px; height:1px; background:var(--blue); position:relative; }.language-bridge i::after { content:"→"; position:absolute; right:-2px; top:-13px; color:var(--blue-deep); }
.journal-feature { display:grid; grid-template-columns:1fr 1fr; overflow:hidden; border-radius:var(--radius); background:var(--sky); margin-bottom:24px; }.journal-feature .article-art { height:100%; min-height:390px; }.journal-feature .article-body { padding:55px; display:flex; flex-direction:column; justify-content:center; }.resource-grid { grid-template-columns:repeat(2,1fr); }.resource-card { transition:.25s; }.resource-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }.resource-card .meta { text-transform:uppercase; letter-spacing:.12em; font-size:9px; color:var(--blue-deep); font-weight:800; }.resource-card h3 { min-height:68px; }.video-banner { display:grid; grid-template-columns:1fr auto; align-items:center; gap:30px; padding:45px; background:#dceaf0; border-radius:var(--radius); margin-top:25px; }.play-button { width:80px; height:80px; border-radius:50%; background:var(--ink); color:white; display:grid; place-items:center; font-size:24px; box-shadow:0 15px 35px rgba(24,54,75,.2); }
.contact-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; align-items:start; }.contact-options { display:grid; gap:14px; margin-top:30px; }.contact-option { display:grid; grid-template-columns:42px 1fr; gap:14px; align-items:center; padding:16px; border:1px solid var(--line); border-radius:16px; background:white; }.contact-option > span { width:42px; height:42px; border-radius:50%; background:var(--sky); display:grid; place-items:center; }.contact-option small { color:var(--text); display:block; }.contact-option strong { font-size:13px; }.contact-form { background:white; padding:40px; border-radius:var(--radius); border:1px solid var(--line); box-shadow:var(--shadow); }.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }.field { display:grid; gap:7px; }.field.full { grid-column:1/-1; }.field label { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); background:var(--cream); border-radius:12px; padding:13px 14px; color:var(--ink); outline:none; }.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--blue-deep); box-shadow:0 0 0 3px rgba(50,124,168,.1); }.field textarea { min-height:145px; resize:vertical; }.form-note { font-size:11px; color:var(--text); margin:14px 0 0; }.newsletter { padding:70px; border-radius:var(--radius); background:var(--ink); color:white; text-align:center; }.newsletter h2 { color:white; }.newsletter p { color:#bfd0da; max-width:600px; margin-inline:auto; }.newsletter-form { display:flex; max-width:520px; margin:28px auto 0; gap:10px; }.newsletter-form input { flex:1; border:0; border-radius:999px; padding:13px 18px; }

.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:90px; gap:18px; }
.gallery-tile { margin:0; border-radius:26px; overflow:hidden; position:relative; background:white; border:1px solid var(--line); }
.gallery-tile img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-tile:hover img { transform:scale(1.025); }
.gallery-tile figcaption { position:absolute; inset:auto 0 0; padding:55px 24px 23px; display:grid; color:white; background:linear-gradient(transparent,rgba(12,37,54,.88)); }
.gallery-tile figcaption small { text-transform:uppercase; letter-spacing:.15em; font-size:8px; color:#cbe7f4; }
.gallery-tile figcaption strong { font:400 25px var(--serif); }
.gallery-tile figcaption span { font-size:11px; color:#d7e5ec; max-width:520px; }
.gallery-award { grid-column:span 8; grid-row:span 5; }
.gallery-portrait { grid-column:span 4; grid-row:span 5; }
.gallery-portrait img { object-position:50% 30%; }
.gallery-kiwa { grid-column:span 4; grid-row:span 5; }
.gallery-words { grid-column:span 4; grid-row:span 3; background:var(--sky); }
.gallery-faith { grid-column:span 4; grid-row:span 3; background:linear-gradient(150deg,#f2e6c8,#f9f7ef); }
.gallery-teaching { grid-column:span 8; grid-row:span 2; background:var(--ink); color:white; }
.gallery-word-art,.gallery-faith-art,.gallery-teaching-art { width:100%; height:100%; display:grid; place-content:center; text-align:center; padding:25px; }
.gallery-word-art span { font:400 34px var(--serif); }
.gallery-word-art i { display:block; width:35px; height:1px; background:var(--blue-deep); margin:8px auto; }
.gallery-word-art small { margin-top:12px; color:var(--text); }
.gallery-faith-art > span { color:#ad8a48; font-size:30px; }
.gallery-faith-art blockquote { font:italic 24px/1.25 var(--serif); margin:12px 0; }
.gallery-faith-art small { text-transform:uppercase; letter-spacing:.16em; color:#927a50; }
.gallery-teaching-art { display:flex; align-items:center; justify-content:center; gap:35px; position:relative; }
.gallery-teaching-art strong { font:400 28px var(--serif); z-index:2; }
.gallery-teaching-art i { color:var(--gold); font-size:28px; }
.gallery-teaching-art .chalk-one,.gallery-teaching-art .chalk-two { position:absolute; color:rgba(255,255,255,.1); font:italic 48px var(--serif); transform:rotate(-7deg); }
.gallery-teaching-art .chalk-one { left:6%; }
.gallery-teaching-art .chalk-two { right:5%; transform:rotate(6deg); }
.gallery-credit { margin-top:25px; text-align:right; color:var(--text); font-size:10px; }
.gallery-credit a { text-decoration:underline; text-underline-offset:3px; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease,transform .7s ease; }.reveal.visible { opacity:1; transform:none; }.reveal-delay { transition-delay:.12s; }.reveal-delay-2 { transition-delay:.24s; }

@media (max-width: 980px) {
  .site-header { height:76px; }.brand-copy { display:none; }.menu-button { display:block; z-index:2; }.site-nav { position:fixed; inset:76px 0 auto; background:var(--cream); padding:30px 24px; display:grid; gap:5px; border-bottom:1px solid var(--line); transform:translateY(-130%); opacity:0; transition:.25s ease; }.site-nav.open { transform:none; opacity:1; }.site-nav a { padding:12px!important; }.nav-cta { margin-top:10px; text-align:center; }
  .hero { grid-template-columns:1fr; min-height:auto; gap:35px; padding-top:60px; }.hero-copy { text-align:center; }.hero .eyebrow,.hero .button-row,.hero-note { justify-content:center; }.hero-intro { margin-inline:auto; }.hero-visual { min-height:540px; }.portrait-frame { width:340px;height:455px; }.portrait-halo { width:400px;height:480px; }
  .proof-strip { grid-template-columns:repeat(3,1fr); }.proof-strip p { display:none; }.proof-strip > div:nth-child(3) { border-right:0; }
  .thread-grid,.value-grid,.service-grid,.ministry-grid { grid-template-columns:1fr; }.thread-card { min-height:330px; }.mission-layout,.content-grid,.content-grid.reverse,.contact-layout { grid-template-columns:1fr; gap:55px; }.mission-compass { height:420px; }.article-grid { grid-template-columns:1fr; }.connect-panel { grid-template-columns:1fr; gap:25px; }.footer-main { grid-template-columns:1.2fr 1fr 1fr; }.footer-note { grid-column:1/-1; border-left:0; border-top:1px solid rgba(255,255,255,.15); padding:25px 0 0; }.profile-panel { position:static; max-width:500px; }.journal-feature { grid-template-columns:1fr; }.journal-feature .article-art { min-height:300px; }.resource-grid { grid-template-columns:1fr 1fr; }.gallery-award,.gallery-teaching { grid-column:span 12; }.gallery-portrait,.gallery-kiwa,.gallery-words,.gallery-faith { grid-column:span 6; }
}
@media (max-width: 650px) {
  .section-shell { width:min(100% - 32px,1180px); }.section-space,.content-section { padding-block:75px; }.hero h1,.page-hero h1 { font-size:47px; }.hero { padding-block:45px 80px; }.hero-visual { min-height:440px; }.portrait-frame { width:280px;height:380px; }.portrait-halo { width:320px;height:395px; }.card-top { right:-2px;top:55px }.card-bottom { left:-2px;bottom:35px }.hero-doodle { display:none; }.gallery-grid { grid-auto-rows:78px; }.gallery-award,.gallery-portrait,.gallery-kiwa,.gallery-words,.gallery-faith,.gallery-teaching { grid-column:span 12; }.gallery-award,.gallery-portrait,.gallery-kiwa { grid-row:span 5; }.gallery-words,.gallery-faith { grid-row:span 3; }.gallery-teaching { grid-row:span 2; }.gallery-teaching-art .chalk-one,.gallery-teaching-art .chalk-two { display:none; }.gallery-credit { text-align:left; }
  .proof-strip { grid-template-columns:1fr; gap:10px; padding-block:22px; }.proof-strip > div { border-right:0;border-bottom:1px solid rgba(24,54,75,.12);padding-bottom:10px }.section-heading h2,.mission-copy h2,.connect-panel h2,.content-section h2 { font-size:40px; }.split-heading { display:block; }.split-heading .text-link { margin-top:20px; }.mission-layout { gap:25px; }.mission-compass { transform:scale(.72); margin-inline:-80px; height:360px; }.orbit-label { font-size:16px; }.grace-content blockquote { font-size:39px; }.connect-panel { padding-block:75px; }.footer-main { grid-template-columns:1fr 1fr; gap:35px; }.footer-brand { grid-column:1/-1; }.footer-bottom { display:grid;gap:7px;text-align:center; }.page-hero { padding:70px 0 80px; }.value-grid,.service-grid,.ministry-grid,.resource-grid,.expertise-list { grid-template-columns:1fr; }.journal-feature .article-body { padding:30px; }.video-banner { grid-template-columns:1fr; text-align:center; }.play-button { margin:auto; }.form-grid { grid-template-columns:1fr; }.field.full { grid-column:auto; }.contact-form { padding:25px; }.newsletter { padding:50px 24px; }.newsletter-form { display:grid; }.faith-statement { padding:30px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } * { animation:none!important; transition:none!important; } .reveal { opacity:1; transform:none; } }

/* Core values band (bilingual) */
.values-band { background:var(--sky-soft); border-block:1px solid var(--line); }
.values-inner { display:grid; gap:35px; padding-block:70px; }
.values-inner .section-heading { margin:0; }
.values-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.value-chip { background:white; border:1px solid var(--line); border-radius:22px; padding:26px 18px; text-align:center; }
.value-chip .hanzi { display:block; font-size:34px; line-height:1; color:var(--blue-deep); margin-bottom:12px; font-weight:600; }
.value-chip strong { display:block; font-size:15px; color:var(--ink); letter-spacing:.02em; }
.value-chip small { display:block; margin-top:6px; font-size:12px; color:var(--text); line-height:1.5; }
.purpose-line { max-width:760px; font-size:19px; line-height:1.65; color:var(--ink); font-weight:500; }
.purpose-line em { color:var(--blue-deep); font-style:normal; }

/* Life goals chips */
.goal-cloud { display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }
.goal-cloud span { border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-size:12px; background:white; font-weight:700; color:var(--ink); }

/* CISO mandate list */
.mandate-list { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.mandate-card { background:white; border:1px solid var(--line); border-radius:20px; padding:22px; }
.mandate-card small { text-transform:uppercase; letter-spacing:.12em; font-weight:800; color:var(--blue-deep); font-size:10px; }
.mandate-card h3 { margin:7px 0 3px; font-size:17px; }
.mandate-card p { margin:0; font-size:13px; color:var(--text); }

/* Gallery additions */
.gallery-stage { grid-column:span 8; grid-row:span 5; }
.gallery-event { grid-column:span 4; grid-row:span 5; }

@media (max-width: 980px) {
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .mandate-list { grid-template-columns:1fr 1fr; }
  .gallery-stage, .gallery-event { grid-column:span 12; grid-row:span 5; }
}
@media (max-width: 650px) {
  .values-grid { grid-template-columns:1fr; }
  .mandate-list { grid-template-columns:1fr; }
}

/* ===== Logo & identity additions ===== */
.brand-logo { width:52px; height:52px; border-radius:50%; object-fit:cover; background:#f7f1e5; box-shadow:0 3px 12px rgba(24,54,75,.14), 0 0 0 1px rgba(24,54,75,.07); }
.footer-logo { margin-bottom:20px; box-shadow:0 0 0 1px rgba(255,255,255,.3); }

/* Home book banner */
.book-banner { margin-top:22px; display:grid; grid-template-columns:auto 1fr auto; gap:30px; align-items:center; padding:32px 40px; border-radius:var(--radius); border:1px solid var(--line); background:linear-gradient(115deg,#f7f0dd 0%,#eaf4f9 62%,#fff 100%); transition:.25s ease; }
.book-banner:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.book-spines { display:flex; align-items:flex-end; gap:5px; height:64px; }
.book-spines i { width:13px; border-radius:4px 4px 2px 2px; }
.book-spines i:nth-child(1) { height:52px; background:var(--ink); }
.book-spines i:nth-child(2) { height:64px; background:var(--blue-deep); }
.book-spines i:nth-child(3) { height:45px; background:var(--gold); }
.book-banner-copy small { text-transform:uppercase; letter-spacing:.14em; font-size:9px; font-weight:800; color:var(--blue-deep); }
.book-banner-copy strong { display:block; font:400 25px var(--serif); margin:5px 0 6px; }
.book-banner-copy p { margin:0; color:var(--text); font-size:14px; }

/* Book series (writing page) */
.series-banner { display:grid; grid-template-columns:.85fr 1.15fr; overflow:hidden; border-radius:var(--radius); background:var(--ink); color:white; margin-bottom:24px; }
.series-art { position:relative; min-height:360px; display:grid; place-content:center; text-align:center; gap:6px; background:linear-gradient(160deg,#1e4459 0%,#102b3d 100%); overflow:hidden; }
.series-art .ring { position:absolute; border:1px solid rgba(158,211,238,.22); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.series-art .r1 { width:240px; height:240px; }
.series-art .r2 { width:370px; height:370px; border-color:rgba(230,201,141,.25); }
.series-art strong { position:relative; font:400 110px/1 var(--serif); color:var(--gold); }
.series-art small { position:relative; letter-spacing:.28em; font-size:10px; font-weight:800; color:#9ed3ee; }
.series-body { padding:50px 55px; display:flex; flex-direction:column; justify-content:center; }
.series-body .meta { color:#9ed3ee; text-transform:uppercase; letter-spacing:.14em; font-size:9px; font-weight:800; margin:0 0 14px; }
.series-body h3 { font:400 30px/1.2 var(--serif); margin:0 0 14px; color:white; }
.series-body p { color:#bfd0da; font-size:14px; margin:0 0 22px; }
.book-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.book-card { display:flex; gap:18px; align-items:flex-start; background:white; border:1px solid var(--line); border-radius:20px; padding:22px; transition:.25s ease; }
.book-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.book-num { flex:0 0 42px; width:42px; height:42px; border-radius:50%; background:var(--sky); color:var(--blue-deep); display:grid; place-items:center; font:400 19px var(--serif); }
.book-card h3 { font:400 19px/1.3 var(--serif); margin:0 0 6px; min-height:0; }
.book-card p { margin:0; font-size:13px; color:var(--text); }

/* Logo story page */
.logo-showcase { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.logo-frame { background:#f9f4e9; border:1px solid var(--line); border-radius:var(--radius); padding:44px; box-shadow:var(--shadow); }
.symbol-list .symbol-row:first-child { border-top:0; padding-top:0; }
.symbol-row { display:grid; grid-template-columns:.45fr 1fr; gap:60px; padding:52px 0; border-top:1px solid var(--line); align-items:start; }
.symbol-glyph { width:60px; height:60px; border-radius:50%; background:var(--sky); color:var(--blue-deep); display:grid; place-items:center; font-size:26px; margin-bottom:16px; }
.symbol-glyph.gold { background:#f5eacb; color:#a4823e; }
.symbol-glyph.serifg { font:400 17px var(--serif); letter-spacing:.04em; }
.symbol-title h2 { font:400 30px var(--serif); margin:0 0 8px; letter-spacing:-.02em; }
.symbol-title small { text-transform:uppercase; letter-spacing:.15em; font-size:10px; font-weight:800; color:var(--blue-deep); }
.symbol-copy p { color:var(--text); margin:0 0 16px; }
.symbol-copy ul { margin:0 0 16px; padding:0; list-style:none; color:var(--text); }
.symbol-copy li { padding:7px 0 7px 26px; position:relative; }
.symbol-copy li::before { content:"✦"; position:absolute; left:0; top:9px; color:var(--gold); font-size:13px; }
.mini-quote { font:italic 21px/1.45 var(--serif); color:var(--ink); border-left:2px solid var(--gold); padding-left:20px; margin:22px 0 0; }

.swatch-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.swatch { background:white; border:1px solid var(--line); border-radius:22px; overflow:hidden; }
.swatch i { display:block; height:105px; }
.swatch > div { padding:20px 22px; }
.swatch h3 { font:400 20px var(--serif); margin:0 0 2px; }
.swatch small { text-transform:uppercase; letter-spacing:.12em; font-size:9px; font-weight:800; color:var(--blue-deep); display:block; margin-bottom:8px; }
.swatch p { margin:0; font-size:13px; color:var(--text); }

.tension-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:35px; }
.tension-grid div { background:white; border:1px solid var(--line); border-radius:14px; padding:16px 18px; font-size:13px; font-weight:600; display:flex; gap:12px; align-items:center; color:var(--ink); }
.tension-grid div::before { content:"↔"; color:var(--blue-deep); font-weight:400; }

/* Narrative band on logo page */
.narrative-band { background:var(--ink); color:white; border-radius:var(--radius); padding:70px 60px; text-align:center; }
.narrative-band p.big { font:italic 27px/1.5 var(--serif); color:#f4e9cd; max-width:850px; margin:0 auto 18px; }
.narrative-band p.small-line { color:#bfd0da; max-width:720px; margin:0 auto; font-size:15px; letter-spacing:.02em; }

/* Private area */
.private-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.private-card { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:40px; display:flex; flex-direction:column; transition:.25s ease; }
.private-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.private-card h2 { font:400 30px var(--serif); margin:0 0 10px; }
.private-card p { color:var(--text); font-size:14px; margin:0 0 24px; }
.private-card .text-link { margin-top:auto; }
.private-icon { width:56px; height:56px; border-radius:50%; background:var(--sky); color:var(--blue-deep); display:grid; place-items:center; font-size:24px; margin-bottom:26px; }
.lcars-decor { display:flex; gap:6px; margin-bottom:30px; align-items:center; }
.lcars-decor i { display:block; height:16px; border-radius:999px; }
.lcars-decor i:nth-child(1) { width:64px; background:#f19b38; }
.lcars-decor i:nth-child(2) { width:26px; background:#cc6699; }
.lcars-decor i:nth-child(3) { width:40px; background:#9977cc; }
.lcars-decor i:nth-child(4) { width:14px; background:#f1df6f; }
.link-pending { font-size:12px; color:var(--text); margin-top:10px !important; }
.private-note { margin-top:26px; padding:20px 24px; border:1px dashed rgba(24,54,75,.3); border-radius:18px; font-size:13px; color:var(--text); background:rgba(255,255,255,.6); }

@media (max-width:980px) {
  .logo-showcase { grid-template-columns:1fr; gap:45px; }
  .symbol-row { grid-template-columns:1fr; gap:18px; padding:42px 0; }
  .swatch-grid { grid-template-columns:1fr 1fr; }
  .series-banner { grid-template-columns:1fr; }
  .series-art { min-height:280px; }
  .book-grid { grid-template-columns:1fr; }
  .private-grid { grid-template-columns:1fr; }
  .book-banner { grid-template-columns:1fr; text-align:center; }
  .book-spines { margin-inline:auto; }
  .book-banner .text-link { justify-content:center; }
  .tension-grid { grid-template-columns:1fr; }
}
@media (max-width:650px) {
  .swatch-grid { grid-template-columns:1fr; }
  .series-body { padding:35px 28px; }
  .narrative-band { padding:50px 26px; }
  .series-art strong { font-size:84px; }
}
