:root {
  --church-green: #19382f;
  --church-green-2: #245244;
  --church-green-3: #386f5d;
  --church-cream: #f6f2e9;
  --church-paper: #fffdf9;
  --church-gold: #c49a58;
  --church-gold-text: #76541d;
  --church-gold-soft: #ead9b9;
  --church-ink: #202a27;
  --church-muted: #626d68;
  --church-line: #e5e5df;
  --church-danger: #a94848;
  --church-shadow: 0 18px 45px rgba(25, 56, 47, .09);
  --church-radius: 1.15rem;
  --church-font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--church-ink);
  background: var(--church-paper);
  font-family: var(--church-font);
  line-height: 1.68;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }
address { margin: 0; font-style: normal; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1em; height: 1em; fill: currentColor; flex: 0 0 auto; vertical-align: -.12em; }
.icon-flip { transform: rotate(180deg); }

.skip-link {
  position: fixed; z-index: 9999; top: .75rem; left: .75rem; padding: .75rem 1rem;
  color: #fff; background: var(--church-green); border-radius: .5rem; transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 8px #123d33 !important;
}
[tabindex="-1"]:focus { outline: none; }

.btn { border-radius: .55rem; font-weight: 700; letter-spacing: -.01em; }
.btn .icon { margin-left: .28rem; }
.btn-primary { --bs-btn-bg: var(--church-green); --bs-btn-border-color: var(--church-green); --bs-btn-hover-bg: var(--church-green-2); --bs-btn-hover-border-color: var(--church-green-2); --bs-btn-active-bg: #102a22; --bs-btn-active-border-color: #102a22; }
.btn-outline-primary { --bs-btn-color: var(--church-green); --bs-btn-border-color: #9db3aa; --bs-btn-hover-bg: var(--church-green); --bs-btn-hover-border-color: var(--church-green); }
.form-control, .form-select { border-color: #d5dcd8; border-radius: .65rem; }
.form-control:focus, .form-select:focus { border-color: var(--church-green-3); box-shadow: 0 0 0 .23rem rgba(56, 111, 93, .14); }

.site-progress {
  position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 3px;
  pointer-events: none; opacity: 0; transition: opacity .15s ease;
}
.site-progress.htmx-request { opacity: 1; }
.site-progress span { display: block; width: 35%; height: 100%; background: linear-gradient(90deg, var(--church-gold), #f4d38e); animation: progress-run 1s ease-in-out infinite; }
@keyframes progress-run { from { transform: translateX(-110%); } to { transform: translateX(400%); } }

.site-header { background: var(--church-paper); border-bottom: 1px solid rgba(25, 56, 47, .08); }
.header-inner { min-height: 7rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; color: var(--church-green); }
.brand-mark { width: 2.8rem; height: 2.8rem; border-radius: 50%; display: inline-grid; place-items: center; color: #fff; background: var(--church-green); box-shadow: 0 7px 18px rgba(25, 56, 47, .17); }
.brand-mark .icon { width: 1.12rem; height: 1.12rem; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 1.24rem; line-height: 1.3; letter-spacing: -.045em; }
.brand-copy small { margin-top: .18rem; color: var(--church-muted); font-size: .68rem; letter-spacing: .2em; }
.header-message { align-items: center; gap: .9rem; color: var(--church-muted); }
.header-message p { margin: 0; font-family: Georgia, "Batang", serif; font-size: .88rem; letter-spacing: .03em; }
.header-message-line { display: block; width: 2.5rem; height: 1px; background: var(--church-gold); }

.site-navbar { z-index: 100; min-height: 3.75rem; padding: 0; background: var(--church-green); box-shadow: 0 9px 24px rgba(25, 56, 47, .13); }
.site-navbar .navbar-toggler { margin: .55rem 0; display: inline-flex; align-items: center; gap: .55rem; color: #fff; border: 1px solid rgba(255,255,255,.3); font-size: .9rem; }
.site-navbar .navbar-toggler .icon { font-size: 1.25rem; }
.site-navbar .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255,255,255,.2); }
.site-nav { gap: .35rem; }
.site-nav .nav-link { position: relative; padding: 1.07rem 1.7rem !important; color: rgba(255,255,255,.76); font-weight: 700; font-size: .96rem; transition: color .2s ease; }
.site-nav .nav-link::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 3px; background: var(--church-gold); transform: translateX(-50%); transition: width .2s ease; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus-visible, .site-nav .nav-link.active { color: #fff; }
.site-nav .nav-link.active::after, .site-nav .nav-link:hover::after { width: 1.8rem; }

.site-layout { display: grid; grid-template-columns: minmax(0, 1fr) 18.5rem; gap: 3rem; padding-top: 3rem; padding-bottom: 5rem; }
.site-content { min-width: 0; }
.site-content.htmx-swapping { opacity: 0; transform: translateY(4px); transition: opacity .15s ease, transform .15s ease; }
.site-content.htmx-settling { animation: content-in .28s ease both; }
@keyframes content-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.scroll-anchor { scroll-margin-top: 1.5rem; }

.site-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card { padding: 1.45rem; border: 1px solid var(--church-line); border-radius: var(--church-radius); background: #fff; }
.sidebar-card h2 { margin: .12rem 0 .45rem; font-size: 1.08rem; font-weight: 800; letter-spacing: -.035em; }
.sidebar-card p { margin-bottom: 1rem; color: var(--church-muted); font-size: .9rem; line-height: 1.7; }
.sidebar-kicker, .sidebar-heading span { font-size: .66rem; font-weight: 800; letter-spacing: .17em; }
.sidebar-kicker { color: var(--church-gold-soft); }
.sidebar-heading span { color: var(--church-gold-text); }
.sidebar-welcome { position: relative; overflow: hidden; color: #fff; border: 0; background: linear-gradient(145deg, #2f6654, var(--church-green)); box-shadow: var(--church-shadow); }
.sidebar-welcome::after { content: "+"; position: absolute; right: -1rem; bottom: -3.2rem; color: rgba(255,255,255,.06); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.sidebar-welcome h2 { font-size: 1.25rem; }
.sidebar-welcome p { color: rgba(255,255,255,.76); }
.text-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .4rem; color: var(--church-green); font-size: .9rem; font-weight: 800; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(3px); }
.sidebar-welcome .text-link { color: #fff; }
.sidebar-heading { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.sidebar-heading-icon { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; color: var(--church-green); background: var(--church-cream); border-radius: .75rem; }
.sidebar-heading-icon .icon { font-size: 1.15rem; }
.sidebar-heading div { line-height: 1.2; }
.sidebar-heading h2 { margin: .2rem 0 0; }
.worship-list { margin: 0; }
.worship-list div { display: flex; justify-content: space-between; gap: .75rem; padding: .55rem 0; border-top: 1px dashed var(--church-line); font-size: .86rem; }
.worship-list dt { font-weight: 700; }
.worship-list dd { margin: 0; color: var(--church-muted); text-align: right; }
.sidebar-muted { margin: 0 !important; }
.sidebar-contact { color: #fff; border: 0; background: #2a2f2d; }
.sidebar-contact .sidebar-heading-icon { color: #fff; background: rgba(255,255,255,.1); }
.sidebar-contact .sidebar-heading span { color: var(--church-gold-soft); }
.sidebar-contact address { color: rgba(255,255,255,.75); font-size: .86rem; }
.sidebar-contact > a:not(.btn) { display: flex; align-items: center; gap: .45rem; margin-top: .7rem; color: #fff; font-size: .88rem; }

.site-footer { color: rgba(255,255,255,.72); background: #132a23; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1.4fr .65fr; gap: 3rem; align-items: start; padding-top: 3.7rem; padding-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.brand-mark-light { color: var(--church-green); background: #fff; }
.footer-brand strong { color: #fff; font-size: 1.08rem; }
.footer-brand p { margin: .2rem 0 0; font-size: .8rem; }
.footer-info { display: flex; flex-direction: column; gap: .55rem; font-size: .84rem; }
.footer-info span, .footer-info a { display: flex; align-items: center; gap: .5rem; }
.footer-info .icon { color: var(--church-gold-soft); }
.footer-links { display: flex; flex-direction: column; gap: .55rem; font-size: .84rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 1.2rem; padding-bottom: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom p { margin: 0; }

.flash-stack { margin-bottom: 1.5rem; }
.flash-stack .alert { border: 0; border-left: 4px solid currentColor; border-radius: .65rem; }
.section-eyebrow { display: block; margin-bottom: .55rem; color: var(--church-gold-text); font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.4rem; }
.section-heading h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2rem); font-weight: 850; letter-spacing: -.055em; }

.page-header { position: relative; min-height: 13.5rem; margin-bottom: 1.7rem; padding: 2.6rem 3rem; display: flex; align-items: center; justify-content: space-between; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--church-green), #32624f); border-radius: 1.5rem; box-shadow: var(--church-shadow); }
.page-header::before, .page-header::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-header::before { width: 17rem; height: 17rem; right: -5rem; top: -8rem; }
.page-header::after { width: 11rem; height: 11rem; right: 1rem; bottom: -8rem; }
.page-header-copy { position: relative; z-index: 1; max-width: 40rem; }
.page-header h1 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); font-weight: 850; letter-spacing: -.065em; }
.page-header p { max-width: 38rem; margin: .8rem 0 0; color: rgba(255,255,255,.75); }
.page-header-icon { position: relative; z-index: 1; width: 6.2rem; height: 6.2rem; display: grid; place-items: center; color: rgba(255,255,255,.87); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; backdrop-filter: blur(5px); }
.page-header-icon .icon { font-size: 2.5rem; }

.home-hero { position: relative; min-height: 31rem; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(15rem, .9fr); overflow: hidden; color: #fff; background: linear-gradient(125deg, #132f27 0%, #285744 65%, #356a56 100%); border-radius: 1.7rem; box-shadow: 0 25px 55px rgba(25,56,47,.18); }
.hero-copy { position: relative; z-index: 2; align-self: center; padding: 4.5rem 0 4.5rem 4.3rem; }
.hero-kicker { display: block; margin-bottom: 1.15rem; color: #e3c58f; font-size: .72rem; font-weight: 900; letter-spacing: .21em; }
.hero-copy h1 { margin: 0; font-size: clamp(2.55rem, 5.8vw, 4.4rem); font-weight: 300; line-height: 1.16; letter-spacing: -.075em; }
.hero-copy h1 em { color: #f2d7a7; font-family: Georgia, "Batang", serif; font-style: normal; font-weight: 700; }
.hero-copy > p { max-width: 34rem; margin: 1.35rem 0 1.9rem; color: rgba(255,255,255,.75); font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-actions .btn { padding: .78rem 1.25rem; font-size: .92rem; }
.hero-visual { position: relative; min-height: 100%; overflow: hidden; }
.glass { position: absolute; display: block; border-radius: 50%; filter: blur(.2px); }
.glass-one { width: 17rem; height: 17rem; right: -1rem; top: -4rem; background: rgba(227,197,143,.15); border: 1px solid rgba(255,255,255,.1); }
.glass-two { width: 9rem; height: 9rem; right: 9rem; bottom: 2.5rem; background: rgba(116,178,157,.16); }
.glass-three { width: 4.5rem; height: 4.5rem; right: 1.2rem; bottom: 7rem; background: rgba(241,203,138,.28); }
.hero-cross-v, .hero-cross-h { position: absolute; z-index: 2; display: block; background: rgba(255,255,255,.82); box-shadow: 0 0 35px rgba(255,255,255,.25); }
.hero-cross-v { width: 1rem; height: 12rem; right: 8.7rem; top: 9rem; border-radius: 1rem; }
.hero-cross-h { width: 7rem; height: 1rem; right: 5.7rem; top: 12.4rem; border-radius: 1rem; }
.hero-glow { position: absolute; width: 16rem; height: 16rem; right: 1rem; top: 6rem; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%); }

.quick-links { position: relative; z-index: 3; margin: -2rem 1.5rem 3.8rem; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 1.1rem; box-shadow: 0 16px 40px rgba(25,56,47,.13); }
.quick-links > a { min-width: 0; padding: 1.35rem; display: grid; grid-template-columns: 2.6rem 1fr auto; gap: .8rem; align-items: center; border-right: 1px solid var(--church-line); transition: background .2s ease, transform .2s ease; }
.quick-links > a:first-child { border-radius: 1.1rem 0 0 1.1rem; }
.quick-links > a:last-child { border: 0; border-radius: 0 1.1rem 1.1rem 0; }
.quick-links > a:hover { background: #faf8f2; transform: translateY(-2px); }
.quick-icon { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; color: var(--church-green); background: var(--church-cream); border-radius: .8rem; }
.quick-links strong, .quick-links small { display: block; }
.quick-links strong { font-size: .91rem; }
.quick-links small { margin-top: .15rem; color: var(--church-muted); font-size: .69rem; white-space: nowrap; }
.quick-arrow { color: #a6afa9; font-size: .9rem; }
.home-section { margin-top: 4.2rem; }
.notice-preview-list { border-top: 2px solid var(--church-green); }
.notice-preview-item { display: grid; grid-template-columns: 4.5rem minmax(0,1fr) auto; align-items: center; gap: 1.2rem; padding: 1.15rem .6rem; border-bottom: 1px solid var(--church-line); transition: padding .2s ease, background .2s ease; }
.notice-preview-item:hover { padding-left: 1rem; padding-right: 1rem; background: #faf9f5; }
.notice-preview-date { text-align: center; border-right: 1px solid var(--church-line); }
.notice-preview-date strong, .notice-preview-date small { display: block; }
.notice-preview-date strong { color: var(--church-green); font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.2; }
.notice-preview-date small { color: var(--church-muted); font-size: .68rem; }
.notice-preview-copy { min-width: 0; }
.notice-preview-copy strong, .notice-preview-copy small { display: block; }
.notice-preview-copy strong { margin-top: .2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notice-preview-copy small { margin-top: .22rem; overflow: hidden; color: var(--church-muted); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.text-bg-accent { color: #6c4c18 !important; background: #f2e1bf !important; }

.sermon-feature { display: grid; grid-template-columns: minmax(14rem,.75fr) minmax(0,1.25fr); overflow: hidden; background: var(--church-cream); border-radius: 1.4rem; }
.sermon-feature-art { min-height: 19rem; display: grid; place-items: center; background: radial-gradient(circle at 70% 30%, rgba(234,217,185,.32), transparent 35%), linear-gradient(145deg,#1a3930,#315e4e); }
.sermon-feature-art span { width: 5rem; height: 5rem; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; backdrop-filter: blur(4px); }
.sermon-feature-art .icon { font-size: 2rem; }
.sermon-feature-copy { align-self: center; padding: 3rem; }
.sermon-feature-copy h2 { margin: 0; font-size: clamp(1.55rem,3.4vw,2.3rem); font-weight: 850; letter-spacing: -.055em; }
.sermon-feature-copy > p:not(.sermon-meta) { color: var(--church-muted); }
.sermon-meta { margin: .8rem 0; color: var(--church-green-3); font-size: .85rem; font-weight: 700; }
.event-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.event-preview-card { padding: 1rem; display: flex; align-items: center; gap: .9rem; border: 1px solid var(--church-line); border-radius: 1rem; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.event-preview-card:hover { border-color: #b7c9c2; box-shadow: 0 10px 25px rgba(25,56,47,.08); transform: translateY(-2px); }
.event-date-block { width: 3.35rem; height: 3.7rem; flex: 0 0 auto; display: grid; place-content: center; color: #fff; text-align: center; background: var(--church-green); border-radius: .75rem; }
.event-date-block strong, .event-date-block small { display: block; line-height: 1.1; }
.event-date-block strong { font-family: Georgia, serif; font-size: 1.35rem; }
.event-date-block small { margin-top: .22rem; color: #e5cfaa; font-size: .6rem; text-transform: uppercase; }
.event-preview-card > span:last-child { min-width: 0; }
.event-preview-card > span:last-child strong, .event-preview-card > span:last-child small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-preview-card > span:last-child strong { font-size: .88rem; }
.event-preview-card > span:last-child small { margin-top: .2rem; color: var(--church-muted); font-size: .72rem; }

.content-panel { border: 1px solid var(--church-line); border-radius: var(--church-radius); background: #fff; }
.about-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2.7rem; align-items: center; padding: 2.7rem; }
.about-visual { position: relative; min-height: 19rem; overflow: hidden; background: linear-gradient(145deg, #e9e0cf, #c8d9d0); border-radius: 1rem; }
.about-cross::before, .about-cross::after { content: ""; position: absolute; left: 50%; top: 50%; background: rgba(25,56,47,.75); border-radius: 2rem; transform: translate(-50%,-50%); }
.about-cross::before { width: 1.15rem; height: 8.5rem; }.about-cross::after { width: 5.2rem; height: 1.15rem; top: 43%; }
.about-ring { position: absolute; width: 15rem; height: 15rem; right: -5rem; bottom: -6rem; border: 1px solid rgba(25,56,47,.2); border-radius: 50%; }
.about-intro h2, .about-section h2 { margin: 0 0 1rem; font-size: clamp(1.7rem,3.6vw,2.35rem); font-weight: 850; letter-spacing: -.06em; }
.prose { color: #4c5954; line-height: 1.9; white-space: pre-wrap; }
.about-values, .about-section-block { margin-top: 4rem; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.value-grid article { padding: 2rem; border-top: 3px solid var(--church-green); background: #f8f6f0; border-radius: 0 0 1rem 1rem; }
.value-grid article > span { color: var(--church-gold-text); font-family: Georgia, serif; font-size: .8rem; }
.value-grid h3 { margin: .75rem 0 .6rem; font-size: 1.25rem; font-weight: 800; }
.value-grid p { margin: 0; color: var(--church-muted); font-size: .88rem; }
.about-section { margin-top: 4rem; display: grid; grid-template-columns: 11rem 1fr; gap: 2rem; align-items: center; padding: 2.2rem; }
.portrait-placeholder { aspect-ratio: 4/5; display: grid; place-items: center; color: #fff; background: linear-gradient(155deg,#8dab9e,var(--church-green)); border-radius: .9rem; }
.portrait-placeholder .icon { font-size: 4rem; opacity: .6; }
.about-section h3 { font-size: 1rem; }.about-section h3 small { color: var(--church-muted); font-size: .8rem; }
.staff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.staff-card { padding: 1.5rem; text-align: center; border: 1px solid var(--church-line); border-radius: 1rem; }
.staff-avatar { width: 4.4rem; height: 4.4rem; margin: 0 auto 1rem; display: grid; place-items: center; color: var(--church-green); background: var(--church-cream); border-radius: 50%; }
.staff-avatar .icon { font-size: 2rem; }.staff-card h3 { margin: 0; font-size: 1rem; font-weight: 800; }.staff-card p,.staff-card small { margin: .25rem 0 0; color: var(--church-muted); font-size: .78rem; }
.worship-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.worship-grid article, .info-placeholder { padding: 1.4rem; display: flex; align-items: center; gap: 1rem; background: var(--church-cream); border-radius: 1rem; }
.worship-grid article > span, .info-placeholder > span { width: 3rem; height: 3rem; display: grid; place-items: center; color: #fff; background: var(--church-green); border-radius: 50%; }
.worship-grid h3,.info-placeholder h3 { margin: 0; font-size: 1rem; font-weight: 800; }.worship-grid p,.info-placeholder p { margin: .15rem 0 0; color: var(--church-green-3); font-weight: 700; }.worship-grid small { color: var(--church-muted); }
.location-panel { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border: 1px solid var(--church-line); border-radius: 1.2rem; }
.location-art { position: relative; min-height: 18rem; display: grid; place-items: center; color: var(--church-green); background-color: #e9ede8; background-image: linear-gradient(rgba(25,56,47,.06) 1px, transparent 1px),linear-gradient(90deg,rgba(25,56,47,.06) 1px,transparent 1px); background-size: 2rem 2rem; }
.location-art > .icon { position: relative; z-index: 2; font-size: 3.3rem; filter: drop-shadow(0 8px 8px rgba(25,56,47,.25)); }
.location-art span { position: absolute; width: 5rem; height: 2rem; background: rgba(25,56,47,.14); border-radius: 50%; filter: blur(8px); transform: translateY(2.8rem); }
.location-copy { align-self: center; padding: 2.4rem; }.location-copy h3 { font-size: 1.25rem; font-weight: 800; }.location-copy address { color: var(--church-muted); }.location-copy p { display: flex; gap: .5rem; align-items: center; }.location-copy .btn { margin-top: .6rem; }

.content-search { margin: 1.7rem 0 2rem; padding: .75rem; display: flex; align-items: center; gap: .6rem; background: #f5f6f3; border: 1px solid var(--church-line); border-radius: .9rem; }
.content-search .search-icon { margin-left: .35rem; color: var(--church-muted); }
.content-search .form-control { flex: 1; border: 0; background: transparent; box-shadow: none; }
.content-search .btn { flex: 0 0 auto; }
.search-result { margin: -.5rem 0 1.2rem; color: var(--church-muted); font-size: .88rem; }
.notice-list { border-top: 2px solid var(--church-green); }
.notice-list-item { position: relative; display: grid; grid-template-columns: 4.2rem minmax(0,1fr) auto; align-items: center; gap: 1.1rem; padding: 1.3rem .7rem; border-bottom: 1px solid var(--church-line); transition: background .2s ease; }
.notice-list-item:hover { background: #faf9f5; }.notice-list-item.is-pinned { background: #fcfaf4; }
.notice-index { display: grid; place-items: center; color: var(--church-muted); font-family: Georgia,serif; font-size: 1rem; }.notice-index .icon { color: var(--church-gold-text); font-size: 1.25rem; }
.notice-main { min-width: 0; }.notice-title-row { display: flex; align-items: center; gap: .5rem; }.notice-title-row h2 { min-width: 0; margin: 0; font-size: 1.03rem; font-weight: 800; }.notice-title-row h2 a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.notice-title-row h2 a::after { content: ""; position: absolute; inset: 0; }
.notice-main > p { margin: .35rem 0; overflow: hidden; color: var(--church-muted); font-size: .83rem; text-overflow: ellipsis; white-space: nowrap; }
.item-meta { display: flex; gap: .85rem; color: var(--church-muted); font-size: .72rem; }.attachment-mark { color: var(--church-green-3); }.list-chevron { color: #a4aca8; }
.pagination-wrap { display: flex; justify-content: center; margin-top: 2rem; }.pagination { gap: .25rem; }.pagination .page-link { min-width: 2.4rem; height: 2.4rem; display: flex; justify-content: center; align-items: center; gap: .2rem; color: var(--church-green); border: 0; border-radius: .55rem !important; font-weight: 700; }.pagination .page-link:hover { background: var(--church-cream); }.pagination .active>.page-link { color: #fff; background: var(--church-green); }.pagination .disabled>.page-link { color: #b1b8b4; background: transparent; }

.breadcrumb-nav { margin-bottom: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; color: var(--church-muted); font-size: .78rem; }.breadcrumb-nav .icon { font-size: .7rem; }.breadcrumb-nav a:hover { color: var(--church-green); }
.article-detail, .sermon-detail, .event-detail { overflow: hidden; border: 1px solid var(--church-line); border-radius: 1.25rem; background: #fff; }
.article-header { padding: 2.6rem 2.8rem; border-bottom: 1px solid var(--church-line); background: #faf8f2; }.article-badges { display: flex; align-items: center; gap: .5rem; }.article-badges .section-eyebrow { margin: 0; }.article-header h1,.sermon-detail-header h1,.event-detail-header h1 { margin: .7rem 0 1rem; font-size: clamp(1.75rem,4vw,2.7rem); font-weight: 850; letter-spacing: -.06em; }.article-meta { display: flex; gap: 1.2rem; color: var(--church-muted); font-size: .8rem; }.article-meta span,.article-meta time { display: flex; align-items: center; gap: .35rem; }
.article-body { min-height: 15rem; padding: 2.8rem; color: #39433f; }
.attachment-box { margin: 0 2.8rem 2.8rem; padding: 1rem; display: grid; grid-template-columns: 2.8rem 1fr auto; align-items: center; gap: .9rem; background: #f5f6f3; border-radius: .8rem; }.attachment-icon { width: 2.8rem; height: 2.8rem; display: grid; place-items: center; color: var(--church-green); background: #fff; border-radius: .65rem; }.attachment-box h2 { margin: 0; font-size: .85rem; font-weight: 800; }.attachment-box p { margin: .1rem 0 0; color: var(--church-muted); font-size: .75rem; }
.detail-actions { margin-top: 1.3rem; display: flex; justify-content: flex-end; }

.sermon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }.sermon-card { overflow: hidden; border: 1px solid var(--church-line); border-radius: 1.1rem; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }.sermon-card:hover { transform: translateY(-4px); box-shadow: var(--church-shadow); }
.sermon-thumbnail { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: #204438; }.sermon-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }.sermon-card:hover img { transform: scale(1.035); }.thumbnail-pattern { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.16); background: radial-gradient(circle at 20% 20%,rgba(255,255,255,.08),transparent 32%),linear-gradient(145deg,#19382f,#396b59); }.thumbnail-pattern .icon { font-size: 5.5rem; }.play-button { position: absolute; left: 50%; top: 50%; width: 3.5rem; height: 3.5rem; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.65); border-radius: 50%; transform: translate(-50%,-50%); backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease; }.sermon-card:hover .play-button { background: var(--church-green); transform: translate(-50%,-50%) scale(1.07); }.thumbnail-label { position: absolute; left: .8rem; bottom: .8rem; padding: .25rem .55rem; color: #fff; background: rgba(25,56,47,.8); border-radius: .35rem; font-size: .67rem; backdrop-filter: blur(4px); }
.sermon-card-body { padding: 1.25rem 1.3rem 1.4rem; }.sermon-card-body time { color: var(--church-gold-text); font-size: .7rem; font-weight: 800; }.sermon-card-body h2 { margin: .4rem 0 .45rem; font-size: 1.15rem; font-weight: 850; letter-spacing: -.035em; }.sermon-card-body h2 a:hover { color: var(--church-green-3); }.sermon-scripture { margin: 0; color: var(--church-muted); font-size: .8rem; }.sermon-preacher { margin: .5rem 0 0; color: var(--church-green); font-size: .8rem; font-weight: 800; }
.sermon-detail-header,.event-detail-header { padding: 2.4rem 2.7rem 1.6rem; }.sermon-detail-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--church-muted); font-size: .85rem; }.sermon-detail-meta span::before { content: ""; display: inline-block; width: 3px; height: 3px; margin-right: 1rem; vertical-align: middle; background: #b4bbb7; border-radius: 50%; }.video-frame { position: relative; aspect-ratio: 16/9; background: #10211c; }.video-frame iframe { width: 100%; height: 100%; border: 0; }.video-placeholder { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: .8rem; color: rgba(255,255,255,.75); }.video-placeholder .icon { font-size: 3rem; }.video-placeholder p { margin: 0; }.series-label { margin: 1.5rem 2.7rem 0; color: var(--church-muted); font-size: .85rem; }.series-label span { margin-right: .4rem; color: var(--church-green); font-weight: 800; }.sermon-description { padding: 2.4rem 2.7rem; }.sermon-description h2 { color: var(--church-ink); font-size: 1.15rem; font-weight: 800; }.youtube-link { margin: 0 2.7rem 2.4rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--church-green); font-size: .85rem; font-weight: 800; }

.bulletin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }.bulletin-card { overflow: hidden; border: 1px solid var(--church-line); border-radius: 1.05rem; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }.bulletin-card:hover { transform: translateY(-3px); box-shadow: var(--church-shadow); }.bulletin-cover { position: relative; min-height: 18rem; display: grid; place-items: center; overflow: hidden; background: #e7ebe6; }.bulletin-cover > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }.bulletin-cover > time { position: absolute; left: .7rem; bottom: .7rem; padding: .28rem .55rem; color: #fff; background: rgba(25,56,47,.85); border-radius: .35rem; font-size: .68rem; }.bulletin-paper { width: 68%; aspect-ratio: .72; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; color: var(--church-green); background: #fffdf8; box-shadow: 0 10px 22px rgba(25,56,47,.14); transform: rotate(-1.5deg); }.paper-cross { width: 2.1rem; height: 2.1rem; margin-bottom: 1.5rem; display: grid; place-items: center; color: #fff; background: var(--church-green); border-radius: 50%; }.bulletin-paper small { color: var(--church-gold-text); font-size: .55rem; letter-spacing: .18em; }.bulletin-paper strong { margin-top: .25rem; font-family: Georgia,"Batang",serif; font-size: 1.4rem; }.paper-lines { width: 100%; flex: 1; margin-top: 1rem; background: repeating-linear-gradient(to bottom, transparent 0,transparent .65rem,#e4e4df .7rem); }.bulletin-card-body { padding: 1.2rem; }.bulletin-card-body h2 { min-height: 2.8rem; margin: 0 0 .8rem; font-size: 1rem; font-weight: 800; }

.event-list-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.3rem; }.event-card { overflow: hidden; border: 1px solid var(--church-line); border-radius: 1.1rem; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }.event-card:hover { transform: translateY(-3px); box-shadow: var(--church-shadow); }.event-card-visual { position: relative; display: block; aspect-ratio: 16/8.5; overflow: hidden; background: #dce7e1; }.event-card-visual img { width: 100%; height: 100%; object-fit: cover; }.event-pattern { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(25,56,47,.22); background: radial-gradient(circle at 75% 20%,rgba(255,255,255,.7),transparent 25%),linear-gradient(145deg,#d8e6df,#eee8d8); }.event-pattern .icon { font-size: 5rem; }.event-date { position: absolute; left: 1rem; bottom: 1rem; min-width: 3.7rem; padding: .55rem; color: #fff; text-align: center; background: var(--church-green); border-radius: .7rem; box-shadow: 0 7px 15px rgba(25,56,47,.22); }.event-date strong,.event-date small { display: block; line-height: 1.1; }.event-date strong { font: 700 1.5rem Georgia,serif; }.event-date small { margin-top: .2rem; color: #e6d0a9; font-size: .6rem; }.event-card-body { padding: 1.35rem; }.event-card-body h2 { margin: 0 0 .65rem; font-size: 1.18rem; font-weight: 850; letter-spacing: -.035em; }.event-meta { display: flex; flex-direction: column; gap: .25rem; color: var(--church-green-3); font-size: .76rem; }.event-meta span { display: flex; align-items: center; gap: .35rem; }.event-card-body > p { min-height: 3.3rem; margin: .8rem 0; color: var(--church-muted); font-size: .83rem; }
.event-detail-visual { max-height: 27rem; overflow: hidden; background: #dce7e1; }.event-detail-visual img { width: 100%; max-height: 27rem; object-fit: cover; }.event-detail-pattern { position: relative; height: 22rem; display: grid; place-items: center; color: rgba(25,56,47,.2); background: radial-gradient(circle at 20% 30%,rgba(255,255,255,.7),transparent 25%),linear-gradient(145deg,#d8e6df,#eee8d8); }.event-detail-pattern .icon { font-size: 6rem; }.event-info-panel { margin: 0 2.7rem; padding: 1.25rem 1.5rem; display: grid; gap: .7rem; background: #f6f6f2; border-radius: .85rem; }.event-info-panel > div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; }.event-info-panel dt { color: var(--church-green); font-size: .85rem; }.event-info-panel dd { margin: 0; color: #4f5a56; font-size: .85rem; }.event-detail-body { padding: 2.5rem 2.7rem; }

.empty-state { padding: 5rem 1.5rem; text-align: center; border: 1px dashed #cfd7d3; border-radius: 1rem; background: #fbfaf7; }.empty-state-icon { width: 4.3rem; height: 4.3rem; margin: 0 auto 1.2rem; display: grid; place-items: center; color: var(--church-green); background: var(--church-cream); border-radius: 50%; }.empty-state-icon .icon { font-size: 1.8rem; }.empty-state h2 { margin: 0; font-size: 1.18rem; font-weight: 800; }.empty-state p { margin: .45rem 0 0; color: var(--church-muted); font-size: .86rem; }
.error-page { min-height: 34rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.error-visual { position: relative; margin-bottom: 1rem; }.error-visual strong { color: #edf0ed; font: 800 clamp(5rem,15vw,9rem)/1 Georgia,serif; }.error-visual span { position: absolute; left: 50%; top: 50%; width: 3.8rem; height: 3.8rem; display: grid; place-items: center; color: #fff; background: var(--church-green); border-radius: 50%; transform: translate(-50%,-50%); }.error-page h1 { margin: 0; font-size: clamp(1.7rem,4vw,2.5rem); font-weight: 850; letter-spacing: -.055em; }.error-page > p { max-width: 34rem; margin: .8rem auto 1.6rem; color: var(--church-muted); }.error-actions { display: flex; gap: .6rem; }

@media (max-width: 1199.98px) {
  .site-layout { grid-template-columns: minmax(0,1fr) 16.5rem; gap: 2rem; }
  .quick-links { grid-template-columns: repeat(2,1fr); }.quick-links > a:nth-child(2) { border-right: 0; }.quick-links > a:nth-child(-n+2) { border-bottom: 1px solid var(--church-line); }.quick-links > a:first-child { border-radius: 1.1rem 0 0 0; }.quick-links > a:last-child { border-radius: 0 0 1.1rem 0; }
  .hero-copy { padding-left: 3rem; }
}
@media (min-width: 992px) {
  .site-navbar .navbar-toggler { display: none; }
}
@media (max-width: 991.98px) {
  .header-inner { min-height: 5.6rem; }.site-navbar { min-height: 3.3rem; }.site-navbar .navbar-collapse { padding-bottom: .75rem; }.site-nav { gap: 0; }.site-nav .nav-link { padding: .8rem 1rem !important; }.site-nav .nav-link::after { left: 1rem; transform: none; }.site-nav .nav-link.active::after,.site-nav .nav-link:hover::after { width: 1.5rem; }
  .site-layout { grid-template-columns: 1fr; padding-top: 2rem; }.site-sidebar { display: grid; grid-template-columns: repeat(3,1fr); }.sidebar-card { height: 100%; }
  .home-hero { min-height: 28rem; }.hero-copy { padding: 3.5rem 0 3.5rem 2.5rem; }.hero-visual { opacity: .8; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-links { flex-direction: row; grid-column: 1/-1; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767.98px) {
  body { word-break: normal; }.header-inner { min-height: 4.9rem; }.brand-mark { width: 2.35rem; height: 2.35rem; }.brand-copy strong { font-size: 1.02rem; }.brand-copy small { font-size: .58rem; }.site-layout { padding-top: 1.25rem; padding-bottom: 3rem; }
  .site-sidebar { grid-template-columns: 1fr; }.sidebar-card:not(.sidebar-welcome) { display: none; }
  .home-hero { min-height: 30rem; grid-template-columns: 1fr; }.hero-copy { padding: 3.25rem 1.6rem; }.hero-copy h1 { max-width: 85%; }.hero-copy > p { max-width: 85%; }.hero-visual { position: absolute; inset: 0; opacity: .45; }.hero-cross-v { right: 3.5rem; top: 6rem; }.hero-cross-h { right: .5rem; top: 9.4rem; }.hero-glow { right: -4rem; top: 2rem; }
  .quick-links { margin: -1.4rem .7rem 3rem; grid-template-columns: 1fr 1fr; }.quick-links > a { padding: 1rem; grid-template-columns: 2.35rem 1fr; }.quick-links small,.quick-arrow { display: none; }
  .home-section { margin-top: 3.2rem; }.event-preview-grid { grid-template-columns: 1fr; }.sermon-feature { grid-template-columns: 1fr; }.sermon-feature-art { min-height: 11rem; }.sermon-feature-copy { padding: 1.8rem; }
  .page-header { min-height: 11.5rem; padding: 2rem 1.6rem; }.page-header-icon { width: 4.3rem; height: 4.3rem; opacity: .5; }.page-header-icon .icon { font-size: 1.8rem; }
  .content-search { flex-wrap: wrap; }.content-search .form-control { width: calc(100% - 2.3rem); flex: auto; }.content-search .btn { flex: 1; }
  .about-intro,.about-section,.location-panel { grid-template-columns: 1fr; }.about-intro { padding: 1.25rem; }.about-visual { min-height: 13rem; }.value-grid { grid-template-columns: 1fr; }.about-section { padding: 1.25rem; }.portrait-placeholder { width: 7rem; aspect-ratio: 1; border-radius: 50%; }.worship-grid { grid-template-columns: 1fr; }.location-art { min-height: 12rem; }
  .sermon-grid,.event-list-grid { grid-template-columns: 1fr; }.bulletin-grid { grid-template-columns: repeat(2,1fr); }
  .article-header,.article-body,.sermon-detail-header,.event-detail-header,.sermon-description,.event-detail-body { padding-left: 1.4rem; padding-right: 1.4rem; }.attachment-box { margin-left: 1.4rem; margin-right: 1.4rem; grid-template-columns: 2.8rem 1fr; }.attachment-box .btn { grid-column: 1/-1; }.event-info-panel { margin-left: 1.4rem; margin-right: 1.4rem; }.event-info-panel > div { grid-template-columns: 1fr; gap: .15rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.7rem; padding-top: 2.7rem; }.footer-links { grid-column: auto; }.notice-list-item { grid-template-columns: 2.2rem minmax(0,1fr); }.notice-list-item .list-chevron { display: none; }
}
@media (max-width: 479.98px) {
  .quick-links { grid-template-columns: 1fr; }.quick-links > a { border-right: 0; border-bottom: 1px solid var(--church-line); border-radius: 0 !important; }.quick-links > a:first-child { border-radius: 1.1rem 1.1rem 0 0 !important; }.quick-links > a:last-child { border-bottom: 0; border-radius: 0 0 1.1rem 1.1rem !important; }
  .hero-copy h1,.hero-copy > p { max-width: 100%; }.hero-actions { flex-direction: column; align-items: stretch; }.page-header-icon { display: none; }
  .bulletin-grid { grid-template-columns: 1fr; }.bulletin-cover { min-height: 20rem; }.article-meta { flex-direction: column; gap: .3rem; }.notice-preview-item { grid-template-columns: 3.4rem minmax(0,1fr) auto; gap: .7rem; }.staff-grid { grid-template-columns: 1fr 1fr; }.section-heading { align-items: start; }.section-heading > .text-link { margin-top: .35rem; font-size: .76rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
  .site-header,.site-navbar,.site-sidebar,.site-footer,.site-progress,.detail-actions,.breadcrumb-nav { display: none !important; }.site-layout { display: block; padding: 0; }.article-detail,.sermon-detail,.event-detail { border: 0; }.site-content { width: 100%; }
}
