/* ============================================
   Sections-specific styles for V3 Mauritanie Bold
   ============================================ */

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, padding 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mark {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-mark svg { width: 24px; height: 24px; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-text strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-brand-text span {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 110px var(--container-pad) 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 0 24px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-meta {
  grid-column: 1 / 7;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
}
.hero-meta-rule {
  flex: 1; height: 1px; background: var(--line-strong);
}
.hero-meta-edition {
  font-size: 11px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.12em; text-transform: uppercase;
}

.hero-text {
  grid-column: 1 / 9;
  grid-row: 2;
  align-self: center;
}
.hero-h1 {
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}
.hero-h1 .ink { color: var(--ink); }
.hero-h1 .green { color: var(--green); }
.hero-h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero-h1 .dot {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: super;
  transform: translate(8px, -22px);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

.hero-rail {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-card-stat {
  background: var(--green);
  color: var(--bg);
  padding: 28px 24px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.hero-card-stat .blob {
  position: absolute; top: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.18;
}
.hero-card-stat .ek {
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.hero-card-stat .num {
  font-size: 72px; font-weight: 900;
  line-height: 0.9; letter-spacing: -0.04em;
  color: var(--gold);
  position: relative;
}
.hero-card-stat .lbl {
  font-size: 13px; font-weight: 500;
  margin-top: 10px; opacity: 0.9; line-height: 1.45;
  position: relative;
}
.hero-card-stat .lbl small {
  display: block; font-size: 11px;
  opacity: 0.65; margin-top: 4px;
}

.hero-card-img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 20px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s ease;
}
.hero-card-cta:hover { background: var(--green-dark); }
.hero-card-cta .ek {
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-card-cta .lbl { font-size: 14px; font-weight: 600; }
.hero-card-cta .arrow {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hero-card-cta:hover .arrow { transform: translateX(4px) rotate(-15deg); }

.hero-bottom {
  grid-column: 1 / 9;
  grid-row: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stats {
  display: flex; gap: 40px;
}
.hero-stat .num {
  font-size: 38px; font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft);
  margin-top: 6px; max-width: 160px; line-height: 1.4;
}

.hero-credit {
  display: flex; align-items: center; gap: 14px;
}
.hero-credit-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── COUNTDOWN ─── */
.hero-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 28px;
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.cd-units {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 36px;
}
.cd-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cd-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cd-colon {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  opacity: 0.35;
  padding-bottom: 14px;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0 100px;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-points {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 8px;
}
.about-points li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.about-points li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-points li .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 3px;
  width: 28px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.about-stat {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.about-stat:nth-child(2n) { border-right: 0; }
.about-stat:nth-last-child(-n+2) { border-bottom: 0; }
.about-stat .num {
  font-size: 48px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-stat .num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}
.about-stat .lbl {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  margin-top: 10px; line-height: 1.45;
}

.about-udi {
  background: var(--ink);
  color: rgba(250, 247, 240, 0.75);
  padding: 28px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.about-udi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}
.about-udi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.about-udi-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.about-udi .ek {
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 6px;
}
.about-udi h4 {
  font-size: 18px; font-weight: 700;
  color: var(--bg);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.about-udi p {
  font-size: 14px; line-height: 1.65;
}
.about-udi + .about-udi {
  margin-top: 16px;
}
.about-fcm::before { background: var(--green); }
.about-fcm .fcm-ek { color: #5DBE8A; }
.about-fcm-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--green);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* ─── THEMES ─── */
.themes {
  padding: 120px 0;
  background: var(--green-deep);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.themes::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(212, 164, 55, 0.18), transparent 50%);
  pointer-events: none;
}
.themes-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  position: relative;
}
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(212, 164, 55, 0.2);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.theme {
  padding: 36px 30px;
  border-right: 1px solid rgba(212, 164, 55, 0.2);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.theme:last-child { border-right: 0; }
.theme:hover { background: rgba(212, 164, 55, 0.06); }
.theme-num {
  font-family: var(--font-serif);
  font-size: 120px; font-weight: 700;
  color: rgba(212, 164, 55, 0.18);
  position: absolute;
  top: -8px; right: 16px;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}
.theme:hover .theme-num { color: rgba(212, 164, 55, 0.28); }
.theme-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.theme-tag::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
}
.theme h3 {
  font-size: 22px; font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  position: relative;
  flex-grow: 1;
}
.theme-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  position: relative;
}
.theme-tags .pill {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(250, 247, 240, 0.08);
  border: 1px solid rgba(250, 247, 240, 0.12);
  color: rgba(250, 247, 240, 0.75);
  border-radius: 999px;
  font-weight: 500;
}

/* ─── FORMAT ─── */
.format {
  padding: 120px 0;
  background: var(--bg-deep);
}
.format-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.format-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.format-item {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.2s ease;
}
.format-item:hover { padding-left: 12px; padding-right: 12px; }
.format-item .step {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
}
.format-item h4 {
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.format-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.format-item .when {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.format-item .when strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  margin-bottom: 4px;
}

/* ─── IMPACT ─── */
.impact {
  padding: 120px 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute; bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10, 107, 58, 0.35), transparent 60%);
  pointer-events: none;
}
.impact-head {
  margin-bottom: 64px;
  max-width: 720px;
  position: relative;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}
.impact-card {
  background: rgba(250, 247, 240, 0.04);
  border: 1px solid rgba(250, 247, 240, 0.08);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.impact-card:hover {
  background: rgba(212, 164, 55, 0.06);
  border-color: rgba(212, 164, 55, 0.25);
}
.impact-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px; font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
}
.impact-card h4 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.impact-card p {
  font-size: 15px;
  color: rgba(250, 247, 240, 0.65);
  line-height: 1.6;
}

/* ─── SPEAKERS ─── */
.speakers {
  padding: 120px 0;
  background: var(--bg);
}
.speakers-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.speaker-photo {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.speaker-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(10, 107, 58, 0.06) 0,
    rgba(10, 107, 58, 0.06) 1px,
    transparent 1px,
    transparent 12px
  );
}
.speaker-card:hover .speaker-photo {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.speaker-photo .tba {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.speaker-photo .tba::before {
  content: '';
  position: absolute;
  bottom: 14px; left: 14px;
  width: 26px; height: 26px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.speaker-info .role {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.speaker-info .name {
  font-size: 15px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.speaker-info .org {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.speakers-note {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  padding: 18px 24px;
  background: var(--bg-warm);
  border-radius: 999px;
  width: fit-content;
}
.speakers-note .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ─── PARTNERS ─── */
.partners {
  padding: 80px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-head {
  text-align: center;
  margin-bottom: 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.partner-slot {
  aspect-ratio: 3 / 1;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.partner-slot:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-types {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 40px;
}
.contact-type {
  padding: 22px 24px;
  background: var(--bg-warm);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, background 0.2s ease;
}
.contact-type:hover {
  background: var(--bg-deep);
  transform: translateX(4px);
}
.contact-type h4 {
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.contact-type p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-form {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: 11px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A6B3A' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 107, 58, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}
.form-note {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green-dark);
  color: rgba(250, 247, 240, 0.7);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}
.footer-brand h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}
.footer-brand p strong { color: var(--gold); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(250, 247, 240, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --container-pad: 32px; }
  .hero-text { grid-column: 1 / 13; }
  .hero-rail { grid-column: 1 / 13; grid-row: auto; padding-left: 0; border-left: 0; flex-direction: row; }
  .hero-bottom { grid-column: 1 / 13; }
  .hero-meta { grid-column: 1 / 13; }
  .about-grid, .themes-head, .format-head, .speakers-head, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .themes-grid { grid-template-columns: 1fr; }
  .theme { border-right: 0; border-bottom: 1px solid rgba(212, 164, 55, 0.2); }
  .theme:last-child { border-bottom: 0; }
  .impact-grid, .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .format-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .format-item p, .format-item .when { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
}
/* ─── LANG SWITCHER ─── */
.lang-switcher {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}
.lang-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.lang-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ─── RTL OVERRIDES ─── */
[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
[dir="rtl"] .about-points li .num { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .hero-meta { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

@media (max-width: 640px) {
  :root { --container-pad: 20px; }
  .hero { padding-top: 100px; }
  .hero-rail { flex-direction: column; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .impact-grid, .speakers-grid, .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
