/* ===== Mugerman.co.il — v3 ===== */
/* Colors: Navy #0B1F4E · Blue #1843A0 · Sky #3070C8 · Red #BF0A30 */
/* Fonts: Heebo (all) + Secular One (H1 hero only) */

:root {
  --navy:       #0B1F4E;
  --navy-dark:  #070F28;
  --blue:       #1843A0;
  --blue-dark:  #122E78;
  --sky:        #3070C8;
  --sky-light:  #EEF4FF;
  --red:        #BF0A30;
  --red-dark:   #960822;
  --red-light:  #FCEEF1;
  --white:      #FFFFFF;
  --bg-alt:     #F2F6FD;
  --bg-card:    #FFFFFF;
  --text:       #0B1F4E;
  --text-sec:   #4A5878;
  --text-muted: #8593AD;
  --border:     #D8E3F5;
  --border-hover: #A8BEE8;
  --font:       'Heebo', system-ui, -apple-system, sans-serif;
  --font-display: 'Secular One', 'Heebo', sans-serif;
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --max-w:      1200px;
  --shadow-sm:  0 1px 4px rgba(11,31,78,.08);
  --shadow-md:  0 4px 16px rgba(11,31,78,.12);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }
ul, ol { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.4rem); line-height: 1.1; font-weight: 400; }
h2 { font-family: var(--font); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 800; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }

.lead { font-size: 1.05rem; color: var(--text-sec); line-height: 1.75; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Utility ── */
.text-blue  { color: var(--blue); }
.text-red   { color: var(--red); }
.text-navy  { color: var(--navy); }
.bg-navy    { background: var(--navy); }
.bg-blue    { background: var(--blue); }
.bg-red     { background: var(--red); }
.bg-alt     { background: var(--bg-alt); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  padding: 10px 22px; border-radius: 28px; border: none;
  cursor: pointer; transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--sky-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-ghost { background: var(--sky-light); color: var(--blue); }
.btn-ghost:hover { background: var(--border); }

/* ── Section headings ── */
.sec-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.sec-tag::before { content: ''; width: 18px; height: 2.5px; background: var(--blue); border-radius: 2px; flex-shrink: 0; }
.sec-tag.red { color: var(--red); }
.sec-tag.red::before { background: var(--red); }
.sec-tag.white { color: rgba(255,255,255,.7); }
.sec-tag.white::before { background: rgba(255,255,255,.5); }

/* ── Progress bar ── */
.progress-bar { position: fixed; top: 0; right: 0; left: 0; z-index: 300; height: 3px; }
.progress-fill { height: 100%; background: var(--red); width: 0; transition: width .15s linear; }

/* ── Header / Nav ── */
.site-header {
  position: sticky; top: 3px; z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(7,15,40,.3);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 64px; gap: 0;
}
/* logo = col1 (right), nav-links = col2 (center), cta+toggle = col3+4 (left) */
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 900; font-size: 1.05rem;
  flex-shrink: 0;
}
.logo-circle {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.35);
  flex-shrink: 0; display: block;
}
.logo-circle img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.logo-texts { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: .95rem; font-weight: 900; color: var(--white); }
.logo-sub { font-size: .68rem; color: rgba(255,255,255,.5); font-weight: 500; }
.logo-amuta { font-size: .6rem; color: rgba(255,255,255,.32); font-weight: 400; letter-spacing:.02em; }
.logo-amuta-link { color: inherit; text-decoration: none; }
.logo-amuta-link:hover { color: rgba(255,255,255,.55); }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
  justify-content: center;  /* centered in middle column */
}
.nav-links a {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.72);
  padding: 6px 10px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta { display: none; } /* moved to standalone btn */
/* Standalone CTA button */
.nav-cta-btn {
  background: var(--red); color: var(--white);
  padding: 8px 18px; border-radius: 22px;
  font-size: .82rem; font-weight: 700;
  transition: background .2s; white-space: nowrap; margin-right: 12px;
}
.nav-cta-btn:hover { background: var(--red-dark); color: var(--white); }
/* ── Language switcher ── */
.nav-lang-group { display: flex; gap: 4px; align-items: center; }
.nav-lang {
  font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.65);
  padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s; letter-spacing: .04em;
}
.nav-lang:hover { color: var(--white); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.mobile-lang-row { display: flex; flex-direction: column; gap: 4px; margin: 8px 0; }
.mobile-lang-row a { font-size: .9rem; color: rgba(255,255,255,.7) !important; }


.menu-toggle {
  display: none; flex-direction: column; gap: 4px;
  width: 28px; padding: 4px; background: none; border: none; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.mobile-nav { display: none; }

/* ── Ticker ── */
.ticker {
  background: var(--blue); overflow: hidden;
  height: 34px; display: flex; align-items: center;
  direction: ltr;
}
.ticker-inner {
  display: flex; white-space: nowrap; flex-shrink: 0;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: .8rem; font-weight: 700; color: var(--white);
  padding: 0 32px; flex-shrink: 0;
  direction: rtl;
}
.ticker-sep { color: rgba(255,255,255,.55); margin-right: 8px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero ── */
.hero {
  background-size: cover; background-position: center top;
  padding: 80px 0 70px; position: relative; overflow: hidden;
  min-height: 540px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(7,15,40,.82) 0%, rgba(11,31,78,.70) 50%, rgba(24,67,160,.45) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: center;
}
.hero-text { text-align: right; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 22px; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(2.4rem,5.5vw,3.8rem); }
.hero-subtitle {
  font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: 20px; letter-spacing: .01em;
}
.hero p.lead { color: rgba(255,255,255,.72); margin-bottom: 32px; font-size: 1rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(7,15,40,.55);
  aspect-ratio: 2/3;
  border: 3px solid rgba(255,255,255,.2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--red);
  padding: 20px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.stats-grid-5 { grid-template-columns: repeat(5,1fr); }
.stats-grid-6 { grid-template-columns: repeat(6,1fr); }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--white); line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.78); margin-top: 3px; font-weight: 600; line-height: 1.4; }

/* ── Sections ── */
.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}
.cards-grid-3 { grid-template-columns: repeat(3,1fr); }
.card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.card-body { padding: 22px 20px 16px; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px; flex-shrink: 0;
}
.card-icon.blue  { background: var(--sky-light); }
.card-icon.red   { background: var(--red-light); }
.card-icon.navy  { background: #E8EDF8; }
.card-icon.gold  { background: #FEF3E2; }
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.card p  { font-size: .88rem; color: var(--text-sec); line-height: 1.6; }
.card-footer {
  border-top: 1px solid var(--bg-alt);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.card-link {
  font-size: .85rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s, gap .2s;
}
.card-link:hover { color: var(--navy); gap: 8px; }

/* ── About strip (dark) ── */
.about-strip {
  background: var(--navy);
  padding: 56px 0;
}
.about-grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; align-items: center;
}
.about-photo-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: .85rem;
}
.about-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { color: var(--white); margin-bottom: 16px; }
.about-content p  { color: rgba(255,255,255,.72); font-size: .95rem; }
.about-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tag {
  font-size: .78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
}
.tag-white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.tag-red   { background: var(--red); color: var(--white); }
.tag-blue  { background: var(--blue); color: var(--white); }

/* ── Timeline ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--blue); padding-top: 2px;
}
.tl-content h4 { color: var(--navy); margin-bottom: 4px; }
.tl-content p  { font-size: .88rem; color: var(--text-sec); margin: 0; }

/* ── Highlights / features ── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.highlight-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 20px;
}
.highlight-card h4 { color: var(--navy); margin-bottom: 6px; }
.highlight-card p  { font-size: .85rem; color: var(--text-sec); margin: 0; }

/* ── Press cards ── */
.press-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}
.press-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.press-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.press-outlet {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
}
.press-card h3 { font-size: .95rem; color: var(--navy); line-height: 1.4; }
.press-meta { font-size: .78rem; color: var(--text-muted); }
.press-link { font-size: .85rem; font-weight: 700; color: var(--red); margin-top: auto; }

/* ── Lecture / booking ── */
.lecture-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.lecture-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.lecture-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lecture-card .card-num {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--border); margin-bottom: 10px; line-height: 1;
}
.lecture-card h3 { color: var(--navy); margin-bottom: 8px; }
.lecture-card p  { font-size: .88rem; color: var(--text-sec); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  font-family: var(--font); font-size: .9rem;
  color: var(--text); background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
  direction: rtl;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(48,112,200,.12);
}
.form-textarea { resize: vertical; min-height: 110px; }

/* ── Join strip ── */
.join-strip {
  background: var(--sky-light); border-top: 3px solid var(--blue);
  padding: 56px 0; text-align: center;
}
.join-strip h2 { color: var(--navy); margin-bottom: 10px; }
.join-strip p  { color: var(--text-sec); margin-bottom: 24px; }
.email-row {
  display: flex; gap: 10px; max-width: 420px;
  margin: 0 auto 20px;
}
.email-input {
  flex: 1; padding: 11px 16px;
  font-family: var(--font); font-size: .9rem;
  border: 1.5px solid var(--border); border-radius: 28px;
  direction: rtl; color: var(--text);
  transition: border-color .2s;
}
.email-input:focus { outline: none; border-color: var(--sky); }
.social-row { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background .2s, border-color .2s, color .2s;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.social-btn svg { width: 18px; height: 18px; }

/* ── CTA strip ── */
.cta-strip {
  background: var(--navy); padding: 56px 0; text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 10px; }
.cta-strip p  { color: rgba(255,255,255,.72); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 60%, var(--sky) 100%);
  padding: 52px 0 44px;
}
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 200px;
  gap: 32px; align-items: center;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.85);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: .95rem; margin: 0; }
.page-hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: .8rem;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg-alt); padding: 10px 0;
  font-size: .8rem; color: var(--text-sec);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb span { color: var(--text-muted); }

/* ── Article content ── */
.article-content { max-width: 760px; }
.article-content h2 { color: var(--navy); margin: 32px 0 12px; }
.article-content h3 { color: var(--navy); margin: 24px 0 10px; }
.article-content p  { color: var(--text-sec); font-size: .95rem; }
.article-content ul { list-style: disc; padding-right: 20px; margin-bottom: 1em; }
.article-content ul li { color: var(--text-sec); font-size: .95rem; margin-bottom: 4px; }

/* ── Quote ── */
.pull-quote {
  border-right: 4px solid var(--blue);
  background: var(--sky-light); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px; margin: 28px 0;
}
.pull-quote blockquote {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--navy); line-height: 1.4; margin-bottom: 8px;
}
.pull-quote cite { font-size: .82rem; color: var(--text-sec); font-style: normal; }

/* ── Benefits list ── */
.benefits-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 12px;
}
.benefit-item {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.benefit-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sky-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.benefit-text h4 { font-size: .9rem; color: var(--navy); margin-bottom: 3px; }
.benefit-text p  { font-size: .82rem; color: var(--text-sec); margin: 0; }

/* ── Donation tiers ── */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tier-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--border); padding: 28px 20px;
  text-align: center; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-card.featured { border-color: var(--blue); }
.tier-card.featured .tier-badge {
  background: var(--blue); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 3px 12px;
  border-radius: 14px; display: inline-block; margin-bottom: 10px;
}
.tier-price {
  font-family: var(--font-display); font-size: 2.4rem;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.tier-price span { font-size: 1rem; color: var(--text-sec); }
.tier-card h3 { color: var(--navy); margin-bottom: 10px; font-size: .95rem; }
.tier-card p  { font-size: .85rem; color: var(--text-sec); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.channel-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 18px 16px;
  text-align: center; transition: transform .2s, box-shadow .2s;
}
.channel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.channel-icon { font-size: 22px; margin-bottom: 8px; }
.channel-card h4 { font-size: .88rem; color: var(--navy); margin-bottom: 4px; }
.channel-card p  { font-size: .78rem; color: var(--text-sec); margin: 0; }

/* ── Footer ── */
.site-footer { background: var(--navy-dark); padding: 48px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-col h4 { font-size: .82rem; font-weight: 800; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: background .2s, color .2s;
}
.footer-social-btn:hover { background: var(--blue); color: var(--white); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── AI Search block ── */
.ai-search-box {
  background: var(--sky-light); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 24px 22px; margin-bottom: 32px;
}
.ai-search-box h3 { color: var(--navy); margin-bottom: 14px; font-size: 1rem; }
.search-row { display: flex; gap: 8px; }
.search-row input {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 24px;
  font-family: var(--font); font-size: .9rem; direction: rtl;
}
.search-row input:focus { outline: none; border-color: var(--sky); }
.search-row button {
  background: var(--blue); color: var(--white); font-size: .85rem; font-weight: 700;
  padding: 10px 18px; border-radius: 24px; font-family: var(--font);
}
.search-results { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.search-result {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--border); padding: 12px 14px; display: none;
}
.search-result.visible { display: block; }
.search-result h4 { font-size: .88rem; color: var(--navy); margin-bottom: 4px; }
.search-result p  { font-size: .82rem; color: var(--text-sec); margin: 0; }


/* ══════════════════════════════════════════
   VIDEO GRID & MEDIA SECTIONS
══════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-grid-1 { grid-template-columns: 1fr; }
.video-grid-2 { grid-template-columns: repeat(2, 1fr); }

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,31,78,.06);
  transition: box-shadow .2s, transform .2s;
}
.video-card:hover { box-shadow: 0 6px 28px rgba(11,31,78,.12); transform: translateY(-2px); }

.video-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
  background: var(--navy-dark);
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.video-meta {
  padding: 16px 18px 18px;
}
.video-meta h3 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.video-meta p  { font-size: .83rem; color: var(--text-sec); margin: 0; }

/* Outlet badges */
.video-outlet {
  display: inline-block; font-size: .68rem; font-weight: 800;
  padding: 2px 10px; border-radius: 20px; margin-bottom: 8px;
  letter-spacing: .04em; text-transform: uppercase;
}
.outlet-n12  { background: #e8002d; color: #fff; }
.outlet-kan  { background: #0057a8; color: #fff; }
.outlet-14   { background: #1a1a1a; color: #fff; }
.outlet-ynet { background: #ff6600; color: #fff; }
.outlet-ru   { background: #2d6cc0; color: #fff; }
.outlet-en   { background: #0b5c2e; color: #fff; }

/* Language section header */
.lang-section-header {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 4px;
}
.lang-flag { font-size: 2.4rem; line-height: 1; }

/* Placeholder cards */
.video-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-inner {
  text-align: center; color: var(--text-muted);
}
.placeholder-icon { font-size: 2.2rem; margin-bottom: 10px; }
.video-placeholder-inner p { font-size: .88rem; margin-bottom: 8px; }
.placeholder-lang {
  display: inline-block; font-size: .7rem; font-weight: 800;
  background: var(--bg-alt); color: var(--text-muted);
  padding: 2px 10px; border-radius: 20px; letter-spacing: .08em;
}

/* Responsive video grid */
@media (max-width: 700px) {
  .video-grid, .video-grid-2 { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-photo    { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-photo-box { aspect-ratio: 16/7; max-height: 220px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .cards-grid-3  { grid-template-columns: repeat(2,1fr); }
  .highlights-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .lecture-cards { grid-template-columns: 1fr; }
  .tier-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --max-w: 100%; }
  body { font-size: 15px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: var(--navy); flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 1.2rem; font-weight: 700; color: var(--white);
    padding: 12px 32px; width: 100%; text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav .close-btn {
    position: absolute; top: 16px; left: 20px;
    font-size: 1.5rem; color: rgba(255,255,255,.6);
    background: none; border: none; cursor: pointer;
  }
  .hero    { padding: 40px 0 36px; }
  .section { padding: 40px 0; }
  .cards-grid, .cards-grid-3, .highlights-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .stats-grid-5 { grid-template-columns: repeat(3,1fr); }
  .stats-grid-6 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .email-row   { flex-direction: column; max-width: 100%; }
  .contact-channels { grid-template-columns: 1fr; }
  .tier-grid   { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { display: none; }
  .lecture-cards { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   HOMEPAGE v2 — YAF-INSPIRED LAYOUT
══════════════════════════════════════════ */

/* Hero — full height */
.hero-full {
  min-height: 88vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
  z-index: 0;
}
.hero-container { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 60px; }
.hero-text { text-align: right; }
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600;
  color: rgba(255,255,255,.88); margin-bottom: 16px; letter-spacing: .01em;
}
.hero-desc { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,.5); font-size: .72rem;
  font-weight: 600; letter-spacing: .1em; z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 1.2rem; margin-top: 4px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Section header with link */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; gap: 16px;
}
.btn-sm { font-size: .8rem; padding: 6px 16px; }

/* Featured cards grid */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.feat-col { display: flex; flex-direction: column; gap: 20px; }
.feat-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,31,78,.06);
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.feat-card:hover { box-shadow: 0 8px 32px rgba(11,31,78,.13); transform: translateY(-3px); }
.feat-card-img {
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.feat-card-large .feat-card-img { height: 240px; }
.feat-card-sm .feat-card-img   { height: 140px; }
.feat-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.feat-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.35; }
.feat-card-body p  { font-size: .83rem; color: var(--text-sec); margin: 0; flex: 1; }
.feat-link { font-size: .8rem; font-weight: 700; color: var(--blue); margin-top: auto; padding-top: 8px; display: inline-block; }
.feat-link:hover { color: var(--red); }
.feat-tag {
  display: inline-block; font-size: .65rem; font-weight: 800;
  padding: 2px 10px; border-radius: 20px; letter-spacing: .06em;
  text-transform: uppercase; width: fit-content;
}
.feat-tag-navy { background: var(--navy); color: var(--white); }
.feat-tag-red  { background: var(--red);  color: var(--white); }
.feat-tag-blue { background: var(--blue); color: var(--white); }

/* Initiatives photo grid */
.init-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.init-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(11,31,78,.05);
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.init-card:hover { box-shadow: 0 8px 28px rgba(11,31,78,.13); transform: translateY(-4px); }
.init-card-img {
  height: 160px; background-size: cover; background-position: center;
  position: relative;
}
.init-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,78,.55) 0%, transparent 60%);
}
.init-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.init-icon { font-size: 1.4rem; margin-bottom: 4px; }
.init-card-body h3 { font-size: .95rem; font-weight: 800; color: var(--navy); margin: 0; }
.init-card-body p  { font-size: .8rem; color: var(--text-sec); margin: 0; flex: 1; line-height: 1.5; }
.init-link { font-size: .78rem; font-weight: 700; color: var(--blue); margin-top: 10px; }

/* Media section */
.media-section { background: var(--navy); }
.media-section .sec-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.media-section h2 { color: var(--white); }
.media-section .section-header .btn-ghost { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.media-section .section-header .btn-ghost:hover { border-color: var(--white); color: var(--white); }
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 20px; align-items: start;
}
.media-video .video-wrap { border-radius: var(--radius); overflow: hidden; }
.media-label {
  margin-top: 10px; font-size: .83rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.media-outlets { padding: 20px; background: rgba(255,255,255,.07); border-radius: var(--radius-lg); }
.media-outlets-title { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.outlet-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.outlet-badge {
  display: inline-block; font-size: .7rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .04em;
}

/* Responsive — new homepage sections */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-col { display: contents; }
  .init-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-outlets { grid-column: 1 / -1; }
  .hero-full { min-height: 70vh; }
}
@media (max-width: 640px) {
  .init-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .media-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-full { min-height: 100svh; }
}

/* =====================================================
   CENTERED HERO (front page redesign)
   ===================================================== */
.hero-centered {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.hero-centered .hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 780px;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 2;
}

/* Darker overlay for flag photo */
.hero-overlay-dark {
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 78, 0.55) 0%,
    rgba(11, 31, 78, 0.72) 60%,
    rgba(11, 31, 78, 0.85) 100%
  );
}

/* Eyebrow tag */
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 18px;
  border-radius: 99px;
}

/* Large centered name */
.hero-name {
  font-family: 'Secular One', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}

/* Subtitle lines */
.hero-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-lines p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}
.hero-lines p:first-child {
  font-weight: 700;
  color: var(--white);
}

/* Quote bubble */
.hero-quote {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 14px 24px;
  font-size: clamp(.88rem, 1.8vw, 1rem);
  font-style: italic;
  color: #fff !important;
  line-height: 1.6;
  max-width: 560px;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-quote-mark {
  font-size: 1.4rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.45);
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 3px;
}

/* Ghost white button */
.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.7);
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Divider line */
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
  margin: 0 auto;
}

/* Action buttons row */
.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #1fba58;
  border-color: #1fba58;
  color: #fff;
  transform: translateY(-2px);
}

/* Large button variant */
.btn-lg {
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
}

/* White button override */
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Social icons row */
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero-social-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

/* Circular social icon buttons */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  line-height: 1;
}
.social-icon-btn:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px) scale(1.08);
  color: var(--white);
}
.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Responsive hero centered */
@media (max-width: 640px) {
  .hero-center { gap: 10px; padding: 72px 16px 52px; }
  .hero-name { font-size: 2.4rem; }
  .hero-lines p { font-size: .92rem; }
  .hero-quote { padding: 10px 16px; font-size: .84rem; line-height: 1.55; max-width: 100%; }
  .hero-quote-mark { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 10px; }
  .hero-actions .btn-lg { width: 100%; max-width: 300px; text-align: center; justify-content: center; font-size: .97rem; padding: 13px 20px; }
  .hero-social { gap: 10px; }
  .social-icon-btn { width: 38px; height: 38px; font-size: .95rem; }
}

/* =====================================================
   ABOUT / BIO PAGE
   ===================================================== */

/* Page banner */
.inner-page-header {
  background: var(--navy);
  padding: 56px 0 40px;
  text-align: center;
}
.inner-page-header .sec-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  margin: 0 auto 12px;
  display: inline-block;
}
.inner-page-header h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem,4vw,2.6rem);
  margin: 0 0 8px;
}
.inner-page-header p { color: rgba(255,255,255,.65); font-size: .95rem; margin: 0; }

/* Layout */
.bio-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.bio-side { min-width: 0; position: sticky; top: 88px; }
.bio-text  { min-width: 0; }

.bio-photo-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 24px rgba(11,31,78,.13);
  width: 100%;
}
.bio-photo-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.bio-card-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 2px;
}
.bio-card-sub {
  font-size: .74rem; color: var(--text-muted);
  font-weight: 600; line-height: 1.4;
}
.bio-card-divider {
  height: 1px; background: var(--border);
  margin: 12px 0;
}
.bio-card-rows { display: flex; flex-direction: column; }
.bcr {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .78rem;
}
.bcr:last-child { border-bottom: none; }
.bcr span { color: var(--text-muted); font-weight: 600; flex-shrink: 0; }
.bcr b { color: var(--navy); font-weight: 700; text-align: left; font-size: .75rem; }
.bcr-wide { flex-direction: column; gap: 2px; align-items: flex-end; }
.bcr-wide span { font-size: .72rem; }
.bcr-wide b { text-align: right; }

.bio-follow-label {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin-bottom: 8px;
}
.bio-socials { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.bio-soc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 8px;
  font-size: .8rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  transition: opacity .15s;
}
.bio-soc-btn:hover { opacity: .85; color: var(--white); }
.bio-soc-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.bio-soc-fb { background: #1877F2; }
.bio-soc-tt { background: #111; }
.bio-soc-li { background: #0A66C2; }

.bio-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: var(--white);
  border-radius: 8px; padding: 10px 14px;
  font-size: .82rem; font-weight: 800;
  text-decoration: none; width: 100%;
  transition: background .2s;
}
.bio-wa:hover { background: #1fba58; color: var(--white); }

/* Main text */
.bio-text h2 {
  font-size: clamp(1.3rem,2.5vw,1.8rem);
  color: var(--navy);
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  margin: 0 0 18px;
}
.bio-text h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy);
  margin: 28px 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.bio-text h3::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.bio-text p {
  color: var(--text-sec);
  line-height: 1.85;
  margin: 0 0 14px;
  font-size: .96rem;
}
.bio-link { color: var(--blue); font-weight: 700; text-decoration: none; }
.bio-link:hover { color: var(--red); }

/* Figures — controlled size */
.bio-figure {
  margin: 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,31,78,.1);
}
.bio-figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.bio-figure figcaption {
  font-size: .75rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 8px 14px;
  border-top: 1px solid var(--border);
}

/* Initiatives list */
.bio-initiatives { display: flex; flex-direction: column; gap: 12px; margin: 14px 0; }
.bi-item {
  display: flex; gap: 14px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.bi-icon { font-size: 1.4rem; flex-shrink: 0; }
.bi-body strong { display: block; font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.bi-body p { font-size: .84rem; color: var(--text-sec); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .bio-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-side {
    position: static;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: start;
  }
  .bio-photo-box { margin-bottom: 0; }
  .bio-photo-box img { height: 240px; }
}
@media (max-width: 560px) {
  .bio-side { grid-template-columns: 1fr; }
  .bio-photo-box img { height: 220px; }
  .bio-figure img { height: 180px; }
}

/* ── Activity article pages ── */
.activity-article p { color:var(--text-sec); line-height:1.85; font-size:1.05rem; margin-bottom:18px; }
.activity-photos { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; margin:32px 0; }
.activity-photos img { width:100%; height:260px; object-fit:cover; border-radius:var(--radius-lg); }
.activity-donate-box { background:var(--sky-light); border:2px solid var(--blue); border-radius:var(--radius-lg); padding:32px 36px; text-align:center; margin-top:16px; }
.activity-donate-box h3 { color:var(--navy); font-size:1.4rem; margin-bottom:10px; }
.activity-donate-box p  { color:var(--text-sec); margin-bottom:24px; font-size:.95rem; }

/* ── Article pages (art-*) ── */
.art-meta { margin-bottom:12px; }
.art-title { font-size:clamp(1.6rem,3.5vw,2.4rem); color:var(--navy); font-weight:900; line-height:1.3; margin:0 0 24px; }
.art-body p { color:var(--text-sec); line-height:1.9; font-size:1.05rem; margin-bottom:18px; }
.art-body p strong { color:var(--navy); }
.art-quote {
  border-right:4px solid var(--red);
  padding:18px 24px;
  margin:28px 0;
  background:var(--bg-alt);
  border-radius:0 var(--radius) var(--radius) 0;
  font-size:1.05rem;
  font-style:italic;
  color:var(--navy);
  line-height:1.7;
}
.art-quote cite { display:block; margin-top:8px; font-size:.85rem; color:var(--text-sec); font-style:normal; font-weight:700; }
.art-gallery { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:14px; margin:32px 0; }
.art-gallery img { width:100%; height:240px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:0 4px 14px rgba(11,31,78,.1); }
.art-donate { background:linear-gradient(135deg,#0B1F4E 0%,#1a3a80 100%); color:#fff; border-radius:var(--radius-lg); padding:36px 40px; text-align:center; margin-top:40px; }
.art-donate-icon { font-size:2.8rem; margin-bottom:12px; }
.art-donate h3 { font-size:clamp(1.3rem,3vw,1.9rem); font-weight:900; color:#fff; margin:0 0 14px; }
.art-donate p { color:rgba(255,255,255,.85); font-size:1rem; margin-bottom:24px; line-height:1.7; }
.art-donate-note { font-size:.8rem !important; color:rgba(255,255,255,.6) !important; margin-top:14px !important; margin-bottom:0 !important; }
@media(max-width:600px) {
  .art-donate { padding:28px 20px; }
  .art-gallery img { height:180px; }
  .art-quote { padding:14px 16px; font-size:.95rem; }
}

/* ── Mobile nav-cta-btn ── */
@media (max-width: 640px) {
  .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 8px;
  }
}
