/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F9F5EE;
  --warm: #FDFAF5;
  --bark: #3D2B1F;
  --bark-l: #6B4C3B;
  --amber: #D4813A;
  --amber-l: #F2A85A;
  --amber-p: #FDF0E2;
  --sage: #5A7A5C;
  --sage-l: #EBF2EB;
  --text: #1E1410;
  --muted: #7A6358;
  --border: rgba(61,43,31,0.12);
  --nav-h: 72px;
  --r: 12px;
  --rl: 20px;
  --shadow: 0 20px 60px rgba(61,43,31,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ────────────────────────────────────────────────── */
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease, border-color .3s;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .05s;
}
body.cursor-hover .cursor { transform: translate(-50%,-50%) scale(1.8); border-color: var(--amber-l); background: rgba(212,129,58,.1); }

@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ── NAV ──────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253,250,245,0.9);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 900;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(61,43,31,.1); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--bark);
  cursor: pointer; text-decoration: none; flex-shrink: 0;
}
.logo-paw {
  width: 34px; height: 34px;
  background: var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .3s;
}
.nav-logo:hover .logo-paw { transform: rotate(-15deg) scale(1.1); }
.nav-links {
  display: flex; gap: 4px; align-items: center;
  margin-left: auto; list-style: none;
}
.nav-link {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: all .2s; cursor: pointer;
}
.nav-link:hover { color: var(--bark); background: var(--amber-p); }
.nav-link.active { color: var(--amber); }
.nav-contact-btn {
  background: var(--bark) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
}
.nav-contact-btn:hover { background: var(--bark-l) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; margin-left: auto;
  background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--bark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--warm); border-bottom: 1px solid var(--border);
  padding: 12px 5%; z-index: 899;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 8px; font-size: 15px; font-weight: 500;
  color: var(--text); border-radius: 8px; cursor: pointer;
  transition: background .2s;
}
.mobile-link:hover { background: var(--cream); }
.mobile-contact-btn { color: var(--amber); font-weight: 600; }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.section { display: none; padding-top: var(--nav-h); min-height: 100vh; }
.section.active { display: block; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.pt80 { padding-top: 80px; }
.mt28 { margin-top: 28px !important; }
.mt48 { margin-top: 48px !important; }
.mt64 { margin-top: 64px !important; }
.mb48 { margin-bottom: 48px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.center { text-align: center !important; }
.label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 12px;
  display: block;
}
.sh2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 50px); line-height: 1.1;
  color: var(--bark); margin-bottom: 20px;
}
.sh2 em { color: var(--amber); font-style: italic; }
.slead {
  font-size: 17px; color: var(--muted); font-weight: 300;
  line-height: 1.85; max-width: 560px;
}
.section-footer-spacer { height: 80px; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.orb1 { width: 500px; height: 500px; background: #f2a85a; top: -100px; left: -100px; animation: orbFloat 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: #d4813a; bottom: -80px; left: 30%; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb3 { width: 300px; height: 300px; background: #5a7a5c; top: 30%; right: -80px; animation: orbFloat 7s ease-in-out infinite 2s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .4;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 6% 80px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-l); color: var(--sage);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
  width: fit-content; border: 1px solid rgba(90,122,92,.2);
}
.badge-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 80px); line-height: 1.0;
  color: var(--bark); margin-bottom: 24px;
}
.hero-h1 em { color: var(--amber); font-style: italic; display: block; }
.hero-sub {
  font-size: 18px; color: var(--muted); font-weight: 300;
  max-width: 460px; line-height: 1.75; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 24px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: var(--bark); line-height: 1;
}
.hstat-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; font-weight: 400; }
.hstat-div { width: 1px; background: var(--border); align-self: stretch; }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
}
.hero-card-stack { position: relative; width: 340px; height: 400px; }
.hcard {
  position: absolute; background: white;
  border-radius: 16px; padding: 20px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(61,43,31,.08);
  transition: transform .3s;
}
.hcard:hover { transform: translateY(-4px) !important; }
.hcard1 { top: 0; right: 0; width: 180px; transform: rotate(3deg); }
.hcard2 { top: 80px; left: 0; width: 180px; transform: rotate(-2deg); }
.hcard3 { bottom: 80px; right: 20px; width: 180px; transform: rotate(1deg); }
.hcard-icon { font-size: 28px; margin-bottom: 8px; }
.hcard-text { font-size: 14px; font-weight: 600; color: var(--bark); }
.hcard-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hcard-main {
  position: absolute; bottom: 0; left: 0; right: 40px;
  background: var(--bark); border-radius: 16px; padding: 24px;
  color: white; z-index: -1;
}
.hcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.5; font-style: italic;
  color: rgba(255,255,255,.85);
}

/* ── TICKER ───────────────────────────────────────────────────────── */
.ticker {
  background: var(--bark); overflow: hidden;
  padding: 13px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 40px; align-items: center;
  animation: scrollTicker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes scrollTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ti { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.7); }
.ti b { color: var(--amber-l); font-weight: 600; }
.ts { color: var(--amber); font-size: 16px; }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-amber {
  background: var(--amber); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
}
.btn-amber:hover { background: #c27232; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,129,58,.35); }
.btn-amber.full-w { width: 100%; justify-content: center; }
.btn-amber.sm { font-size: 13px; padding: 10px 18px; }
.btn-amber.mt16 { margin-top: 16px; }
.btn-ghost {
  background: rgba(255,255,255,.08); color: var(--bark);
  font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: 10px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--bark); background: var(--cream); }
.btn-outline {
  background: transparent; color: var(--bark);
  font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: 10px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { border-color: var(--bark); background: var(--cream); }
.btn-outline.full-w { width: 100%; justify-content: center; }
.btn-outline.sm { font-size: 13px; padding: 9px 16px; }
.arrow { transition: transform .2s; }
.btn-amber:hover .arrow { transform: translateX(3px); }

/* ── HOME CONTENT ─────────────────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 80px 0;
}
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mc {
  background: var(--cream); border-radius: var(--r);
  padding: 24px 20px; border: 1px solid var(--border);
  transition: all .25s;
}
.mc:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(61,43,31,.08); }
.mc.dark { background: var(--bark); }
.mc.green { background: var(--sage); }
.mc-icon { font-size: 22px; margin-bottom: 10px; }
.mc h4 { font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 6px; }
.mc.dark h4, .mc.green h4 { color: white; }
.mc p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mc.dark p { color: rgba(255,255,255,.6); }
.mc.green p { color: rgba(255,255,255,.75); }
.cta-band {
  background: var(--cream); border-radius: var(--rl); padding: 56px 48px;
  text-align: center; margin-bottom: 0;
}
.cta-band .sh2 { margin-bottom: 12px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about-hero-card {
  background: var(--cream); border-radius: var(--rl);
  padding: 56px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; margin: 32px 0 56px; border: 1px solid var(--border);
}
.ahc-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--bark); margin-bottom: 16px; }
.ahc-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.ahc-visual {
  height: 320px; background: var(--bark); border-radius: var(--rl);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.big-bg-num {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1;
}
.ahc-badge { position: relative; text-align: center; color: white; padding: 24px; }
.ahc-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 24px; display: block; margin-bottom: 8px; }
.ahc-badge span { font-size: 14px; opacity: .7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.val-card {
  background: var(--cream); border-radius: var(--r);
  padding: 28px 24px; border: 1px solid var(--border); transition: all .25s;
}
.val-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.val-icon { font-size: 24px; margin-bottom: 12px; }
.val-card h3 { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 8px; }
.val-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.team-card { text-align: center; }
.tav {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--amber-l);
  transition: transform .3s;
}
.team-card:hover .tav { transform: scale(1.1) rotate(5deg); }
.team-card h4 { font-size: 14px; font-weight: 600; color: var(--bark); }
.team-card p { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ── OUR WORK ─────────────────────────────────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 16px; }
.work-card {
  background: var(--cream); border-radius: var(--rl);
  overflow: hidden; border: 1px solid var(--border);
  transition: all .3s; position: relative;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wc-header {
  padding: 28px 28px 0; display: flex; justify-content: space-between; align-items: flex-start;
}
.wc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}
.wc1 .wc-tag { background: rgba(61,43,31,.1); color: var(--bark); }
.wc2 .wc-tag { background: rgba(90,122,92,.15); color: var(--sage); }
.wc3 .wc-tag { background: rgba(212,129,58,.15); color: var(--amber); }
.wc4 .wc-tag { background: rgba(107,76,59,.12); color: var(--bark-l); }
.wc-icon { font-size: 32px; }
.work-card > h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--bark); margin: 16px 28px 10px; }
.work-card > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 28px 16px; }
.wc-meta { display: flex; gap: 12px; flex-wrap: wrap; padding: 0 28px 16px; }
.wc-meta span { font-size: 12px; color: var(--muted); }
.wc-meta strong { color: var(--amber); }
.wc-progress { padding: 16px 28px 24px; border-top: 1px solid var(--border); }
.wcp-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.prog-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--amber); border-radius: 3px; width: 0; transition: width 1.2s ease; }
.impact-stats-bar {
  background: var(--cream); border-radius: var(--rl);
  padding: 48px; margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.isb-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; line-height: 1; }
.isb-num.amber { color: var(--amber); }
.isb-num.bark { color: var(--bark); }
.isb-num.sage { color: var(--sage); }
.isb-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ── STORIES ──────────────────────────────────────────────────────── */
.featured-story {
  background: var(--bark); border-radius: var(--rl);
  padding: 56px; display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 56px; align-items: center; margin-bottom: 40px; color: white;
}
.fs-badge {
  display: inline-flex; align-items: center;
  background: rgba(212,129,58,.2); border: 1px solid rgba(212,129,58,.35);
  color: var(--amber-l); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.featured-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; line-height: 1.2; margin-bottom: 14px; color: white;
}
.featured-story p { font-size: 15px; opacity: .75; line-height: 1.8; margin-bottom: 22px; }
.fs-visual {
  height: 260px; background: rgba(255,255,255,.07);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 80px; border: 1px solid rgba(255,255,255,.1);
}
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card {
  background: var(--cream); border-radius: var(--r);
  padding: 24px; border: 1px solid var(--border);
  transition: all .25s; cursor: pointer;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.se { font-size: 36px; margin-bottom: 14px; }
.story-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--bark); margin-bottom: 8px; }
.story-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sf { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.sa { font-size: 12px; color: var(--amber); font-weight: 500; }
.sr { font-size: 12px; color: var(--muted); transition: color .2s; }
.story-card:hover .sr { color: var(--amber); }

/* ── GET INVOLVED ─────────────────────────────────────────────────── */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.inv-card {
  background: var(--cream); border-radius: var(--rl);
  padding: 36px 28px; border: 1px solid var(--border);
  text-align: center; transition: all .3s;
}
.inv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--amber); }
.inv-card.featured { background: var(--bark); border-color: var(--bark); }
.inv-icon { font-size: 32px; margin-bottom: 16px; }
.inv-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--bark); margin-bottom: 10px; }
.inv-card.featured h3 { color: white; }
.inv-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.inv-card.featured p { color: rgba(255,255,255,.7); }
.donate-widget {
  background: var(--cream); border: 2px solid var(--amber);
  border-radius: var(--rl); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.dw-h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--bark); margin-bottom: 20px; margin-top: 8px; }
.amt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.amt-btn {
  padding: 12px; text-align: center;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .2s; background: white; color: var(--bark);
  font-family: 'Outfit', sans-serif;
}
.amt-btn:hover, .amt-btn.selected { border-color: var(--amber); background: var(--amber); color: white; }
.custom-amt {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: 'Outfit', sans-serif;
  color: var(--text); background: white; outline: none;
  transition: border-color .2s;
}
.custom-amt:focus { border-color: var(--amber); }
.dw-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.dw-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--bark); margin-bottom: 10px; }
.dw-right > p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.impact-list { list-style: none; }
.impact-list li { font-size: 14px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; }
.impact-list li::before { content: "✦"; color: var(--amber); font-size: 10px; flex-shrink: 0; margin-top: 4px; }
.impact-list strong { color: var(--bark); }
.spread-band {
  background: var(--sage-l); border-radius: var(--rl); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-top: 32px;
}
.sb-h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--bark); margin-bottom: 10px; margin-top: 8px; }
.spread-band > div > p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.sb-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-card {
  background: white; border-radius: var(--r);
  padding: 24px; border: 1px solid var(--border);
}
.sc-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.sc-text { font-size: 14px; font-weight: 500; color: var(--bark); line-height: 1.6; margin-bottom: 16px; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer { background: var(--bark); margin-top: 80px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: 56px 5% 32px;
}
.fb-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: white; margin-bottom: 12px; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  font-size: 12px; color: rgba(255,255,255,.6);
  text-decoration: none; padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  transition: all .2s;
}
.social-btn:hover { color: var(--amber-l); border-color: var(--amber); }
.footer-col h5 {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 600; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.6);
  text-decoration: none; margin-bottom: 8px; cursor: pointer; transition: color .2s;
}
.footer-col a:hover { color: var(--amber-l); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 24px 5%; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.4);
}

/* ── MODALS ───────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(30,20,16,.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
  animation: modalIn .25s ease forwards;
}
@keyframes modalIn { from{opacity:0} to{opacity:1} }
.modal {
  background: var(--warm); border-radius: var(--rl);
  padding: 40px; width: 100%; max-width: 560px;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: modalSlide .3s ease forwards;
}
@keyframes modalSlide { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  cursor: pointer; font-size: 14px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--amber-p); color: var(--amber); }
.modal h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--bark); margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* Contact modal */
.contact-modal { max-width: 620px; }
.cmodal-header { margin-bottom: 24px; }
.cmodal-header h2 { font-size: 26px; }
.cmodal-header p { font-size: 14px; color: var(--muted); }
.contact-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.cq-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
  text-decoration: none; transition: all .2s; cursor: pointer;
}
.cq-btn:hover { border-color: var(--amber); background: var(--amber-p); transform: translateY(-1px); }
.cq-btn.call:hover { border-color: #22c55e; background: #f0fdf4; }
.cq-btn.whatsapp:hover { border-color: #22c55e; background: #f0fdf4; }
.cq-icon { font-size: 22px; flex-shrink: 0; }
.cq-btn strong { display: block; font-size: 13px; font-weight: 600; color: var(--bark); }
.cq-btn span { font-size: 12px; color: var(--muted); }
.cmodal-divider {
  text-align: center; font-size: 12px; color: var(--muted);
  position: relative; margin: 20px 0;
}
.cmodal-divider::before, .cmodal-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 60px); height: 1px; background: var(--border);
}
.cmodal-divider::before { left: 0; }
.cmodal-divider::after { right: 0; }

/* Forms */
.cform { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 13px; font-weight: 500; color: var(--bark); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: 'Outfit', sans-serif;
  color: var(--text); background: white; outline: none;
  transition: border-color .2s; resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--amber); }
.form-msg { font-size: 13px; margin-top: 12px; text-align: center; min-height: 20px; }
.form-msg.success { color: var(--sage); }
.form-msg.error { color: #e24b4a; }

/* Donate modal */
.donate-modal { max-width: 500px; }
.donate-impact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.dil { background: var(--cream); border-radius: var(--r); padding: 14px 16px; border: 1px solid var(--border); }
.dil span { font-size: 18px; font-weight: 700; color: var(--amber); font-family: 'Cormorant Garamond', serif; display: block; }
.dil p { font-size: 12px; color: var(--muted); margin-top: 2px; }
.bank-details { background: var(--cream); border-radius: var(--r); padding: 16px; margin-top: 16px; }
.bd-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.bd-row:last-child { border: none; }
.bd-row span { color: var(--muted); }
.bank-note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.donate-modal-actions { margin-top: 8px; }

/* Story modal */
.story-modal { max-width: 600px; }
.sm-emoji { font-size: 56px; margin-bottom: 16px; }
.sm-badge { display: inline-flex; align-items: center; background: var(--amber-p); color: var(--amber); font-size: 11px; font-weight: 600; letter-spacing:.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
#storyContent h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--bark); margin-bottom: 14px; }
#storyContent p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
#storyContent .story-pull { background: var(--bark); border-radius: var(--r); padding: 20px 24px; margin: 20px 0; }
#storyContent .story-pull p { color: rgba(255,255,255,.85); font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; margin: 0; }

/* Legal modals */
.legal-modal { max-width: 560px; }
.legal-content { margin-top: 20px; }
.legal-content h4 { font-size: 15px; font-weight: 600; color: var(--bark); margin: 20px 0 6px; }
.legal-content p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* Vol modal */
.vol-modal { max-width: 560px; }

/* ── CHATBOT ──────────────────────────────────────────────────────── */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
}
.chat-toggle {
  display: flex; align-items: center; gap: 10px;
  background: var(--bark); color: white;
  border: none; cursor: pointer; padding: 14px 20px;
  border-radius: 100px; font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(61,43,31,.3);
  transition: all .25s; position: relative;
}
.chat-toggle:hover { background: var(--bark-l); transform: translateY(-2px); }
.ct-icon { font-size: 20px; }
.ct-badge {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; background: var(--amber);
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: badgePop .3s ease;
}
.ct-badge.hidden { display: none; }
@keyframes badgePop { 0%{transform:scale(0)} 80%{transform:scale(1.2)} 100%{transform:scale(1)} }
.chat-box {
  position: absolute; bottom: 60px; right: 0;
  width: 360px; background: white;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,43,31,.2);
  display: none; flex-direction: column;
  border: 1px solid var(--border);
  animation: chatOpen .25s ease forwards;
}
.chat-box.open { display: flex; }
@keyframes chatOpen { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.chat-header {
  background: var(--bark); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.ch-avatar { font-size: 24px; }
.ch-info { flex: 1; }
.ch-info strong { display: block; font-size: 14px; font-weight: 600; color: white; }
.ch-info span { font-size: 11px; color: rgba(255,255,255,.6); }
.ch-close { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: 16px; padding: 4px; }
.ch-close:hover { color: white; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  max-height: 320px;
}
.chat-msg { display: flex; flex-direction: column; }
.chat-msg.user { align-items: flex-end; }
.chat-msg.bot { align-items: flex-start; }
.cm-bubble {
  max-width: 85%; padding: 10px 14px;
  border-radius: 14px; font-size: 14px; line-height: 1.6;
}
.chat-msg.bot .cm-bubble { background: var(--cream); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .cm-bubble { background: var(--amber); color: white; border-bottom-right-radius: 4px; }
.cm-time { font-size: 11px; color: var(--muted); margin-top: 4px; }
.chat-typing .cm-bubble { background: var(--cream); color: var(--muted); font-style: italic; }
.chat-suggestions {
  padding: 0 12px 12px; display: flex; gap: 6px; flex-wrap: wrap;
}
.chat-suggestions button {
  font-size: 12px; padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 100px;
  background: white; color: var(--muted); cursor: pointer;
  transition: all .2s; font-family: 'Outfit', sans-serif;
}
.chat-suggestions button:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-p); }
.chat-input-area {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid var(--border);
}
#chatInput {
  flex: 1; padding: 10px 12px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; outline: none;
  font-family: 'Outfit', sans-serif; color: var(--text);
  transition: border-color .2s;
}
#chatInput:focus { border-color: var(--amber); }
.chat-send {
  width: 38px; height: 38px; background: var(--amber);
  border: none; border-radius: 8px; color: white;
  cursor: pointer; font-size: 16px; transition: all .2s;
}
.chat-send:hover { background: #c27232; }

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────── */
@keyframes revealUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { animation: revealUp .7s ease forwards; }
.reveal-delay-1 { animation: revealUp .7s .1s ease both; }
.reveal-delay-2 { animation: revealUp .7s .2s ease both; }
.reveal-delay-3 { animation: revealUp .7s .3s ease both; }
.reveal-delay-4 { animation: revealUp .7s .45s ease both; }
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .about-hero-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .featured-story { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
  .fs-visual { display: none; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
  .donate-widget { grid-template-columns: 1fr; gap: 32px; }
  .spread-band { grid-template-columns: 1fr; gap: 28px; }
  .impact-stats-bar { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-quick { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .stories-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .amt-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .contact-quick { grid-template-columns: 1fr; }
  .impact-stats-bar { grid-template-columns: 1fr 1fr; padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .chat-box { width: 300px; }
  .cta-band { padding: 36px 24px; }
  .donate-widget { padding: 28px; }
  .donate-impact-list { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 5%; }
}

/* ── BLOG ─────────────────────────────────────────────────────────── */
.blog-header { margin-bottom: 48px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
/* Featured post spans full width */
.blog-post-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 360px;
}
.blog-post-card {
  background: var(--cream);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
  cursor: pointer;
}
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--amber);
}
.blog-card-thumb {
  background: var(--bark);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.blog-post-card:first-child .blog-card-thumb { min-height: 100%; }
.blog-thumb-emoji { font-size: 72px; opacity: .35; }
.blog-post-card:first-child .blog-thumb-emoji { font-size: 100px; }
.blog-card-accent {
  position: absolute; inset: 0; opacity: .08;
  background-image: radial-gradient(circle, var(--amber-l) 1px, transparent 1px);
  background-size: 22px 22px;
}
.blog-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}
.blog-card-body { padding: 28px; display: flex; flex-direction: column; }
.blog-post-card:first-child .blog-card-body { padding: 40px; justify-content: center; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.blog-card-date { font-size: 12px; color: var(--muted); }
.blog-card-read { font-size: 12px; color: var(--amber); font-weight: 500; }
.blog-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--bark); line-height: 1.25;
  margin-bottom: 10px;
}
.blog-post-card:first-child .blog-card-body h3 { font-size: 32px; }
.blog-card-body p {
  font-size: 13px; color: var(--muted); line-height: 1.75;
  flex: 1;
}
.blog-post-card:first-child .blog-card-body p { font-size: 15px; }
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-author { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.blog-card-author .author-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bark); color: var(--amber-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.blog-read-link { font-size: 12px; color: var(--amber); font-weight: 600; }

/* Blog modal */
.blog-modal { max-width: 700px; max-height: 88vh; }
.bm-hero {
  background: var(--bark); border-radius: var(--r);
  padding: 48px 40px; margin-bottom: 32px; position: relative; overflow: hidden;
}
.bm-hero-emoji {
  font-size: 64px; margin-bottom: 16px; display: block;
  position: relative; z-index: 1;
}
.bm-hero-bg {
  position: absolute; inset: 0; opacity: .07;
  background-image: radial-gradient(circle, var(--amber-l) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.bm-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,129,58,.2); border: 1px solid rgba(212,129,58,.3);
  color: var(--amber-l); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.bm-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: white; line-height: 1.2;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.bm-meta { font-size: 12px; color: rgba(255,255,255,.5); position: relative; z-index: 1; }
.blog-article { font-size: 15px; color: var(--text); line-height: 1.85; }
.blog-article p { margin-bottom: 16px; color: var(--muted); }
.blog-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--bark);
  margin: 32px 0 12px;
}
.blog-article h3 {
  font-size: 16px; font-weight: 600; color: var(--bark);
  margin: 20px 0 8px;
}
.blog-article ul { list-style: none; margin: 12px 0 20px; }
.blog-article ul li {
  padding: 6px 0 6px 24px; position: relative;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.blog-article ul li::before {
  content: "✦"; position: absolute; left: 0;
  color: var(--amber); font-size: 10px; top: 10px;
}
.blog-article ol { margin: 12px 0 20px 20px; }
.blog-article ol li { padding: 5px 0; font-size: 14px; color: var(--muted); line-height: 1.7; }
.blog-article .pull-quote {
  background: var(--cream); border-left: 4px solid var(--amber);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px; margin: 24px 0;
}
.blog-article .pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: var(--bark); margin: 0;
}
.blog-article .highlight-box {
  background: var(--bark); border-radius: var(--r);
  padding: 24px; margin: 24px 0;
}
.blog-article .highlight-box p { color: rgba(255,255,255,.8); margin: 0; }
.blog-article .highlight-box h3 { color: var(--amber-l); margin-top: 0; }
.blog-cta-bar {
  background: var(--sage-l); border-radius: var(--r);
  padding: 24px; margin-top: 32px; text-align: center;
}
.blog-cta-bar p { font-size: 15px; color: var(--bark); font-weight: 500; margin-bottom: 14px; }
.blog-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* "How to update" info card on the blog page */
.blog-update-guide {
  background: var(--amber-p); border: 1.5px dashed var(--amber);
  border-radius: var(--r); padding: 20px 24px; margin-bottom: 40px;
  display: flex; gap: 16px; align-items: flex-start;
}
.bug-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.bug-text h4 { font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 4px; }
.bug-text p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }
.bug-text code {
  background: rgba(61,43,31,.08); padding: 2px 6px;
  border-radius: 4px; font-size: 12px; color: var(--bark);
  font-family: monospace;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-post-card:first-child { grid-template-columns: 1fr; min-height: auto; }
  .blog-post-card:first-child .blog-card-thumb { min-height: 200px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-card:first-child { grid-column: auto; }
}

/* ── CURSOR OVERRIDE: minimal dot only (no circle) ─────────────────── */
.cursor { display: none !important; }
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .05s;
}
body.cursor-hover .cursor-dot { transform: translate(-50%,-50%) scale(2.5); background: var(--bark); }
@media (pointer: coarse) { .cursor-dot { display: none; } body { cursor: auto; } }

/* ── SCREEN READER ONLY ──────────────────────────────────────────────── */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ── FOOTER ADDRESS ──────────────────────────────────────────────────── */
.footer-address { font-style:normal; font-size:13px; color:rgba(255,255,255,.55); line-height:1.7; margin:10px 0 14px; }
.footer-address a { color:rgba(255,255,255,.55); text-decoration:none; }
.footer-address a:hover { color:var(--amber-l); }

/* ── FAQ SECTION ─────────────────────────────────────────────────────── */
.faq-section { padding: 64px 0 0; }
.faq-grid { display:flex; flex-direction:column; gap:10px; margin-top:28px; max-width:800px; }
.faq-item { background:var(--cream); border:1px solid var(--border); border-radius:var(--r); overflow:hidden; }
.faq-q {
  width:100%; text-align:left; padding:18px 20px;
  background:none; border:none; cursor:pointer;
  font-size:15px; font-weight:600; color:var(--bark);
  font-family:'Outfit',sans-serif; display:flex; justify-content:space-between; align-items:center;
  transition:background .2s;
}
.faq-q::after { content:'＋'; font-size:18px; color:var(--amber); flex-shrink:0; margin-left:12px; transition:transform .25s; }
.faq-q[aria-expanded="true"]::after { transform:rotate(45deg); }
.faq-q:hover { background:var(--amber-p); }
.faq-a { padding:0 20px; max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease; }
.faq-a:not([hidden]) { max-height:300px; padding:0 20px 18px; }
.faq-a[hidden] { display:block !important; max-height:0; padding:0 20px; }
.faq-a p { font-size:14px; color:var(--muted); line-height:1.8; margin:0; }

