/* ═══════════════════════════════════════════
   JAPESDA Website — Global Styles
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Nunito Sans', 'Segoe UI', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
  --ocean-deep: #081a26;
  --ocean-mid: #0f3049;
  --sea-foam: #2d8a7e;
  --mangrove: #1d6b4f;
  --sand: #f0e9db;
  --sand-light: #fafaf7;
  --coral: #e07850;
  --coral-soft: #f09878;
  --text: #1a1a18;
  --muted: #6a6a62;
  --light: #9a9a92;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--sand-light); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { font-family: var(--ff-sans); cursor:pointer; border:none; background:none; }
.ctr { max-width:1180px; margin:0 auto; padding:0 22px; }

/* ─── NAVBAR ─── */
.nav { position:fixed; top:0; left:0; right:0; z-index:100; padding:18px 0; transition:all .4s; }
.nav.scrolled { background:rgba(8,26,38,.94); backdrop-filter:blur(16px); padding:12px 0; box-shadow:0 1px 30px rgba(0,0,0,.18); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; gap:10px; cursor:pointer; }
.nav-logo-img { height:44px; width:auto; display:block; }
.footer-logo-img { height:40px; width:auto; display:block; }
.nav.scrolled .nav-logo-img { height:36px; }
.nav-logo-text { font-family:var(--ff-serif); font-size:19px; color:#fff; letter-spacing:-.3px; }
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a { color:rgba(255,255,255,.6); font-size:13.5px; font-weight:600; letter-spacing:.2px; transition:color .3s; position:relative; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1.5px; background:var(--sea-foam); transition:width .3s; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:var(--coral)!important; color:#fff!important; padding:8px 20px!important; border-radius:100px!important; font-weight:700!important; transition:all .3s!important; }
.nav-cta:hover { background:var(--coral-soft)!important; transform:translateY(-1px); }
.nav-cta::after { display:none!important; }

/* Mobile Nav */
.nav-toggle { display:none; width:30px; height:30px; flex-direction:column; justify-content:center; gap:5px; padding:3px; }
.nav-toggle span { height:2px; background:#fff; border-radius:2px; transition:all .3s; transform-origin:center; }
.nav-toggle.open span:first-child { transform:rotate(45deg) translate(2.5px,2.5px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:last-child { transform:rotate(-45deg) translate(2.5px,-2.5px); }
.mobile-menu { position:fixed; inset:0; background:rgba(8,26,38,.97); backdrop-filter:blur(20px); z-index:99; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:24px; opacity:0; visibility:hidden; transition:all .4s; }
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a { color:#fff; font-family:var(--ff-serif); font-size:26px; opacity:0; transform:translateY(16px); transition:all .4s; }
.mobile-menu.open a { opacity:1; transform:none; }
.mobile-menu.open a:nth-child(2) { transition-delay:.05s; }
.mobile-menu.open a:nth-child(3) { transition-delay:.1s; }
.mobile-menu.open a:nth-child(4) { transition-delay:.15s; }
.mobile-menu.open a:nth-child(5) { transition-delay:.2s; }
.mobile-menu.open a:nth-child(6) { transition-delay:.25s; }

/* ─── BUTTONS ─── */
.btn-primary { display:inline-flex; align-items:center; gap:8px; background:var(--coral); color:#fff; padding:13px 28px; border-radius:100px; font-size:14.5px; font-weight:700; transition:all .3s; box-shadow:0 4px 18px rgba(224,120,80,.25); cursor:pointer; }
.btn-primary:hover { background:var(--coral-soft); transform:translateY(-2px); }
.btn-primary svg { width:18px; height:18px; transition:transform .3s; }
.btn-primary:hover svg { transform:translateX(3px); }
.btn-outline { display:inline-flex; align-items:center; gap:8px; border:1.5px solid rgba(255,255,255,.25); color:#fff; padding:12px 26px; border-radius:100px; font-size:14.5px; font-weight:500; transition:all .3s; cursor:pointer; }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.06); }
.btn-dark { display:inline-flex; align-items:center; gap:6px; border:1.5px solid rgba(0,0,0,.12); color:var(--text); padding:10px 22px; border-radius:100px; font-size:13.5px; font-weight:600; transition:all .3s; cursor:pointer; }
.btn-dark:hover { border-color:var(--sea-foam); color:var(--sea-foam); }

/* ─── SECTION HELPERS ─── */
.section-tag { font-size:11.5px; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; color:var(--sea-foam); margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.section-tag::before { content:''; width:22px; height:1.5px; background:var(--sea-foam); }
.section-title { font-family:var(--ff-serif); font-size:clamp(30px,4vw,44px); line-height:1.15; margin-bottom:14px; }
.section-title.light { color:#fff; }
.section-desc { font-size:16px; color:var(--muted); line-height:1.7; max-width:560px; margin-bottom:44px; }
.section-desc.light { color:rgba(255,255,255,.45); }
.tag-pill { font-size:10.5px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:var(--coral-soft); }
.tag-pill.green { color:var(--mangrove); }

/* ─── HERO ─── */
.hero { position:relative; min-height:100vh; display:flex; align-items:end; padding:0 0 72px; overflow:hidden; background:var(--ocean-deep); }
.hero-bg { position:absolute; inset:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; opacity:.4; }
.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, var(--ocean-deep) 0%, rgba(8,26,38,.25) 45%); }
.hero-content { position:relative; z-index:2; max-width:780px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(45,138,126,.15); border:1px solid rgba(45,138,126,.3); border-radius:100px; padding:5px 14px; margin-bottom:22px; font-size:11.5px; font-weight:700; color:var(--sea-foam); letter-spacing:1.5px; text-transform:uppercase; animation:fadeUp .7s .2s both; }
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--sea-foam); animation:pulse 2s infinite; }
.hero h1 { font-family:var(--ff-serif); font-size:clamp(38px,5.5vw,68px); color:#fff; line-height:1.08; margin-bottom:22px; animation:fadeUp .7s .4s both; }
.hero h1 em { font-style:italic; color:var(--coral-soft); }
.hero-desc { font-size:17px; color:rgba(255,255,255,.6); line-height:1.7; max-width:540px; margin-bottom:36px; animation:fadeUp .7s .6s both; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; animation:fadeUp .7s .8s both; }
.hero-scroll { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,.3); font-size:10px; letter-spacing:2px; text-transform:uppercase; animation:fadeUp .7s 1.1s both; }
.scroll-line { width:1px; height:36px; background:linear-gradient(to bottom,rgba(255,255,255,.35),transparent); animation:scrollAnim 2s infinite; }

/* ─── PAGE HERO (subpages) ─── */
.page-hero { position:relative; min-height:400px; display:flex; align-items:end; padding:80px 0 52px; background:var(--ocean-deep); overflow:hidden; }
.page-hero .hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, var(--ocean-deep) 0%, rgba(8,26,38,.4) 50%); }
.page-hero .hero-content { max-width:700px; }
.page-hero h1 { font-family:var(--ff-serif); font-size:clamp(32px,5vw,52px); color:#fff; line-height:1.12; margin-bottom:14px; animation:fadeUp .7s .3s both; }
.page-hero p { font-size:17px; color:rgba(255,255,255,.5); line-height:1.7; animation:fadeUp .7s .5s both; }

/* ─── IMPACT STRIP ─── */
.impact { background:var(--ocean-deep); padding:72px 0; }
.impact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.05); border-radius:14px; overflow:hidden; }
.impact-card { background:rgba(255,255,255,.025); padding:36px 24px; text-align:center; transition:background .3s; }
.impact-card:hover { background:rgba(45,138,126,.06); }
.impact-emoji { font-size:24px; margin-bottom:12px; }
.impact-num { font-family:var(--ff-serif); font-size:38px; color:#fff; }
.impact-label { font-size:13px; color:rgba(255,255,255,.4); letter-spacing:.3px; }

/* ─── STORY CARDS ─── */
.stories-grid-2 { display:grid; grid-template-columns:1.1fr .9fr; gap:20px; margin-bottom:20px; }
.stories-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.card-lg { position:relative; border-radius:14px; overflow:hidden; display:block; }
.card-lg img { width:100%; aspect-ratio:16/10; object-fit:cover; transition:transform .6s; }
.card-lg:hover img { transform:scale(1.04); }
.card-lg-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(8,26,38,.88) 0%,transparent 50%); padding:28px; display:flex; flex-direction:column; justify-content:end; }
.card-lg-overlay h3 { font-family:var(--ff-serif); font-size:clamp(18px,2.2vw,24px); color:#fff; line-height:1.25; margin:8px 0; }
.card-lg-overlay p { font-size:13px; color:rgba(255,255,255,.5); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.card-lg .read-more { margin-top:12px; font-size:12.5px; font-weight:600; color:var(--sea-foam); transition:letter-spacing .3s; }
.card-lg:hover .read-more { letter-spacing:.5px; }

.card-sm { background:var(--sand); border-radius:12px; overflow:hidden; transition:transform .3s, box-shadow .3s; display:block; }
.card-sm:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,.07); }
.card-sm img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.card-sm-body { padding:18px; }
.card-sm-body h3 { font-family:var(--ff-serif); font-size:16px; line-height:1.3; margin:6px 0; }
.card-sm .meta { font-size:11.5px; color:var(--light); }

/* ─── ISSUE CARDS ─── */
.issues-section { padding:88px 0; background:var(--ocean-deep); position:relative; overflow:hidden; }
.issues-section::before { content:''; position:absolute; top:0; right:0; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(45,138,126,.07),transparent 70%); }
.issues-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.issue-card { background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.06); border-radius:14px; padding:32px 26px; transition:all .4s; position:relative; overflow:hidden; }
.issue-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--sea-foam); transform:scaleX(0); transition:transform .4s; transform-origin:left; }
.issue-card:hover { background:rgba(255,255,255,.055); transform:translateY(-3px); }
.issue-card:hover::before { transform:scaleX(1); }
.issue-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:20px; }
.issue-card h3 { font-family:var(--ff-serif); font-size:20px; color:#fff; margin-bottom:10px; }
.issue-card p { font-size:13px; color:rgba(255,255,255,.45); line-height:1.7; margin-bottom:20px; }
.issue-stat { display:flex; gap:20px; }
.issue-stat-item .num { font-family:var(--ff-mono); font-size:16px; font-weight:500; color:var(--sea-foam); }
.issue-stat-item .lbl { font-size:10px; color:rgba(255,255,255,.3); margin-top:1px; }

/* ─── ISSUE DETAIL CARDS ─── */
.issue-detail { display:grid; grid-template-columns:1fr 1.2fr; gap:40px; align-items:center; padding:36px; background:var(--sand); border-radius:16px; margin-bottom:36px; }
.issue-detail-img { position:relative; border-radius:12px; overflow:hidden; }
.issue-detail-img img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.issue-detail-emoji { position:absolute; top:16px; left:16px; width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.9); backdrop-filter:blur(10px); display:flex; align-items:center; justify-content:center; font-size:24px; }
.issue-detail h2 { font-family:var(--ff-serif); font-size:clamp(24px,3vw,32px); margin-bottom:14px; }
.issue-detail p { font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:20px; }
.achievement-list { list-style:none; margin-bottom:20px; }
.achievement-list li { font-size:14px; padding:5px 0 5px 20px; position:relative; line-height:1.5; }
.achievement-list li::before { content:'✓'; position:absolute; left:0; color:var(--sea-foam); font-weight:700; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:var(--sand); border-radius:14px; padding:32px; position:relative; }
.testi-card::before { content:'"'; font-family:var(--ff-serif); font-size:72px; color:var(--sea-foam); opacity:.15; position:absolute; top:10px; left:20px; line-height:1; }
.testi-card p { font-size:14px; line-height:1.75; font-style:italic; margin-bottom:22px; position:relative; z-index:1; }
.testi-author { display:flex; align-items:center; gap:10px; }
.testi-avatar { width:38px; height:38px; border-radius:50%; background:var(--ocean-mid); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--ff-serif); font-size:15px; }
.testi-name { font-size:13px; font-weight:600; }
.testi-role { font-size:11px; color:var(--light); }

/* ─── LATEST ARTICLES BAND (replaces newsletter) ─── */
.latest-band { padding:64px 0; background:var(--mangrove); position:relative; overflow:hidden; }
.latest-band::before { content:''; position:absolute; inset:0; opacity:.06; background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='white'/%3E%3C/svg%3E"); background-size:40px 40px; }
.latest-band-inner { position:relative; z-index:1; }
.latest-band h3 { font-family:var(--ff-serif); font-size:24px; color:#fff; margin-bottom:6px; }
.latest-band > .ctr > .latest-band-inner > p { font-size:14px; color:rgba(255,255,255,.55); margin-bottom:24px; }
.latest-band-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.latest-mini { display:flex; gap:14px; background:rgba(255,255,255,.08); border-radius:10px; padding:12px; transition:background .3s; cursor:pointer; text-decoration:none; }
.latest-mini:hover { background:rgba(255,255,255,.14); }
.latest-mini img { width:80px; height:60px; border-radius:6px; object-fit:cover; flex-shrink:0; }
.latest-mini-text h4 { font-size:13.5px; color:#fff; font-weight:600; line-height:1.35; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.latest-mini-text span { font-size:11px; color:rgba(255,255,255,.4); }


/* ─── ABOUT ─── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.value-card { display:flex; align-items:start; gap:12px; padding:14px; background:var(--sand); border-radius:10px; }
.value-card .v-icon { font-size:22px; flex-shrink:0; }
.value-card .v-title { font-size:14px; font-weight:600; margin-bottom:2px; }
.value-card .v-desc { font-size:12px; color:var(--muted); }

/* ─── TIMELINE ─── */
.timeline-section { padding:72px 0; background:var(--ocean-deep); }
.timeline-item { display:flex; align-items:center; gap:20px; padding:14px 0; }
.timeline-year { font-family:var(--ff-mono); font-size:14px; font-weight:500; color:var(--sea-foam); min-width:50px; }
.timeline-dot { width:10px; height:10px; border-radius:50%; background:rgba(45,138,126,.3); border:2px solid var(--sea-foam); flex-shrink:0; }
.timeline-text { font-size:14.5px; color:rgba(255,255,255,.6); line-height:1.5; }

/* ─── TEAM ─── */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.team-card { background:var(--sand); border-radius:14px; padding:28px 20px; text-align:center; transition:all .3s; }
.team-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.06); }
.team-photo { width:120px; height:120px; border-radius:50%; object-fit:cover; margin:0 auto 16px; display:block; background:var(--ocean-mid); border:3px solid #fff; box-shadow:0 4px 12px rgba(0,0,0,.08); }
.team-avatar { width:120px; height:120px; border-radius:50%; background:var(--ocean-mid); color:#fff; font-family:var(--ff-serif); font-size:36px; font-weight:600; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; border:3px solid #fff; box-shadow:0 4px 12px rgba(0,0,0,.08); }
.team-card h3 { font-family:var(--ff-serif); font-size:18px; margin-bottom:4px; line-height:1.3; }
.team-card .role { font-size:13px; color:var(--sea-foam); font-weight:600; margin-bottom:8px; }
.team-card .bio { font-size:13px; color:var(--muted); line-height:1.6; }

/* ─── SUPPORT ─── */
.support-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.support-card { background:var(--sand); border-radius:16px; padding:32px; transition:transform .3s; }
.support-card:hover { transform:translateY(-3px); }
.support-card .emoji { font-size:36px; margin-bottom:16px; }
.support-card h3 { font-family:var(--ff-serif); font-size:22px; margin-bottom:10px; }
.support-card p { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.support-check { display:flex; align-items:start; gap:8px; margin-bottom:8px; }
.support-check .tick { color:var(--sea-foam); font-size:14px; margin-top:2px; }
.support-check span { font-size:13px; line-height:1.5; }
.support-btn { width:100%; padding:13px 0; border-radius:100px; color:#fff; font-size:14px; font-weight:600; cursor:pointer; transition:opacity .3s; }
.support-btn:hover { opacity:.85; }

/* ─── ARTICLE BODY ─── */
.article-body p { font-size:16.5px; line-height:1.85; margin-bottom:20px; }
.article-body p:first-child::first-letter { font-family:var(--ff-serif); font-size:52px; float:left; line-height:.8; margin:6px 10px 0 0; color:var(--ocean-mid); font-weight:600; }
.share-box { margin-top:48px; padding:28px 32px; background:var(--sand); border-radius:14px; }
.share-box h4 { font-family:var(--ff-serif); font-size:18px; }
.share-btn { padding:8px 18px; border-radius:100px; border:1px solid rgba(0,0,0,.1); background:#fff; font-size:13px; font-weight:500; cursor:pointer; font-family:var(--ff-sans); transition:all .3s; }
.share-btn:hover { border-color:var(--sea-foam); color:var(--sea-foam); }
.back-link { display:inline-flex; align-items:center; gap:6px; font-size:13px; color:rgba(255,255,255,.5); margin-bottom:20px; transition:color .3s; }
.back-link:hover { color:#fff; }

/* ─── FILTER ─── */
.filter-row { margin-bottom:36px; display:flex; flex-direction:column; gap:12px; }
.filter-group { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.filter-label { font-size:12px; font-weight:600; color:var(--muted); letter-spacing:1px; text-transform:uppercase; margin-right:10px; }
.filter-btn { font-size:12.5px; padding:6px 14px; border-radius:100px; border:1px solid rgba(0,0,0,.1); background:transparent; color:var(--muted); cursor:pointer; transition:all .2s; font-family:var(--ff-sans); font-weight:500; }
.filter-btn.active { background:var(--ocean-mid); color:#fff; border-color:var(--ocean-mid); }
.filter-btn:hover:not(.active) { border-color:rgba(0,0,0,.25); }

/* ─── CTA SECTION ─── */
.cta-section { padding:100px 0; background:var(--ocean-deep); text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(45,138,126,.1),transparent 60%); }
.cta-content { position:relative; z-index:1; max-width:640px; margin:0 auto; }
.cta-content h2 { font-family:var(--ff-serif); font-size:clamp(30px,4.5vw,50px); color:#fff; line-height:1.15; margin-bottom:18px; }
.cta-content h2 em { color:var(--coral-soft); font-style:italic; }
.cta-content p { font-size:16px; color:rgba(255,255,255,.45); line-height:1.7; margin-bottom:36px; }

/* ─── FOOTER ─── */
.footer { background:var(--ocean-deep); border-top:1px solid rgba(255,255,255,.06); padding:56px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:36px; margin-bottom:40px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.35); line-height:1.7; margin-top:14px; max-width:280px; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.25); margin-bottom:14px; }
.footer-col a { display:block; font-size:13px; color:rgba(255,255,255,.5); padding:4px 0; transition:color .3s; }
.footer-col a:hover { color:var(--sea-foam); }
.footer-social { display:flex; gap:10px; margin-top:18px; }
.footer-social a { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:all .3s; }
.footer-social a:hover { background:var(--sea-foam); }
.footer-social svg { width:15px; height:15px; color:rgba(255,255,255,.5); }
.footer-social a:hover svg { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:20px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.footer-bottom p, .footer-bottom a { font-size:12px; color:rgba(255,255,255,.2); }
.footer-bottom a:hover { color:rgba(255,255,255,.5); }

/* ─── BACK TO TOP ─── */
.back-top { position:fixed; bottom:24px; right:24px; width:42px; height:42px; border-radius:50%; background:var(--ocean-deep); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 16px rgba(0,0,0,.2); z-index:90; opacity:0; visibility:hidden; transform:translateY(10px); transition:all .3s; cursor:pointer; }
.back-top.show { opacity:1; visibility:visible; transform:none; }
.back-top:hover { background:var(--sea-foam); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity:0; transform:translateY(36px); transition:all .7s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:none} }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform:scaleY(1);transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom} }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width:1024px) {
  .impact-grid { grid-template-columns:repeat(2,1fr); }
  .stories-grid-2, .stories-grid-3 { grid-template-columns:1fr 1fr; }
  .issues-grid { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .about-grid { grid-template-columns:1fr; }
  .issue-detail { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .support-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .stories-grid-2, .stories-grid-3, .issues-grid, .testi-grid, .team-grid { grid-template-columns:1fr; }
  .support-grid { grid-template-columns:1fr; }
  .newsletter-inner { flex-direction:column; text-align:center; }
  .nl-form { width:100%; max-width:360px; }
  .latest-band-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero { padding-bottom:60px; }
}
@media (max-width:480px) {
  .nl-form { flex-direction:column; }
  .nl-form button { width:100%; }
  .hero-actions { flex-direction:column; }
  .btn-primary, .btn-outline { width:100%; justify-content:center; }
}

/* ─── HERO SLIDESHOW ─── */
.hero-slides { position:absolute; inset:0; }
.hero-slides img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; animation:heroFade 12s infinite; }
.hero-slides img:nth-child(1) { animation-delay:0s; }
.hero-slides img:nth-child(2) { animation-delay:4s; }
.hero-slides img:nth-child(3) { animation-delay:8s; }
@keyframes heroFade { 0%{opacity:0} 5%{opacity:1} 30%{opacity:1} 36%{opacity:0} 100%{opacity:0} }
.hero-slides-2 img { animation:heroFade2 8s infinite; }
.hero-slides-2 img:nth-child(1) { animation-delay:0s; }
.hero-slides-2 img:nth-child(2) { animation-delay:4s; }
@keyframes heroFade2 { 0%{opacity:0} 8%{opacity:1} 45%{opacity:1} 55%{opacity:0} 100%{opacity:0} }

/* ─── COMMENT SECTION ─── */
.comment-section { margin-top:56px; }
.comment-section h3 { font-family:var(--ff-serif); font-size:22px; margin-bottom:8px; }
.comment-stats { display:flex; gap:20px; margin-bottom:24px; font-size:13px; color:var(--muted); }
.comment-stats span { display:flex; align-items:center; gap:6px; }
.comment-form { background:var(--sand); border-radius:14px; padding:24px; margin-bottom:24px; }
.comment-form input, .comment-form textarea { width:100%; padding:11px 14px; border-radius:8px; border:1px solid rgba(0,0,0,.1); background:#fff; font-size:14px; font-family:var(--ff-sans); outline:none; transition:border-color .3s; margin-bottom:10px; }
.comment-form input:focus, .comment-form textarea:focus { border-color:var(--sea-foam); }
.comment-form textarea { min-height:80px; resize:vertical; }
.comment-form button { padding:10px 24px; border-radius:100px; background:var(--sea-foam); color:#fff; font-size:13px; font-weight:600; cursor:pointer; border:none; font-family:var(--ff-sans); transition:all .3s; }
.comment-form button:hover { background:#24756b; }
.comment-list { display:flex; flex-direction:column; gap:16px; }
.comment-item { background:var(--sand); border-radius:12px; padding:18px 20px; }
.comment-item-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.comment-item-name { font-size:14px; font-weight:600; color:var(--text); }
.comment-item-date { font-size:11px; color:var(--light); }
.comment-item-text { font-size:14px; color:var(--muted); line-height:1.65; }
.comment-empty { text-align:center; padding:32px; color:var(--light); font-size:14px; }

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle { background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.2); padding:5px 12px; border-radius:100px; font-size:12px; font-weight:700; letter-spacing:.5px; cursor:pointer; font-family:var(--ff-sans); transition:all .3s; margin-left:8px; }
.lang-toggle:hover { background:rgba(255,255,255,.22); border-color:rgba(255,255,255,.4); }



/* Hide Google Translate default UI (we use our own button) */
.goog-te-banner-frame, .skiptranslate { display:none !important; }
body { top:0 !important; }
.goog-te-gadget { font-size:0 !important; color:transparent !important; }
.goog-te-gadget .goog-te-combo { font-size:13px !important; color:#1a1a18 !important; padding:4px 8px; border:1px solid rgba(0,0,0,.15); border-radius:6px; background:#fff; }
#google_translate_element { position:absolute; top:60px; right:20px; background:#fff; padding:6px; border-radius:8px; box-shadow:0 4px 20px rgba(0,0,0,.15); z-index:200; display:none; }
#google_translate_element.show { display:block; }
font[style*="background"] { background:transparent !important; box-shadow:none !important; }
.goog-tooltip, .goog-tooltip:hover { display:none !important; }
.goog-text-highlight { background:transparent !important; box-shadow:none !important; }
