/* ============================================================
   IMAM en Español — Main Stylesheet
   Brand: Blue #1a51a8 · Gold #d1c24b
   Feel: Warm, community-oriented, faith-forward
   ============================================================ */

/* === CUSTOM PROPERTIES ===================================== */
:root {
  /* Brand */
  --blue:         #1a51a8;
  --blue-dark:    #0e3a80;
  --blue-deeper:  #0a2d62;
  --blue-light:   #2563c4;
  --gold:         #d1c24b;
  --gold-dark:    #b8aa3a;
  --gold-dim:     rgba(209, 194, 75, 0.18);
  --gold-border:  rgba(209, 194, 75, 0.55);

  /* Backgrounds — warm off-whites instead of cold grays */
  --bg:           #faf8f3;
  --bg-warm:      #f0ede4;
  --white:        #ffffff;

  /* Text */
  --text:         #1a1a2e;
  --text-muted:   #5a6278;

  /* Borders */
  --border:       rgba(26, 81, 168, 0.10);
  --card-radius:  14px;
  --card-border:  0.5px solid rgba(26, 81, 168, 0.10);

  /* Shadows — warm, blue-tinted */
  --shadow-sm:    0 2px 10px rgba(26, 81, 168, 0.08);
  --shadow-md:    0 6px 28px rgba(26, 81, 168, 0.12);
  --shadow-lg:    0 14px 52px rgba(26, 81, 168, 0.18);
  --shadow-gold:  0 4px 18px rgba(209, 194, 75, 0.22);

  /* Gradients */
  --grad-blue:    linear-gradient(150deg, #1e5ab5 0%, #0e3a80 60%, #0a2d62 100%);
  --grad-hero:    linear-gradient(150deg, #0a2d62 0%, #1a51a8 55%, #1e5ab5 100%);
  --grad-section: linear-gradient(160deg, #0e3a80 0%, #1a51a8 100%);
}

/* === RESET & BASE ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Warm serif for display headings */
h1, h2, h3 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* === LAYOUT HELPERS ======================================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === SECTION HEADING ======================================= */
.section-heading {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--blue);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

/* === TOP / BOTTOM BARS ===================================== */
.top-bar, .bottom-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

/* === PILLS ================================================= */
.pill {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.pill--white        { background: var(--white); color: var(--blue); }
.pill--gold-outline { border: 1px solid var(--gold-border); color: var(--gold); }
.pill--blue-outline { border: 1px solid rgba(26,81,168,0.3); color: var(--blue); }

/* === BUTTONS =============================================== */
.btn-cta {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.18s, box-shadow 0.18s, transform 0.15s;
}
.btn-cta:hover { opacity: 0.92; box-shadow: 0 6px 22px rgba(209,194,75,0.35); transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 11px 28px;
  border-radius: 6px;
  margin-top: 4px;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.18s, transform 0.15s;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-link:hover { color: var(--blue-dark); border-color: var(--gold); }
.reports-section .btn-link { color: var(--gold); border-bottom-color: rgba(209,194,75,0.4); }
.reports-section .btn-link:hover { color: #e8d85a; border-bottom-color: var(--gold); }

/* === META ================================================== */
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.meta__sep { opacity: 0.4; }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.site-header {
  background: var(--grad-blue);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 3px 20px rgba(10, 45, 98, 0.35);
  border-bottom: 2px solid rgba(209, 194, 75, 0.3);
}

.nav-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 57px; width: auto; }
.nav-logo__divider {
  color: rgba(209, 194, 75, 0.45);
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 4px;
  line-height: 1;
}

.nav-logo__tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn-cta { margin-left: 28px; }

.header-instagram {
  margin-left: 20px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.header-instagram:hover { color: var(--gold); }
.header-instagram svg { width: 20px; height: 20px; }

.header-date {
  margin-left: 16px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  margin-left: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-nav {
  display: none;
  background: var(--blue-deeper);
  border-top: 1px solid rgba(209,194,75,0.2);
}
.mobile-nav ul { padding: 12px 0 20px; }
.mobile-nav li a {
  display: block;
  padding: 12px 32px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mobile-nav li a:hover { background: rgba(255,255,255,0.06); border-left-color: var(--gold); color: var(--gold); }
.mobile-cta {
  display: inline-block !important;
  margin: 8px 32px 0;
  background: var(--gold);
  color: var(--blue-dark) !important;
  border-radius: 6px;
  padding: 10px 22px !important;
  font-weight: 700;
  border-left: none !important;
}

.nav-toggle-input:checked ~ .mobile-nav { display: block; }
.nav-toggle-input:checked ~ .nav-container .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-container .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-container .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   ARTÍCULOS SECTION  — featured article + recent sidebar
   ========================================================== */
.hero-section {
  background: var(--bg);
  padding: 56px 0 64px;
  position: relative;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border-top: 4px solid var(--gold);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-card:hover { transform: translateY(-2px); box-shadow: 0 18px 56px rgba(26,81,168,0.22); }

.hero-card__img-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.hero-card:hover .hero-card__img { transform: scale(1.03); }

.hero-card__content {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-card__excerpt {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
  flex: 1;
}

.hero-card__content .meta  { margin-bottom: 12px; }
.hero-card__content .btn-gold { margin-top: auto; align-self: flex-start; }

/* Recent sidebar */
.hero-recent {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}

.recent-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.recent-list { display: flex; flex-direction: column; flex: 1; }

.recent-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.recent-item:first-child { padding-top: 0; }
.recent-item:last-child  { border-bottom: none; padding-bottom: 0; }

.recent-item__thumb-wrap { display: block; width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; }
.recent-item__thumb      { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s; }
.recent-item__thumb-wrap:hover .recent-item__thumb { transform: scale(1.05); }

.recent-item__title { font-size: 0.875rem; font-weight: 500; color: var(--text); line-height: 1.5; transition: color 0.15s; }
.recent-item__title:hover { color: var(--blue); }
.recent-item__date  { font-size: 0.74rem; color: var(--text-muted); }

.recent-see-all {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  border-top: 1px solid var(--border);
  transition: opacity 0.15s;
}
.recent-see-all:hover { opacity: 0.75; }

/* ==========================================================
   QUIÉNES SOMOS  — primary hero (top of page)
   ========================================================== */
.who-we-are {
  background: linear-gradient(150deg, #faf7ee 0%, #ffffff 45%, #f7f2e6 100%);
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

/* Subtle Islamic diamond-lattice pattern */
.who-we-are::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(209,194,75,0.08) 0, rgba(209,194,75,0.08) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(209,194,75,0.08) 0, rgba(209,194,75,0.08) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Large ghost-circle arc — right side */
.who-we-are::after {
  content: '';
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 52px solid rgba(209,194,75,0.09);
  pointer-events: none;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 820px;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
}

/* Liaison block — 3-column homepage layout */
.liaison-block {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  align-items: center;
}


.liaison-block__title-col {
  position: relative;
}

/* Gold ornamental bar above title — hide on left-side image layout */
.liaison-block__title-col::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-bottom: 20px;
}

.liaison-block__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.25;
  margin: 0;
}

.liaison-block__figure {
  text-align: center;
  margin: 0;
}

.liaison-block__img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.liaison-block__figure figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.liaison-block__text-col { }

.liaison-block__desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 24px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

@media (max-width: 860px) {
  .liaison-block {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .liaison-block__title-col::before { margin: 0 auto 20px; }
  .liaison-block__desc { text-align: left; }
  .liaison-block__title { font-size: 1.5rem; }
}

/* ==========================================================
   NOTICIAS / REPORTS
   ========================================================== */
.reports-section {
  background: linear-gradient(150deg, #0a2d62 0%, #1a51a8 60%, #1e5ab5 100%);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
/* Warm glow accent */
.reports-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(209,194,75,0.07) 0%, transparent 60%);
  pointer-events: none;
}
/* Gold top border */
.reports-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
/* Section heading override for dark bg */
.reports-section .section-heading {
  color: var(--white);
  border-bottom-color: rgba(209,194,75,0.6);
}

.reports-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }

.report-featured {
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  border-top: 4px solid var(--blue);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.report-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.report-featured__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.report-featured__excerpt { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }

.report-stack { display: flex; flex-direction: column; gap: 16px; }

.report-small {
  background: var(--white);
  border-radius: var(--card-radius);
  border-left: 4px solid var(--gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.15s;
}
.report-small:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.25); transform: translateY(-2px); }

.report-small__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  flex-shrink: 0;
}
.report-small__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.report-small:hover .report-small__img { transform: scale(1.04); }

.report-small__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-small__title { font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.5; }

/* ==========================================================
   FOCUS / LIBROS PREVIEW
   ========================================================== */
.focus-section {
  background: linear-gradient(160deg, #f5efe0 0%, #faf5e8 50%, #ede7d5 100%);
  padding: 76px 0;
  position: relative;
}
.focus-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

/* Home books preview grid */
.home-books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-book-card {
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-book-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.home-book-card__cover-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg);
}
.home-book-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.home-book-card:hover .home-book-card__cover { transform: scale(1.03); }
.home-book-card__cover-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--blue) 0%, #0d2f70 100%);
  opacity: 0.15;
}
.home-book-card__body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.home-book-card__title { font-family: 'Lora', Georgia, serif; font-size: 1rem; font-weight: 600; color: var(--blue); line-height: 1.35; margin: 0; }
.home-book-card__author { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.home-book-card__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-top: 4px; }

.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.focus-card {
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  border-top: 4px solid var(--gold);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.focus-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.focus-card h4 { font-family: 'Lora', Georgia, serif; font-size: 1rem; font-weight: 600; color: var(--blue); margin-bottom: 10px; }
.focus-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ==========================================================
   MISSION BANNER
   ========================================================== */
.mission-banner {
  background: var(--grad-section);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(209,194,75,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.mission-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.45;
}

.mission-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 52px;
  align-items: center;
  position: relative;
}

.mission-logo img { width: 130px; height: auto; }

.mission-text h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}
.mission-text p { font-size: 0.97rem; color: rgba(255,255,255,0.78); line-height: 1.8; max-width: 600px; }

.ecosoc-badge { flex-shrink: 0; }
.ecosoc-badge__inner {
  border: 1.5px solid rgba(209,194,75,0.5);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  background: rgba(255,255,255,0.05);
}
.ecosoc-badge__label  { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.ecosoc-badge__status { display: block; font-size: 0.85rem; font-weight: 500; color: var(--white); line-height: 1.45; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--grad-blue);
  padding: 56px 0 44px;
  border-top: 3px solid rgba(209,194,75,0.3);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.footer-brand img    { height: 36px; width: auto; margin: 0 auto; }
.footer-brand__sub   { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 7px; letter-spacing: 0.05em; }
.footer-nav          { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px; }
.footer-nav a        { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.68); transition: color 0.15s; }
.footer-nav a:hover  { color: var(--gold); }
.footer-copy         { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

.footer-social {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}
.footer-social__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.60);
  font-size: 0.85rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-social__link:hover { color: var(--gold); }
.footer-social__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================
   BACK LINK
   ========================================================== */
.back-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--blue-dark); }

/* ==========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  .nav-links { gap: 22px; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .home-books-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   RESPONSIVE — MEDIUM (≤ 860px)
   ========================================================== */
@media (max-width: 860px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .btn-cta     { display: none; }
  .header-date { display: none; }
  .header-instagram { display: none; }

  .hero-container { grid-template-columns: 1fr; }
  .hero-card__title { font-size: 1.4rem; }

  .reports-grid { grid-template-columns: 1fr; }
  .report-stack { flex-direction: row; flex-wrap: wrap; }
  .report-small { flex: 1 1 220px; }

  .mission-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .mission-logo  { display: flex; justify-content: center; }
  .ecosoc-badge  { display: flex; justify-content: center; }
  .mission-text p { max-width: 100%; }

  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ========================================================== */
@media (max-width: 600px) {
  .container     { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero-container { padding: 0 20px; }
  .mission-inner  { padding: 0 20px; }
  .footer-inner   { padding: 0 20px; }

  .hero-section   { padding: 36px 0 44px; }
  .hero-card__content { padding: 24px 22px 28px; }
  .hero-card__title   { font-size: 1.25rem; }

  .who-we-are, .reports-section, .focus-section { padding: 52px 0; }
  .mission-banner { padding: 56px 0; }

  .focus-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-books-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-heading { font-size: 1.35rem; }
  .mission-text h2 { font-size: 1.25rem; }
}
