/* ESAAMLG Annual Meeting 2026 site styles
   Palette derived from ESAAMLG Brand ID (Dec 2025):
   Black 7C, Pantone 382C (lime), Pantone 185C (red), Pantone 2925C (blue) */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --c-black: #131313;
  --c-green: #B3E814;
  --c-red: #C9001D;
  --c-blue: #18A1ED;
  --c-white: #ffffff;
  --c-offwhite: #F6F7F4;
  --c-grey: #5B5F58;
  --font-display: 'Optima', 'Lato', 'Segoe UI', sans-serif;
  --font-body: 'Lato', 'Segoe UI', Arial, sans-serif;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--c-black);
  color: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-white);
}

.brand img { height: 40px; width: auto; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 15px;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: #c9c9c9;
  letter-spacing: 0.08em;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background .15s ease;
  letter-spacing: 0.02em;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--c-green);
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(120deg, rgba(19,19,19,0.92), rgba(19,19,19,0.75)),
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-black) 45%, var(--c-red) 100%);
  color: var(--c-white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: var(--c-green);
  opacity: 0.12;
  border-radius: 50%;
}

/* Homepage hero: continuous ambient animation (blob drift + light sweep) */
.hero-animated::after {
  animation: heroBlobFloat 9s ease-in-out infinite alternate;
}

.hero-animated::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 220px;
  height: 220%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.07) 45%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.07) 55%, transparent 100%);
  transform: rotate(10deg);
  animation: heroShimmerSweep 7s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-animated .wrap { position: relative; z-index: 1; }

@keyframes heroBlobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-22px, 16px) scale(1.15); }
}

@keyframes heroShimmerSweep {
  0%   { left: -35%; }
  100% { left: 115%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animated::before,
  .hero-animated::after { animation: none; }
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  border: 1px solid var(--c-green);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 780px;
}

.hero p.lead {
  font-size: 18px;
  color: #E6E6E6;
  max-width: 620px;
  margin: 0 0 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 36px;
}

.hero-meta div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-meta strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-green);
}

.hero-meta span { font-size: 15px; color: var(--c-white); }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background: var(--c-green);
  color: var(--c-black);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(179,232,20,0.3); }

.btn-outline {
  border: 1.5px solid var(--c-white);
  color: var(--c-white);
  margin-left: 12px;
}

.btn-outline:hover { background: var(--c-white); color: var(--c-black); }

/* ---------- Countdown ---------- */
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-countdown {
  justify-content: flex-start;
  margin: 8px 0 34px;
}

.countdown-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  min-width: 100px;
  padding: 18px 10px;
  text-align: center;
}

.countdown-box span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
}

.countdown-box small {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: #cfcfcf;
}

.countdown-note {
  text-align: left;
  color: var(--c-green);
  font-size: 14px;
  margin: 12px 0 0;
  min-height: 18px;
}

/* ---------- Sections ---------- */
section { padding: 70px 0; }

.section-alt { background: var(--c-offwhite); }

.section-head { max-width: 680px; margin-bottom: 44px; }

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 14px;
}

.section-head p { color: var(--c-grey); font-size: 16px; margin: 0; }

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 6px;
  padding: 28px;
  border-left: 4px solid var(--c-blue);
}

.card:nth-child(3n+2) { border-left-color: var(--c-red); }
.card:nth-child(3n+3) { border-left-color: var(--c-green); }

.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 10px;
}

.card p { color: var(--c-grey); font-size: 15px; margin: 0; }

/* Meeting structure: bold colour panels */
.structure-grid { gap: 24px; }

.structure-box {
  position: relative;
  border-radius: 12px;
  padding: 38px 32px;
  color: var(--c-white);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.structure-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(19,19,19,0.25);
}

.structure-box::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
}

.structure-box.bg-blue { background: linear-gradient(145deg, #2bb2ff, #0f6fa8); }
.structure-box.bg-red { background: linear-gradient(145deg, #e2093a, #7a0012); }
.structure-box.bg-black { background: linear-gradient(145deg, #2b2b2b, #0a0a0a); }
.structure-box.bg-green { background: linear-gradient(145deg, var(--c-green), #7fa10f); }

.structure-box.bg-green h3,
.structure-box.bg-green p { color: var(--c-black); }

.structure-box.bg-green p { color: rgba(19,19,19,0.72); }

.structure-box.bg-green::after { background: rgba(19,19,19,0.08); }

.structure-box h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--c-white);
}

.structure-box p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  margin: 0;
}

/* Governance / meeting structure cards */
.gov-card h3 { font-size: 17.5px; }
.gov-card p { font-size: 14.5px; }

.gov-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--c-blue);
  color: var(--c-white);
}

.gov-card:nth-child(3n+2) .gov-icon { background: var(--c-red); }
.gov-card:nth-child(3n+3) .gov-icon { background: var(--c-green); }

.gov-icon svg { width: 22px; height: 22px; fill: currentColor; }

.gov-icon.flag-icon {
  background: transparent;
}
.gov-icon.flag-icon svg {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(19,19,19,0.12);
}

/* Overview + AML/CFT pair */
.overview-pair { align-items: stretch; gap: 36px; margin-bottom: 48px; }

.amlcft-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--c-white);
}

.amlcft-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(10,14,24,0.25), rgba(10,14,24,0.92));
}

.amlcft-box .amlcft-tag,
.amlcft-box h3 { position: relative; z-index: 2; }

.amlcft-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-green);
  margin-bottom: 10px;
}

.amlcft-box h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.35;
  margin: 0;
  max-width: 380px;
}

.card-with-img { padding: 0; overflow: hidden; }

.card-with-img .card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.card-with-img .card-body { padding: 22px 26px 26px; }
.card-with-img h3 { margin-top: 0; }

.card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

/* Timeline */
.timeline { border-left: 3px solid var(--c-green); padding-left: 28px; margin-left: 6px; }

.timeline-item { position: relative; padding-bottom: 34px; }

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-black);
  border: 3px solid var(--c-green);
}

.timeline-item .phase-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-red);
  margin-bottom: 4px;
}

.timeline-item h3 { font-family: var(--font-display); margin: 0 0 6px; font-size: 18px; }
.timeline-item p { margin: 0; color: var(--c-grey); font-size: 15px; }

/* Stats strip */
.stats-strip {
  background:
    linear-gradient(120deg, rgba(19,19,19,0.94), rgba(19,19,19,0.85)),
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-black) 55%, var(--c-red) 100%);
  padding: 64px 0;
}

.stats-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stats-grid ~ .stats-grid { margin-top: 18px; }

.stats-links-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 16px;
}

.stats-links-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-green);
}

.stats-links-view {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: none;
  transition: color .15s ease, letter-spacing .15s ease;
}

.stats-links-view:hover { color: var(--c-green); letter-spacing: 0.02em; }

.stats-links-view-dark { color: var(--c-black); }
.stats-links-view-dark:hover { color: var(--c-red); }

/* Key Meetings tiles: deliberately distinct from the dark stats-grid boxes below */
.meeting-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-white);
  border: 1.5px solid var(--c-blue);
  border-radius: 6px;
  padding: 22px 20px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.meeting-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(19,19,19,0.1);
}

.meeting-tile:nth-child(2) { border-color: var(--c-red); }
.meeting-tile:nth-child(3) { border-color: var(--c-green); }

.meeting-tile .meeting-num {
  flex: none;
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-white);
  background: var(--c-blue);
}

.meeting-tile .meeting-num sup {
  font-size: 0.62em;
  margin-left: 1px;
}

.meeting-tile:nth-child(2) .meeting-num { background: var(--c-red); }
.meeting-tile:nth-child(3) .meeting-num { background: var(--c-green); }

.meeting-tile .meeting-text { flex: 1; }

.meeting-tile strong {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.3;
}

.meeting-tile .meeting-icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--c-blue);
  transition: transform .15s ease;
}

.meeting-tile:nth-child(2) .meeting-icon { color: var(--c-red); }
.meeting-tile:nth-child(3) .meeting-icon { color: var(--c-green); }

.meeting-tile .meeting-icon svg { width: 100%; height: 100%; fill: currentColor; }

.meeting-tile:hover .meeting-icon { transform: translateX(3px) scale(1.08); }

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 12px;
  border-radius: 4px;
  min-height: 150px;
}

.stat-fill { background: var(--c-blue); }

.stat-outline {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--c-white);
}

.stat-outline-dark {
  background: var(--c-black);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

/* Info strip */
.info-strip {
  background: var(--c-black);
  color: var(--c-white);
}

.info-strip .grid-4 > div {
  padding: 26px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.info-strip .grid-4 > div:last-child { border-right: none; }

.info-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.info-strip span { font-size: 14px; color: #D8D8D8; }

/* Table */
table.simple { width: 100%; border-collapse: collapse; font-size: 15px; }

table.simple th, table.simple td {
  text-align: left;
  padding: 12px 14px;
}

table.simple th {
  font-family: var(--font-display);
  background: var(--c-offwhite);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-black);
}

table.simple tbody tr:nth-child(even) { background: var(--c-offwhite); }

/* Contact */
.contact-card {
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 6px;
  padding: 22px 20px;
}

.contact-card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  font-size: 18px;
  color: var(--c-blue);
}

.contact-card p { margin: 4px 0; font-size: 15px; }

.contact-card a.email { color: var(--c-red); font-weight: 700; text-decoration: none; }

/* Discover Rwanda (host-country brand section) */
.rwanda-discover {
  position: relative;
  padding: 110px 0 70px;
  color: var(--c-white);
  overflow: hidden;
  background: var(--c-black);
}

.rwanda-bg-slides { position: absolute; inset: 0; z-index: 0; }

.rwanda-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  opacity: 0;
  filter: saturate(1.25) contrast(1.08) brightness(1.04);
  transform: scale(1.03);
  transition: opacity 1.8s ease-in-out;
}

.rwanda-bg-slide.active { opacity: 1; }

.rwanda-discover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,20,0.18) 0%, rgba(8,12,20,0.42) 45%, rgba(8,12,20,0.93) 100%);
}

.rwanda-discover .wrap { position: relative; z-index: 2; }
.rwanda-discover .section-tag {
  color: var(--c-green);
  background: rgba(10,14,20,0.55);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
}

.rwanda-discover h2 {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 640px;
  margin: 10px 0 14px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.rwanda-discover p.lead2 {
  color: #f0f0f0;
  max-width: 600px;
  font-size: 16px;
  margin: 0 0 34px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.rwanda-facts-panel {
  background: rgba(10,14,20,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 28px 30px 8px;
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}

.rwanda-facts { grid-template-columns: repeat(6, 1fr); gap: 18px; margin-bottom: 20px; }

.rwanda-fact .ficon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--c-green);
}
.rwanda-fact .ficon svg { width: 20px; height: 20px; fill: currentColor; }
.rwanda-fact .ficon.flag-icon { background: transparent; padding: 0; }
.rwanda-fact .ficon.flag-icon svg { width: 34px; height: 34px; border-radius: 6px; box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }

.rwanda-fact .fact-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #b9c2c9;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.rwanda-fact .fact-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.35;
}

/* Member jurisdictions flag strip */
.flag-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.flag-tile {
  position: relative;
  width: 100%;
}

.flag-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.flag-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flag-tile:hover .flag-img-wrap {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 12px 22px rgba(19,19,19,0.28);
}

.flag-name {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 6px);
  margin-bottom: 10px;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}

.flag-name::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--c-black);
}

.flag-tile:hover .flag-name { opacity: 1; transform: translate(-50%, 0); }

.member-flags-topic {
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 22px;
}

.member-flags-topic h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 0 8px;
  color: var(--c-black);
}

.member-flags-topic p {
  color: var(--c-grey);
  font-size: 15px;
  margin: 0;
}

/* Who We Are: split layout with bold highlight panel */
.who-grid { align-items: center; gap: 44px; margin-bottom: 50px; }

.who-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.who-map-img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 26px rgba(19,19,19,0.16));
}

.who-map-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  max-width: 320px;
}

.who-map-caption-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-green);
  line-height: 1;
}

/* Member flags grouped as a panel, not a hard section break */
.flag-panel {
  background: var(--c-offwhite);
  border-radius: 16px;
  padding: 40px 36px 36px;
}

/* In Attendance: horizontal icon tiles, distinct from the standard .card */
.attend-grid { gap: 20px; }

.attend-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 10px;
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.attend-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(19,19,19,0.1);
  border-color: var(--c-blue);
}

.attend-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue);
  color: var(--c-white);
}

.attend-tile:nth-child(3n+2) .attend-icon { background: var(--c-red); }
.attend-tile:nth-child(3n+3) .attend-icon { background: var(--c-green); color: var(--c-black); }

.attend-icon svg { width: 22px; height: 22px; fill: currentColor; }

.attend-icon.flag-icon { background: transparent; }
.attend-icon.flag-icon svg {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(19,19,19,0.12);
}

.attend-text h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin: 0 0 6px;
  color: var(--c-black);
}

.attend-text p { margin: 0; color: var(--c-grey); font-size: 14px; }

/* Travel guide: weather forecast-style strip */
.weather-strip { gap: 20px; }

.weather-tile {
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
}

.weather-tile .weather-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--c-red);
}

.weather-tile:nth-child(2) .weather-icon { color: #8A8A8A; }
.weather-tile:nth-child(3) .weather-icon { color: var(--c-blue); }
.weather-tile:nth-child(4) .weather-icon { color: #D4AF37; }

.weather-icon svg { width: 100%; height: 100%; }

.weather-tile .weather-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-grey);
  font-weight: 700;
  margin-bottom: 8px;
}

.weather-tile .weather-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--c-black);
  margin-bottom: 8px;
}

.weather-tile .weather-desc { font-size: 13px; color: var(--c-grey); margin: 0; }

/* Travel guide: plug illustrations */
.plug-grid { gap: 20px; }

.plug-card {
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
}

.plug-card svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  color: var(--c-blue);
  display: block;
}

.plug-card:nth-child(2) svg { color: var(--c-red); }

.plug-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--c-black);
}

.plug-card p { font-size: 13px; color: var(--c-grey); margin: 0; }

/* Tourism / generic hero photo slideshow */
.hero-slideshow { position: relative; overflow: hidden; }

.hero-slides { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(19,19,19,0.85), rgba(19,19,19,0.55));
}

.hero-slideshow .wrap { position: relative; z-index: 2; }

/* Simple photo strip (no card chrome) for galleries and respectful photo sets */
.photo-strip-item { margin: 0; }

.photo-strip-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 8px;
  display: block;
  transition: transform .3s ease;
}

.photo-strip-item:hover img { transform: scale(1.03); }

.photo-strip-item figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--c-grey);
  text-align: center;
}

.gallery-strip .photo-strip-item img { height: 160px; }

/* Tourism: in-Kigali experience tiles */
.exp-grid { gap: 20px; }

.exp-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-white);
  border: 1px solid #E4E4E0;
  border-radius: 10px;
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.exp-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(19,19,19,0.1);
  border-color: var(--c-blue);
}

.exp-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue);
  color: var(--c-white);
}

.exp-tile:nth-child(3n+2) .exp-icon { background: var(--c-red); }
.exp-tile:nth-child(3n+3) .exp-icon { background: var(--c-green); color: var(--c-black); }

.exp-icon svg { width: 22px; height: 22px; fill: currentColor; }

.exp-text h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin: 0 0 6px;
  color: var(--c-black);
}

.exp-text p { margin: 0; color: var(--c-grey); font-size: 14px; }

/* Venue: accommodation image banner */
.accom-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center 65%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 40px;
  color: var(--c-white);
}

.accom-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,0.15) 0%, rgba(10,14,20,0.55) 55%, rgba(10,14,20,0.92) 100%);
}

.accom-banner > * { position: relative; z-index: 1; }

.accom-banner .section-tag { color: var(--c-green); margin-bottom: 8px; }

.accom-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 0 0 12px;
  color: var(--c-white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.accom-banner p {
  color: #eaeaea;
  max-width: 600px;
  margin: 0 0 22px;
  font-size: 15.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Footer */
footer.site-footer {
  background: var(--c-black);
  color: #cfcfcf;
  padding: 54px 0 24px;
  font-size: 14px;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 30px;
}

.footer-col h4 {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.footer-about p { color: #cfcfcf; max-width: 320px; font-size: 13.5px; line-height: 1.6; }

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: #cfcfcf; text-decoration: none; font-size: 14px; }
.footer-col ul a:hover { color: var(--c-green); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.footer-social a:hover { background: var(--c-green); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; transition: fill .15s ease; }
.footer-social a:hover svg { fill: var(--c-black); }

.footer-contact { color: #cfcfcf; font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }
.footer-contact a { color: var(--c-green); text-decoration: none; }

.footer-bottom {
  margin-top: 12px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #8a8a8a;
}

footer.site-footer .foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
footer.site-footer .foot-logo img { height: 28px; }

/* Responsive */
@media (max-width: 860px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rwanda-facts { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .flag-grid { grid-template-columns: repeat(6, 1fr); }
  .flag-panel { padding: 30px 22px 26px; }
  .who-highlight { padding: 32px 26px; }
  nav.main-nav ul { gap: 2px; }
  nav.main-nav a { font-size: 13px; padding: 8px 10px; }
  .info-strip .grid-4 > div { border-right: none; padding: 14px 0; }
  .hero { padding: 60px 0 50px; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .rwanda-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .flag-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 620px) {
  .site-header .wrap { height: auto; flex-direction: column; padding: 14px 24px; gap: 12px; }
  nav.main-nav ul { flex-wrap: wrap; justify-content: center; }
  .btn-outline { margin-left: 0; margin-top: 10px; display: inline-block; }
}
