@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-body: #f4f6fb;
  --bg-surface: #ffffff;
  --bg-subtle: #f8faff;
  --border-subtle: #e2e8f0;

  --primary: #0e52a0;
  --primary-soft: #deeaff;
  --primary-hover: #0a3f7e;
  --accent: #e6007e;
  --accent-soft: #ffe6f3;
  --accent-hover: #c4006a;
  --success: #16a34a;
  --success-soft: #dcfce7;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --radius-xl: 1.5rem;
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-sm: 0.5rem;
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.12);
  --max-width: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────
   LAYOUT
────────────────────────────────────────── */

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

@media (max-width: 768px) {
  .page-shell { padding-inline: 1rem; }
}

/* ──────────────────────────────────────────
   HEADER / NAV
────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(244, 246, 251, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #1a6ecf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 82, 160, 0.35);
}

.brand-text-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.brand-text-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-soft);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switcher {
  display: inline-flex;
  padding: 0.12rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #fff;
  gap: 0.1rem;
}

.lang-switcher button {
  border: none;
  background: transparent;
  padding: 0.18rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
  letter-spacing: 0.04em;
}

.lang-switcher button.active {
  background: var(--accent);
  color: #fff;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #c4006a);
  box-shadow: 0 4px 14px rgba(230, 0, 126, 0.38);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 0, 126, 0.48);
}

.btn-pill span.icon { font-size: 0.9rem; }

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

@media (max-width: 820px) {
  .nav-bar { padding-inline: 1rem; }

  .nav-main {
    position: fixed;
    inset: 54px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(244, 246, 251, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-main.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.2rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.55rem 0.75rem;
  }

  .nav-cta { width: 100%; justify-content: space-between; margin-top: 0.5rem; }
  .nav-toggle { display: block; }
}

/* ──────────────────────────────────────────
   VICTORY BANNER
────────────────────────────────────────── */

.victory-banner {
  background: linear-gradient(135deg, var(--success) 0%, #15803d 100%);
  color: #fff;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.victory-banner .banner-icon { font-size: 1.1rem; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */

.hero {
  margin-top: 1.5rem;
  padding: 2.2rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.06), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(14, 82, 160, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-elected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.hero-elected-badge::before { content: "✓"; }

.hero-left-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}

.hero-left-kicker-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.hero-text {
  margin-top: 0.9rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary {
  border-radius: 999px;
  border: none;
  padding: 0.72rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1a6ecf);
  box-shadow: 0 6px 20px rgba(14, 82, 160, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(14, 82, 160, 0.5);
}

.btn-outline {
  border-radius: 999px;
  border: 1.5px solid rgba(148, 163, 184, 0.6);
  background: #fff;
  padding: 0.68rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.32rem;
  flex-shrink: 0;
}

/* Photo block */

.hero-media { position: relative; z-index: 1; }

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), var(--primary-soft));
  padding: 0.7rem;
}

.hero-photo-card {
  position: relative;
  border-radius: calc(var(--radius-lg) - 0.5rem);
  overflow: hidden;
  background: #e8eaf0;
}

.hero-photo-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 330px;
  background: linear-gradient(135deg, #dde4f0, #e8eaf5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  gap: 0.5rem;
}

.hero-photo-placeholder .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.hero-badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 20, 40, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-floating {
  position: absolute;
  right: 0.3rem;
  bottom: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  max-width: 220px;
  border: 1px solid rgba(255,255,255,0.9);
}

.hero-floating-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.hero-floating-text { font-size: 0.78rem; color: var(--text-muted); }

/* ──────────────────────────────────────────
   SECTIONS
────────────────────────────────────────── */

.section { margin-top: 3rem; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-title {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 34rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem 1.3rem;
    gap: 1.5rem;
  }
  .hero-media { order: -1; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.25rem; }
  .hero-title { font-size: 1.75rem; }
  .hero-photo-card img,
  .hero-photo-placeholder { height: 260px; }
}

/* ──────────────────────────────────────────
   CARDS / GRIDS
────────────────────────────────────────── */

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .cards-2, .cards-3 { grid-template-columns: minmax(0, 1fr); }
}

.card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.35rem 1.4rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
}

/* ──────────────────────────────────────────
   TIMELINE
────────────────────────────────────────── */

.timeline {
  margin-top: 1.1rem;
  position: relative;
  padding-left: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.1rem;
  padding-left: 0.7rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item.current::before {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0.15rem 0 0.1rem;
  color: var(--text-main);
}

.timeline-item-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──────────────────────────────────────────
   POSITIONS
────────────────────────────────────────── */

.position-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: 0.03em;
}

.position-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.position-list li { margin-bottom: 0.3rem; }

/* ──────────────────────────────────────────
   SOUTENIR / DONATION
────────────────────────────────────────── */

.donate-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.15rem;
  letter-spacing: -0.03em;
}

.donate-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.donate-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.donate-highlight {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  font-size: 0.88rem;
  color: var(--primary);
  border: 1px solid rgba(14, 82, 160, 0.12);
}

.donate-iban {
  margin-top: 0.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--text-main);
}

/* ──────────────────────────────────────────
   MÉDIAS
────────────────────────────────────────── */

.media-meta {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.4rem;
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.media-link:hover { border-color: var(--primary); }

.media-card-rts {
  border-left: 3px solid #e30613;
}

.rts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #e30613;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

.contact-details {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-details-item { margin-bottom: 0.8rem; }

.contact-details-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

/* Form */

.form-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.3rem 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: minmax(0, 1fr); }
}

.form-group { margin-bottom: 0.9rem; }

.form-group label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.28rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(148, 163, 184, 0.55);
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 82, 160, 0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-helper {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.form-honeypot { display: none; }

.form-status { margin-top: 0.7rem; font-size: 0.82rem; font-weight: 500; }

/* ──────────────────────────────────────────
   HIGHLIGHT BOX
────────────────────────────────────────── */

.highlight-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-soft), #f0f7ff);
  border: 1px solid rgba(14, 82, 160, 0.15);
  padding: 1.5rem 1.6rem;
  margin-top: 1.5rem;
}

.highlight-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-box-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   STATS ROW
────────────────────────────────────────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.stat-card {
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.15rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3.5rem;
  background: var(--bg-surface);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.15s;
}

.footer-social a:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-soft);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
