
:root{
  --bg:#f7efe5; --paper:#fcf7f0; --ink:#2e2926; --muted:#5a5048; --line:#dacfc3;
  --accent:#af7846; --accent2:#8c6a4f; --ring:rgba(175,120,70,.35);
}
*{box-sizing:border-box} html{scroll-behavior:smooth} body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink); background:var(--bg) url('/assets/img/bg.jpg') center/cover no-repeat fixed;
}
/* subtle readability overlay */
body::before{
  content:""; position:fixed; inset:0; background:rgba(247,239,229,.28); pointer-events:none; z-index:-1;
}
a{color:var(--accent); text-decoration:none} a:hover{text-decoration:underline}
.container{max-width:1200px; margin:0 auto; padding:24px}
header{position:sticky; top:0; z-index:50; background:rgba(250,245,238,.94); border-bottom:1px solid var(--line); backdrop-filter:saturate(120%) blur(6px)}
.nav{display:flex; align-items:center; justify-content:space-between; gap:10px}
.logo img{height:56px; width:auto; border-radius:12px; box-shadow:0 0 0 2px var(--ring)}
nav a.btn{margin-left:8px} .btn{display:inline-flex; gap:8px; align-items:center; padding:10px 14px; background:var(--paper); border:1px solid var(--line); border-radius:14px}
.btn:hover{box-shadow:0 6px 18px rgba(0,0,0,.12)}
main{min-height:65vh}
.hero{display:grid; grid-template-columns:1.1fr .9fr; gap:32px; align-items:center; padding:48px 0}
@media (max-width:900px){.hero{grid-template-columns:1fr}}
.card{background:rgba(252,247,240,.92); border:1px solid var(--line); border-radius:22px; box-shadow:0 16px 40px rgba(0,0,0,.12)}
.card.pad{padding:22px}
h1{font-size:clamp(28px,4.2vw,48px); margin:6px 0} h2{font-size:clamp(22px,3vw,36px); margin:10px 0}
.muted{color:var(--muted)}
.grid{display:grid; gap:18px} .cols-3{grid-template-columns:repeat(3,1fr)} @media(max-width:900px){.cols-3{grid-template-columns:1fr}}
.kv{width:100%; border-radius:16px; display:block; box-shadow:0 10px 28px rgba(0,0,0,.18)}
.section{margin-top:30px}
.badge{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(175,120,70,.16); color:var(--accent); border:1px solid var(--ring); font-size:12px}
/* Church Life cards */
.life-card{position:relative; overflow:hidden}
.life-card .top{height:200px; background-size:cover; background-position:center}
.life-card .body{padding:16px 18px 18px}
.life-card .badge-ico{position:absolute; top:14px; left:14px; width:40px; height:40px; border-radius:999px;
  background:linear-gradient(180deg, #fff, #f8efe4); border:2px solid rgba(0,0,0,.08); display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.12)}
.life-card .badge-ico svg{width:22px; height:22px; stroke:#3b2e22; stroke-width:2; fill:none}
footer{padding:34px 0; border-top:1px solid var(--line); color:var(--muted); margin-top:34px}
hr.sep{border:none; height:1px; background:var(--line); margin:20px 0}
.form{display:grid; gap:12px; max-width:680px} .input, textarea{width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--line); background:#fff}
input[type=submit]{cursor:pointer} .note{font-size:.92rem; color:var(--muted)}
.alert{padding:12px; border-radius:12px; background:#eef6ec; border:1px solid #b6e3b9; color:#125b2e}
