/* ── INDEX PAGE — page-specific styles ── */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#C0272D;--red-dark:#8B1A1E;--red-light:#E8474D;--red-bg:#FDF2F2;
  --black:#111111;--warm:#1A1A1A;--cream:#FAF9F7;--border:#E8E4DF;
  --muted:#6B6360;--radius:12px;
}
body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--black);line-height:1.6;font-size:16px;overflow-x:hidden}

/* ── NAV ── */
nav{
  position:sticky;top:0;z-index:100;
  background:rgba(17,17,17,0.97);backdrop-filter:blur(10px);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 clamp(1rem,5vw,3.5rem);height:62px;
  border-bottom:1px solid rgba(192,39,45,0.25);
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-pill{
  height:38px;display:flex;align-items:center;
  background:#fff;border-radius:6px;padding:4px 9px;
}
.logo-rg{font-family:'Cormorant Garamond',serif;font-weight:700;font-size:24px;color:var(--red);line-height:1}
.logo-a{font-family:'Cormorant Garamond',serif;font-weight:700;font-size:24px;color:var(--black);line-height:1}
.logo-tagline{font-size:10px;letter-spacing:0.07em;color:rgba(255,255,255,0.35);text-transform:uppercase;margin-left:6px;line-height:1.3}
.nav-links{display:flex;gap:1.75rem;list-style:none}
.nav-links a{color:rgba(255,255,255,0.62);text-decoration:none;font-size:14px;transition:color .2s}
.nav-links a:hover{color:var(--red-light)}
.nav-right{display:flex;align-items:center;gap:1rem}
.nav-donate{color:rgba(255,255,255,0.5);font-size:13px;text-decoration:none;transition:color .2s}
.nav-donate:hover{color:#fff}
.nav-cta{background:var(--red);color:#fff;border:none;padding:8px 20px;border-radius:6px;font-size:13px;font-weight:500;cursor:pointer;font-family:'DM Sans',sans-serif;text-decoration:none;transition:background .2s;white-space:nowrap}
.nav-cta:hover{background:var(--red-dark)}
.hamburger{display:none;background:none;border:none;color:#fff;font-size:22px;cursor:pointer;padding:4px}

/* ── MOBILE NAV DRAWER ── */
.mob-drawer{
  position:fixed;inset:0;z-index:200;pointer-events:none;
}
.mob-overlay{
  position:absolute;inset:0;background:rgba(0,0,0,0);transition:background .3s;
}
.mob-panel{
  position:absolute;top:0;right:0;bottom:0;width:min(300px,85vw);
  background:var(--black);transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;padding:2rem 1.5rem;
  border-left:3px solid var(--red);
}
.mob-drawer.open{pointer-events:all}
.mob-drawer.open .mob-overlay{background:rgba(0,0,0,0.6)}
.mob-drawer.open .mob-panel{transform:translateX(0)}
.mob-close{background:none;border:none;color:rgba(255,255,255,0.5);font-size:22px;cursor:pointer;align-self:flex-end;margin-bottom:2rem}
.mob-links{list-style:none;display:flex;flex-direction:column;gap:0}
.mob-links li a{
  display:block;color:rgba(255,255,255,0.75);text-decoration:none;
  font-size:1.1rem;padding:0.9rem 0;border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color .2s;font-family:'Cormorant Garamond',serif;font-size:1.4rem;
}
.mob-links li a:hover{color:var(--red-light)}
.mob-cta{margin-top:2rem;background:var(--red);color:#fff;border:none;padding:14px;border-radius:8px;font-size:15px;font-weight:500;cursor:pointer;font-family:'DM Sans',sans-serif;width:100%}

/* ── HERO ── */
.hero{
  min-height:92vh;display:flex;align-items:center;
  background:var(--black);
  padding:clamp(4rem,10vw,8rem) clamp(1.5rem,8vw,5.5rem);
  position:relative;overflow:hidden;
}
.hero-bg-text{
  position:absolute;right:-2%;top:50%;transform:translateY(-50%);
  font-family:'Cormorant Garamond',serif;font-size:clamp(200px,32vw,420px);
  font-weight:700;color:rgba(192,39,45,0.05);line-height:1;
  user-select:none;letter-spacing:-0.02em;
}
.hero-line{
  position:absolute;left:0;top:0;bottom:0;width:4px;
  background:linear-gradient(to bottom,transparent,var(--red) 20%,var(--red) 80%,transparent);
}
.hero-content{position:relative;z-index:2;max-width:660px}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(192,39,45,0.12);border:1px solid rgba(192,39,45,0.3);
  color:#E8A0A2;font-size:11px;letter-spacing:0.12em;text-transform:uppercase;
  padding:6px 14px;border-radius:100px;margin-bottom:2rem;font-weight:500;
}
.badge-dot{width:6px;height:6px;border-radius:50%;background:var(--red);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,7.5vw,6rem);
  font-weight:600;color:#fff;line-height:1.05;margin-bottom:1.5rem;
}
.hero h1 .accent{color:var(--red-light);display:block}
.hero-sub{font-size:clamp(1rem,2vw,1.15rem);color:rgba(255,255,255,0.55);max-width:500px;margin-bottom:2.5rem;font-weight:300;line-height:1.85}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{
  background:var(--red);color:#fff;padding:14px 28px;border-radius:8px;
  font-weight:500;font-size:15px;text-decoration:none;border:none;cursor:pointer;
  font-family:'DM Sans',sans-serif;transition:all .2s;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-ghost{
  background:transparent;color:rgba(255,255,255,0.75);padding:14px 28px;border-radius:8px;
  font-weight:400;font-size:15px;text-decoration:none;border:1px solid rgba(255,255,255,0.18);
  transition:all .2s;cursor:pointer;font-family:'DM Sans',sans-serif;display:inline-flex;align-items:center;gap:8px;
}
.btn-ghost:hover{border-color:var(--red);color:var(--red-light)}
.hero-stats{
  margin-top:3.5rem;padding-top:2.5rem;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;gap:3rem;flex-wrap:wrap;
}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2.6rem;font-weight:700;color:#fff;line-height:1}
.stat-num span{color:var(--red-light)}
.stat-lbl{font-size:11px;color:rgba(255,255,255,0.38);text-transform:uppercase;letter-spacing:0.08em;margin-top:4px}

/* ── ANNOUNCEMENT TICKER ── */
.ticker{
  background:var(--red);color:#fff;
  height:40px;display:flex;align-items:center;overflow:hidden;
  position:relative;
}
.ticker-label{
  background:var(--red-dark);padding:0 1.25rem;height:100%;
  display:flex;align-items:center;font-size:11px;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;white-space:nowrap;flex-shrink:0;
}
.ticker-track{display:flex;animation:ticker 24s linear infinite;white-space:nowrap}
.ticker-item{padding:0 3rem;font-size:13px;opacity:.9}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── ABOUT ── */
.about{
  background:#fff;padding:clamp(4rem,8vw,6rem) clamp(1.5rem,8vw,5.5rem);
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;
}
.section-eyebrow{
  font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--red);font-weight:500;margin-bottom:1rem;
  display:flex;align-items:center;gap:8px;
}
.section-eyebrow::before{content:'';display:block;width:24px;height:2px;background:var(--red);border-radius:2px}
.about h2{
  font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3.2rem);
  font-weight:600;color:var(--black);line-height:1.2;margin-bottom:1.25rem;
}
.about p{color:var(--muted);line-height:1.85;margin-bottom:1rem;font-size:15px}
.about-visual{
  background:var(--black);border-radius:16px;padding:2rem;
  display:flex;flex-direction:column;gap:1rem;position:relative;overflow:hidden;
}
.about-visual::before{
  content:'RGa';position:absolute;right:-10px;bottom:-20px;
  font-family:'Cormorant Garamond',serif;font-size:120px;font-weight:700;
  color:rgba(192,39,45,0.07);line-height:1;user-select:none;
}
.pillars{display:grid;grid-template-columns:1fr 1fr;gap:0.85rem}
.pillar{
  background:rgba(255,255,255,0.04);border:1px solid rgba(192,39,45,0.18);
  border-radius:10px;padding:1.1rem;transition:border-color .2s;
}
.pillar:hover{border-color:rgba(192,39,45,0.5)}
.pillar-icon{font-size:20px;margin-bottom:0.5rem}
.pillar h4{font-family:'Cormorant Garamond',serif;color:var(--red-light);font-size:1.05rem;margin-bottom:3px}
.pillar p{color:rgba(255,255,255,0.45);font-size:12px;margin:0;line-height:1.5}
.nations-strip{
  background:rgba(192,39,45,0.1);border:1px solid rgba(192,39,45,0.2);
  border-radius:8px;padding:0.85rem 1rem;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:0.5rem;
}
.nations-strip span{color:var(--red-light);font-size:12px;font-weight:500}
.nation-flags{display:flex;gap:4px;flex-wrap:wrap}
.flag{font-size:18px}

/* ── DEVOTIONAL PREVIEW ── */
.dev-preview{
  background:var(--cream);padding:clamp(4rem,8vw,6rem) clamp(1.5rem,8vw,5.5rem);
}
.dev-preview-inner{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start}
.dev-left h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:600;color:var(--black);line-height:1.2;margin-bottom:1rem}
.dev-left p{color:var(--muted);font-size:15px;line-height:1.8;margin-bottom:1.5rem}
.dev-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.06);
}
.dev-card-stripe{height:4px;background:var(--red)}
.dev-card-body{padding:1.5rem}
.dev-date-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:0.75rem}
.dev-date{font-size:11px;color:var(--red);font-weight:500;letter-spacing:0.08em;text-transform:uppercase}
.dev-badge{background:var(--red-bg);color:var(--red-dark);font-size:10px;padding:3px 9px;border-radius:100px;font-weight:500}
.dev-title{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;color:var(--black);margin-bottom:0.75rem;line-height:1.25}
.dev-scripture{background:var(--red-bg);border-left:3px solid var(--red);padding:.75rem 1rem;border-radius:0 6px 6px 0;margin-bottom:1rem;font-family:'Cormorant Garamond',serif;font-style:italic;color:var(--red-dark);font-size:.95rem;line-height:1.65}
.dev-ref{font-size:11px;color:var(--muted);font-weight:500;margin-top:4px;font-style:normal}
.dev-excerpt{color:var(--muted);font-size:13.5px;line-height:1.8;margin-bottom:1.25rem}
.dev-footer{display:flex;align-items:center;justify-content:space-between;padding-top:1rem;border-top:1px solid var(--border);flex-wrap:wrap;gap:.5rem}
.audio-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--black);color:#fff;padding:8px 16px;
  border-radius:100px;font-size:12px;font-weight:400;border:none;cursor:pointer;
  font-family:'DM Sans',sans-serif;transition:background .2s;
}
.audio-btn:hover{background:var(--red-dark)}
.audio-btn.playing{background:var(--red)}
.play-dot{width:22px;height:22px;border-radius:50%;background:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.audio-btn.playing .play-dot{background:rgba(255,255,255,0.2)}
.play-dot svg{width:9px;height:9px;fill:#fff;margin-left:1px}
.wave-mini{display:none;align-items:center;gap:2px}
.audio-btn.playing .wave-mini{display:flex}
.audio-btn.playing .dur-lbl{display:none}
.wm{width:3px;background:rgba(255,255,255,0.7);border-radius:2px;animation:wv .9s ease-in-out infinite}
.wm:nth-child(1){height:7px}.wm:nth-child(2){height:12px;animation-delay:.12s}.wm:nth-child(3){height:9px;animation-delay:.24s}.wm:nth-child(4){height:14px;animation-delay:.06s}.wm:nth-child(5){height:7px;animation-delay:.18s}
@keyframes wv{0%,100%{transform:scaleY(1)}50%{transform:scaleY(0.35)}}
.read-link{color:var(--red);font-size:13px;font-weight:500;text-decoration:none}
.read-link:hover{text-decoration:underline}

/* ── SERVICES ── */
.services{background:var(--black);padding:clamp(4rem,8vw,6rem) clamp(1.5rem,8vw,5.5rem)}
.services-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.5rem;flex-wrap:wrap;gap:1rem}
.services-head h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:600;color:#fff;line-height:1.2}
.services-head p{color:rgba(255,255,255,0.45);font-size:14px;max-width:340px;text-align:right}
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.25rem}
.svc-card{
  background:rgba(255,255,255,0.03);border:1px solid rgba(192,39,45,0.15);
  border-radius:var(--radius);padding:1.5rem;
  transition:border-color .2s,background .2s;cursor:pointer;display:flex;flex-direction:column;
}
.svc-card:hover{border-color:rgba(192,39,45,0.5);background:rgba(192,39,45,0.05)}
.svc-icon{font-size:1.75rem;margin-bottom:1rem}
.svc-card h3{font-family:'Cormorant Garamond',serif;color:#fff;font-size:1.2rem;margin-bottom:.5rem}
.svc-card p{color:rgba(255,255,255,0.45);font-size:13px;line-height:1.7;flex:1;margin-bottom:1.25rem}
.svc-book{
  background:transparent;color:var(--red-light);border:1px solid rgba(192,39,45,0.35);
  padding:7px 16px;border-radius:6px;font-size:12px;cursor:pointer;
  font-family:'DM Sans',sans-serif;transition:all .2s;width:fit-content;
}
.svc-card:hover .svc-book{background:var(--red);color:#fff;border-color:var(--red)}

/* ── ONLINE COMMUNITY ── */
.community{
  background:#fff;padding:clamp(4rem,8vw,6rem) clamp(1.5rem,8vw,5.5rem);
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.community h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:600;color:var(--black);line-height:1.2;margin-bottom:1rem}
.community p{color:var(--muted);font-size:15px;line-height:1.8;margin-bottom:1.75rem}
.social-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.soc-btn{
  display:flex;align-items:center;gap:10px;
  background:var(--cream);border:1px solid var(--border);border-radius:10px;
  padding:.85rem 1rem;text-decoration:none;color:var(--black);
  transition:all .2s;font-size:13px;font-weight:500;
}
.soc-btn:hover{border-color:var(--red);background:var(--red-bg);color:var(--red-dark)}
.soc-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:15px;flex-shrink:0}
.soc-fb{background:#1877F2;color:#fff}
.soc-ig{background:linear-gradient(135deg,#E1306C,#833AB4);color:#fff}
.soc-wa{background:#25D366;color:#fff}
.soc-tg{background:#229ED9;color:#fff}
.soc-yt{background:#FF0000;color:#fff}
.soc-info{line-height:1.2}
.soc-name{display:block;font-size:13px;font-weight:500}
.soc-sub{display:block;font-size:11px;color:var(--muted);margin-top:1px}
.community-right{
  background:var(--black);border-radius:16px;padding:2rem;
  display:flex;flex-direction:column;gap:1rem;
}
.join-card{
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;padding:1rem 1.25rem;display:flex;align-items:center;
  justify-content:space-between;gap:1rem;
}
.join-card-left h4{color:#fff;font-size:14px;font-weight:500;margin-bottom:2px}
.join-card-left p{color:rgba(255,255,255,0.4);font-size:12px}
.join-btn{
  background:var(--red);color:#fff;border:none;padding:7px 16px;
  border-radius:6px;font-size:12px;cursor:pointer;font-family:'DM Sans',sans-serif;
  white-space:nowrap;transition:background .2s;
}
.join-btn:hover{background:var(--red-dark)}

/* ── TESTIMONIES ── */
.testimonies{background:var(--cream);padding:clamp(4rem,8vw,6rem) clamp(1.5rem,8vw,5.5rem);text-align:center}
.testimonies h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);font-weight:600;color:var(--black);margin-bottom:.75rem}
.testimonies>p{color:var(--muted);font-size:15px;max-width:480px;margin:0 auto 2.5rem}
.testi-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem;text-align:left}
.testi-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:1.5rem;display:flex;flex-direction:column;gap:1rem;
}
.testi-card blockquote{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:1.05rem;color:var(--black);line-height:1.7;flex:1;
}
.testi-card blockquote::before{content:'"';font-size:3rem;color:var(--red);line-height:.5;display:block;margin-bottom:.5rem;font-style:normal}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;background:var(--red);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:13px;font-weight:600;flex-shrink:0;
}
.testi-name{font-size:13px;font-weight:500;color:var(--black)}
.testi-loc{font-size:11px;color:var(--muted)}

/* ── CTA BANNER ── */
.cta-banner{
  background:var(--red);padding:clamp(3rem,6vw,5rem) clamp(1.5rem,8vw,5.5rem);
  text-align:center;position:relative;overflow:hidden;
}
.cta-banner::before{
  content:'RGa';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  font-family:'Cormorant Garamond',serif;font-size:clamp(120px,20vw,260px);
  font-weight:700;color:rgba(255,255,255,0.06);line-height:1;user-select:none;pointer-events:none;
}
.cta-banner h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,5vw,3.5rem);color:#fff;font-weight:600;margin-bottom:1rem;position:relative}
.cta-banner p{color:rgba(255,255,255,0.8);font-size:15px;max-width:460px;margin:0 auto 2rem;position:relative}
.cta-buttons{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;position:relative}
.btn-white{background:#fff;color:var(--red);padding:14px 28px;border-radius:8px;font-weight:500;font-size:15px;text-decoration:none;border:none;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s;display:inline-flex;align-items:center;gap:8px}
.btn-white:hover{background:var(--cream);transform:translateY(-1px)}
.btn-outline-white{background:transparent;color:#fff;padding:14px 28px;border-radius:8px;font-weight:400;font-size:15px;text-decoration:none;border:2px solid rgba(255,255,255,0.4);transition:all .2s;cursor:pointer;font-family:'DM Sans',sans-serif}
.btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.1)}

/* ── FOOTER ── */
footer{background:#0A0A0A;padding:clamp(3rem,6vw,4.5rem) clamp(1.5rem,8vw,5.5rem) 1.75rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand{}
.footer-brand .ft-logo{font-family:'Cormorant Garamond',serif;margin-bottom:.75rem}
.ft-rg{color:var(--red);font-weight:700;font-size:28px}
.ft-a{color:#fff;font-weight:700;font-size:28px}
.footer-brand p{color:rgba(255,255,255,0.38);font-size:13px;line-height:1.8;max-width:260px}
.footer-contact{margin-top:1.25rem}
.footer-contact a{display:block;color:rgba(255,255,255,0.38);font-size:12px;text-decoration:none;margin-bottom:4px;transition:color .2s}
.footer-contact a:hover{color:var(--red-light)}
.footer-socials{display:flex;gap:.6rem;margin-top:1rem}
.fsoc{width:30px;height:30px;border-radius:6px;border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;font-size:12px;text-decoration:none;color:rgba(255,255,255,0.4);transition:all .2s}
.fsoc:hover{border-color:var(--red);color:var(--red-light)}
.footer-col h4{color:rgba(255,255,255,0.7);font-size:12px;font-weight:500;letter-spacing:.07em;text-transform:uppercase;margin-bottom:1rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.footer-col ul a{color:rgba(255,255,255,0.38);font-size:13px;text-decoration:none;transition:color .2s}
.footer-col ul a:hover{color:var(--red-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.06);padding-top:1.5rem;display:flex;justify-content:space-between;font-size:12px;color:rgba(255,255,255,0.25);flex-wrap:wrap;gap:.5rem}

/* ── AI CHAT ── */
.chat-bubble{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:150;
  width:54px;height:54px;border-radius:50%;background:var(--red);
  border:none;cursor:pointer;box-shadow:0 4px 20px rgba(192,39,45,0.45);
  display:flex;align-items:center;justify-content:center;
  font-size:21px;transition:transform .2s;
}
.chat-bubble:hover{transform:scale(1.08)}
.chat-badge{
  position:absolute;top:-2px;right:-2px;width:16px;height:16px;
  background:#22C55E;border:2px solid #0A0A0A;border-radius:50%;
}
.chat-window{
  position:fixed;bottom:5.5rem;right:1.5rem;z-index:150;
  width:min(370px,calc(100vw - 2rem));background:#fff;
  border-radius:16px;box-shadow:0 12px 48px rgba(0,0,0,0.2);
  display:none;flex-direction:column;border:1px solid #EEE;max-height:510px;
}
.chat-window.open{display:flex}
.chat-header{
  background:var(--black);padding:.9rem 1.1rem;border-radius:16px 16px 0 0;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:2px solid var(--red);
}
.ch-left{display:flex;align-items:center;gap:10px}
.ch-logo{height:28px;background:#fff;border-radius:5px;padding:2px 6px;display:flex;align-items:center}
.ch-rg{font-family:'Cormorant Garamond',serif;font-weight:700;font-size:17px;color:var(--red)}
.ch-a{font-family:'Cormorant Garamond',serif;font-weight:700;font-size:17px;color:var(--black)}
.ch-title{color:#fff;font-size:13px;font-weight:500}
.ch-sub{color:rgba(255,255,255,0.38);font-size:11px}
.close-chat{background:none;border:none;color:rgba(255,255,255,0.45);font-size:18px;cursor:pointer}
.chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.65rem;min-height:180px}
.msg{max-width:83%;padding:9px 13px;border-radius:12px;font-size:13px;line-height:1.65}
.msg.bot{background:#F4F2EF;color:var(--black);align-self:flex-start;border-bottom-left-radius:3px}
.msg.user{background:var(--red);color:#fff;align-self:flex-end;border-bottom-right-radius:3px}
.typing-dots{display:flex;gap:4px;padding:4px 0}
.typing-dots span{width:6px;height:6px;background:var(--muted);border-radius:50%;animation:dot 1.2s infinite}
.typing-dots span:nth-child(2){animation-delay:.2s}.typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes dot{0%,60%,100%{opacity:.3;transform:scale(.8)}30%{opacity:1;transform:scale(1)}}
.chat-input-row{display:flex;gap:8px;padding:.65rem .85rem;border-top:1px solid #EEE}
.chat-input-row input{flex:1;border:1px solid #DDD;border-radius:100px;padding:7px 13px;font-size:13px;font-family:'DM Sans',sans-serif;outline:none}
.chat-input-row input:focus{border-color:var(--red)}
.chat-send{background:var(--red);border:none;border-radius:50%;width:32px;height:32px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s}
.chat-send:hover{background:var(--red-dark)}
.chat-send svg{width:13px;height:13px;fill:#fff}

/* ── BOOKING MODAL ── */
.modal-overlay{position:fixed;inset:0;z-index:300;background:rgba(0,0,0,0.7);display:none;align-items:center;justify-content:center;padding:1rem}
.modal-overlay.open{display:flex}
.modal-box{background:#fff;border-radius:16px;padding:2rem;width:100%;max-width:480px;max-height:90vh;overflow-y:auto}
.modal-hd{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}
.modal-hd h3{font-family:'Cormorant Garamond',serif;font-size:1.7rem;color:var(--black)}
.modal-hd button{background:none;border:none;font-size:22px;cursor:pointer;color:var(--muted)}
.fg{margin-bottom:1.1rem}
.fg label{display:block;font-size:12px;font-weight:500;color:var(--black);margin-bottom:5px;letter-spacing:.02em}
.fg input,.fg select,.fg textarea{width:100%;padding:10px 13px;border:1px solid var(--border);border-radius:8px;font-size:14px;font-family:'DM Sans',sans-serif;color:var(--black);outline:none;transition:border-color .2s;background:#fff}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--red)}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.modal-submit{width:100%;background:var(--red);color:#fff;border:none;padding:13px;border-radius:8px;font-size:15px;font-weight:500;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s}
.modal-submit:hover{background:var(--red-dark)}
.modal-confirm{display:none;text-align:center;padding:.5rem 0}
.confirm-icon{font-size:2.5rem;margin-bottom:.75rem}
.modal-confirm h3{font-family:'Cormorant Garamond',serif;font-size:1.5rem;color:var(--black);margin-bottom:.5rem}
.modal-confirm p{color:var(--muted);font-size:14px}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .about,.community{grid-template-columns:1fr;gap:2.5rem}
  .dev-preview-inner{grid-template-columns:1fr;gap:2.5rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:768px){
  .nav-links,.nav-donate{display:none}
  .hamburger{display:block}
  .hero-stats{gap:2rem}
  .services-head p{text-align:left}
}
@media(max-width:500px){
  .footer-grid{grid-template-columns:1fr}
  .social-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .cta-buttons{flex-direction:column;align-items:center}
}