/* ===== Support Center — Redesign =====
   Sistema visual: editorial, caloroso, sério.
*/

:root {
  /* Paleta oficial Support Center — Carmin + Rosa */
  --paper: #ffffff;          /* Branco */
  --paper-warm: #f6f6f6;     /* Cinza Claro */
  --ink: #252525;            /* Preto */
  --ink-2: #4a4145;          /* cinza-grafite suave */
  --ink-3: #8a7e82;          /* cinza médio */
  --line: #ececec;           /* linhas finas neutras */
  --line-2: #dcdcdc;

  /* Acento principal — Carmin */
  --accent: #913545;         /* Carmin */
  --accent-deep: #47030f;    /* Carmin Escuro */
  --accent-soft: #ffced6;    /* Rosa Claro */
  --accent-rose: #f8a3b2;    /* Rosa Pastel */

  /* Sub-cores derivadas do bordô (mesmo chroma, hues próximos) */
  --p-elo: #8E3544;
  --p-rede: #5a3a40;
  --p-douradas: #B8860B;
  --p-academia: #2a1418;

  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}

.serif {
  font-family: 'League Spartan', 'Iowan Old Style', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--ink-3);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'League Spartan', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark.--inverted img { filter: brightness(0) invert(1); }
.brand-full { padding: 8px 0; }
.brand-full-img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 900px) { .brand-full-img { height: 50px; } }
@media (max-width: 600px) { .brand-full-img { height: 40px; } }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-2);
  align-items: center;
}
.nav-links > a,
.nav-links > .nav-projects > .nav-projects-btn {
  position: relative;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-links .nav-projects-btn.active { color: var(--accent); }
.nav-links .nav-projects-btn.active::after {
  content: '';
  position: absolute;
  left: 0; right: 16px; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-projects-btn { position: relative; }
.nav-cta {
  display: flex; gap: 12px; align-items: center;
}
@media (max-width: 900px) { .nav-links { display: none; } }

/* ===== Hamburger ===== */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 0;
}
.nav-hamburger span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
  border-radius: 1px;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-donate-text--short { display: none; }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 8px; }
  .brand-full {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 200px);
  }
  .brand-full-img {
    height: 38px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .nav-cta {
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
  }
  .nav-cta .btn-primary {
    padding: 10px 12px;
    font-size: 11px;
    white-space: nowrap;
  }
  .nav-cta .pill-link.nav-lang {
    display: inline-flex;
    padding: 8px 10px;
    font-size: 10px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
  }
  .nav-hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    margin-left: 2px;
  }
}

/* ===== Mobile Drawer (outside nav to avoid backdrop-filter containing block bug) ===== */
.nav-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 8, 12, 0.45);
  z-index: 80;
  animation: fadeIn .2s ease;
}
.nav-drawer {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  bottom: auto;
  background: var(--paper);
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -12px rgba(20, 8, 12, 0.18);
  animation: drawerIn .25s cubic-bezier(.2,.9,.3,1);
}
@keyframes drawerIn {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.nav-drawer > a {
  padding: 16px 8px;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer > a.active { color: var(--accent); }
.nav-drawer-section { padding: 18px 0 8px; border-bottom: 1px solid var(--line); }
.nav-drawer-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 8px 14px;
}
.nav-drawer-project {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 12px;
  align-items: center;
  padding: 12px 8px;
  border-radius: 8px;
}
.nav-drawer-project:active { background: var(--paper-warm); }
.nav-drawer-project .nav-project-name { font-size: 15px; color: var(--ink); font-weight: 500; }
.nav-drawer-project .nav-project-tag { font-size: 12px; color: var(--ink-3); }
.nav-drawer-project .arrow { color: var(--accent); }
.nav-drawer-lang {
  margin-top: 18px;
  padding: 14px;
  border-radius: 999px;
  background: var(--paper-warm);
  font-size: 14px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
}
.nav-drawer-lang--top {
  margin: 0 0 8px;
  border: 1px solid var(--line-2);
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 600px) {
  .nav-drawer { top: 76px; max-height: calc(100dvh - 76px); padding: 20px 16px 28px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-link {
  padding: 0;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 2px;
}
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Hero ===== */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 32px 96px;
}
.hero-portraits {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: heroDrift 14s ease-in-out infinite alternate;
  transform-origin: center;
}
.hero-bg-image.is-active {
  opacity: 1;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate(-1%, -0.5%); }
  to   { transform: scale(1.12) translate(1.5%, 1.5%); }
}
.hero-bg-dots {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-bg-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero-bg-dot.active { background: #ffffff; width: 48px; }
.hero-bg-dot:hover { background: rgba(255, 255, 255, 0.8); }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      color-mix(in oklab, var(--accent) 75%, #000 10%) 0%,
      color-mix(in oklab, var(--accent) 35%, transparent) 35%,
      color-mix(in oklab, var(--paper) 35%, transparent) 70%,
      color-mix(in oklab, var(--paper) 70%, transparent) 100%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 60%,
      var(--paper) 100%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-title {
  font-size: clamp(56px, 7.5vw, 116px);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(60, 10, 20, 0.45);
}
.hero-title em {
  font-style: italic;
  color: #ffe8c2;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 460px;
  margin: 32px 0 40px;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(60, 10, 20, 0.4);
}
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}
.hero .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.08);
}
.hero .btn-ghost:hover {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}
.hero-strip {
  border-top-color: rgba(255, 255, 255, 0.25);
}
.hero-strip-left {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(60, 10, 20, 0.35);
}
.hero-strip .mono {
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-locales {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px -20px rgba(60, 10, 20, 0.35);
}
.locale-head { display: flex; align-items: center; }
.locale-stage {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 140px;
  animation: locFade .5s ease;
}
@keyframes locFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.locale-flag-lg { width: 36px; height: 24px; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.locale-flag-lg .locale-flag { width: 100%; height: 100%; }
.locale-flag {
  width: 22px; height: 14px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.locale-city {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.locale-region {
  font-size: 14px;
  color: var(--ink-2);
}
.locale-nucleus {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.locale-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.locale-pp strong { color: var(--accent); font-family: 'League Spartan', serif; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.locale-track {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.locale-dot {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 0;
  cursor: pointer;
  transition: background .3s ease;
}
.locale-dot.active { background: var(--accent); }
.locale-dot:hover { background: var(--ink-3); }

/* Hero footer strip */
.hero-strip {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-strip-left {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  align-items: center;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===== Métricas ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

.metric {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.metric:last-child { border-right: none; }
@media (max-width: 720px) {
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.metric-num {
  font-family: 'League Spartan', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.metric-num .plus { color: var(--accent); font-style: italic; font-weight: 400; }
.metric-label {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.metric-loc {
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ===== Section heads ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-title {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  margin: 0;
  padding-bottom: 0.08em;
  line-height: 1.08;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-lead {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 540px;
  text-wrap: pretty;
}

/* ===== Projetos ===== */
.proj-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.proj-tabs::-webkit-scrollbar {
  height: 4px;
}
.proj-tabs::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 4px;
}
.proj-tab {
  padding: 18px 24px 16px;
  font-size: 14px;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: color .2s ease, border-color .2s ease;
  display: flex; align-items: center; gap: 10px;
}
.proj-tab .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.proj-tab-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.proj-tab:hover { color: var(--ink-2); }
.proj-tab.active { color: var(--ink); border-color: var(--accent); }

.proj-learn-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proj-visual.--has-image.--card-image {
  min-height: 420px;
  padding: 0;
  background-color: var(--paper-warm);
}
.proj-visual.--card-image {
  border-radius: var(--radius-lg);
}

.proj-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  min-height: 480px;
}
@media (max-width: 1000px) { .proj-content { grid-template-columns: 1fr; gap: 32px; } }

.proj-info h3 {
  font-family: 'League Spartan', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.proj-info h3 em { font-style: italic; }
.proj-desc { color: var(--ink-2); font-size: 16px; max-width: 480px; }

.proj-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.proj-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-2);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.proj-list li::before {
  content: '';
  height: 1px;
  background: var(--ink);
  margin-top: 11px;
  width: 16px;
}

.proj-where {
  margin-top: 32px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
}
.chip-flag { width: 14px; height: 10px; border-radius: 1px; }

/* Visual side */
.proj-visual {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.proj-visual.--has-image {
  background-color: var(--paper-warm);
  padding: 24px;
}
.proj-visual.--has-image.--fit-contain {
  justify-content: flex-end;
}

/* Montagem: fotos em grade + logo central (estilo Elo de Marias) */
.proj-visual--montage {
  padding: 0;
  min-height: 480px;
  background: var(--ink);
}
.proj-visual-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  z-index: 0;
}
.proj-visual-tile {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ink-3);
  min-height: 0;
}
.proj-visual-montage-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 62% at 50% 42%,
      color-mix(in oklab, var(--montage-tint, #2a1418) 92%, transparent) 0%,
      color-mix(in oklab, var(--montage-tint, #2a1418) 72%, transparent) 42%,
      color-mix(in oklab, var(--montage-tint, #2a1418) 35%, transparent) 68%,
      rgba(0, 0, 0, 0.45) 100%);
}
.proj-visual-montage-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 82%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px);
}
.proj-visual-logo-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 28px 72px;
  pointer-events: none;
}
.proj-visual-logo {
  width: auto;
  max-width: 78%;
  max-height: 38%;
  object-fit: contain;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.45));
}
.proj-visual--montage .proj-visual-foot {
  position: relative;
  z-index: 4;
  color: rgba(255, 255, 255, 0.92);
  padding: 20px 24px 24px;
  margin-top: auto;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}
@media (max-width: 600px) {
  .proj-visual-logo { max-width: 88%; max-height: 32%; }
  .proj-visual-logo-wrap { padding: 48px 16px 64px; }
}
.proj-visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.proj-visual.--placeholder {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    color-mix(in oklab, var(--ink) 8%, transparent) 14px,
    color-mix(in oklab, var(--ink) 8%, transparent) 15px
  );
}
.proj-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.proj-visual-num {
  font-family: 'League Spartan', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.85;
}
.proj-visual-num .small {
  font-size: 0.35em;
  font-style: normal;
  color: var(--ink-2);
  letter-spacing: 0;
  margin-left: 12px;
}
.proj-visual-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 12px;
  color: var(--ink-2);
}

/* ===== Founder ===== */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 32px; } }

.founder-img {
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background-image: url('assets/founder.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.founder-img-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.founder-quote {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.founder-quote::before { content: '"'; color: var(--accent); margin-right: 4px; }
.founder-quote::after { content: '"'; color: var(--accent); margin-left: 2px; }
.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
.founder-name { font-family: 'League Spartan', serif; font-size: 22px; }
.founder-role { color: var(--ink-3); font-size: 13px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; text-transform: uppercase; }

.founder-bio {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 540px;
  margin-bottom: 32px;
}

/* ===== Donate strip ===== */
.donate-strip {
  background: var(--accent);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .donate-strip { grid-template-columns: 1fr; padding: 40px; gap: 32px; } }
.donate-strip h2 {
  font-family: 'League Spartan', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.donate-strip h2 em { font-style: italic; color: var(--accent-soft); }
.donate-strip p { color: color-mix(in oklab, var(--paper) 80%, transparent); margin: 16px 0 0; }

.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.donate-opt {
  padding: 18px 14px;
  border: 1px solid color-mix(in oklab, var(--paper) 25%, transparent);
  border-radius: 8px;
  background: transparent;
  color: var(--paper);
  text-align: left;
  transition: all .2s ease;
}
.donate-opt:hover, .donate-opt.active {
  background: var(--paper);
  color: var(--accent);
  border-color: var(--paper);
}
.donate-opt-amount { font-family: 'League Spartan', serif; font-size: 22px; }
.donate-opt-impact { font-size: 11px; color: color-mix(in oklab, var(--paper) 70%, transparent); margin-top: 4px; }
.donate-opt:hover .donate-opt-impact, .donate-opt.active .donate-opt-impact { color: var(--accent); }

.donate-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.donate-actions .btn-primary { background: var(--paper); color: var(--accent); }
.donate-actions .btn-primary:hover { background: var(--ink); color: var(--paper); }
.donate-actions .btn-ghost { color: var(--paper); border-color: color-mix(in oklab, var(--paper) 30%, transparent); }
.donate-actions .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; gap: 22px; } .team-photo { aspect-ratio: 4 / 5; } }

.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  border-radius: var(--radius);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 12px,
    color-mix(in oklab, var(--ink) 6%, transparent) 12px,
    color-mix(in oklab, var(--ink) 6%, transparent) 13px
  );
  position: relative;
  overflow: hidden;
}
.team-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  z-index: 1;
}
.team-photo-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 4px 8px;
  background: var(--paper);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.team-name { font-family: 'League Spartan', serif; font-size: 18px; line-height: 1.2; }
.team-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; text-transform: uppercase; }
.team-where { font-size: 13px; color: var(--ink-2); margin-top: 6px; display: flex; align-items: center; gap: 6px; }

.team-card-meta { padding-inline: 4px; }

.team-block { margin-bottom: 56px; }
.team-block:last-child { margin-bottom: 0; }
.team-block-head { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.team-block-title {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.team-block-sub {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.team-bio-list { display: flex; flex-direction: column; gap: 32px; }
.team-bio-card {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 28px;
  align-items: start;
}
.team-bio-photo { aspect-ratio: 4 / 5; max-width: 200px; }
.team-bio-name {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  margin: 0 0 4px;
  line-height: 1.15;
}
.team-bio-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}

.team-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-board-slot { display: flex; flex-direction: column; gap: 12px; }
.team-board-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--paper-warm);
  border: 1px dashed color-mix(in oklab, var(--ink) 18%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-board-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.team-board-name {
  font-family: 'League Spartan', serif;
  font-size: 16px;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .team-bio-card { grid-template-columns: minmax(120px, 160px) 1fr; gap: 20px; }
  .team-board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-bio-card { grid-template-columns: 1fr; }
  .team-bio-photo { max-width: none; }
  .team-bio-body { padding-inline: 8px; }
  .team-board-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* Equipe: mais respiro nas laterais (especialmente mobile) */
@media (max-width: 900px) {
  #equipe.container {
    padding-left: max(24px, calc(20px + env(safe-area-inset-left, 0px)));
    padding-right: max(24px, calc(20px + env(safe-area-inset-right, 0px)));
  }
  .team-block-head { padding-inline: 4px; }
  .team-card-meta { padding-inline: 8px; }
}
@media (max-width: 600px) {
  #equipe.container {
    padding-left: max(22px, calc(18px + env(safe-area-inset-left, 0px)));
    padding-right: max(22px, calc(18px + env(safe-area-inset-right, 0px)));
  }
  .team-block-head { padding-inline: 8px; }
  .team-card-meta { padding-inline: 10px; }
  .team-board-name { padding-inline: 8px; }
}

/* ===== Testimonials ===== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.test-quote {
  font-family: 'League Spartan', serif;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.test-quote span {
  padding: 2px 4px;
  margin: 0 -4px;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.test-quote::first-letter { color: var(--accent); }
.test-meta { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); }
.test-name { font-weight: 500; font-size: 14px; }
.test-role { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--paper); padding: 80px 0 40px; }
.footer .brand { color: var(--paper); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(150px, 1.15fr) minmax(88px, 0.72fr) minmax(100px, 0.82fr) minmax(88px, 0.72fr) minmax(200px, 1.15fr);
  gap: 20px 18px;
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
}
.footer-brand-col { min-width: 0; }
.footer-location-col {
  min-width: 0;
  align-self: start;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-location {
  margin-top: 0;
}
.footer-location h4 {
  margin-bottom: 10px;
}
.footer-address {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
}
.footer-address a { color: color-mix(in oklab, var(--paper) 92%, transparent); }
.footer-address a:hover { color: var(--paper); }
.footer-address-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
}
.footer-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--paper) 18%, transparent);
  aspect-ratio: 16 / 10;
  max-width: 100%;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  border: 0;
}
.footer-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: color-mix(in oklab, var(--paper) 6%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-map-placeholder::after {
  content: '';
  width: 26px;
  height: 26px;
  border: 2px solid color-mix(in oklab, var(--paper) 22%, transparent);
  border-top-color: color-mix(in oklab, var(--paper) 55%, transparent);
  border-radius: 50%;
  animation: footer-map-spin 0.75s linear infinite;
}
@keyframes footer-map-spin {
  to { transform: rotate(360deg); }
}
.footer h4 { margin: 0 0 14px; }
.footer ul { gap: 10px; font-size: 13px; }
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px 16px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-location-col { grid-column: 4 / 5; grid-row: 2; }
  .footer-brand-text { font-size: 20px; }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-location-col { grid-column: 1 / -1; max-width: 360px; }
}
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; }
.footer ul a { color: color-mix(in oklab, var(--paper) 80%, transparent); }
.footer ul a:hover { color: var(--paper); }
.footer-brand-text {
  font-family: 'League Spartan', serif;
  font-size: 20px;
  margin: 12px 0 0;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
}
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--ink) 50%, transparent);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
  animation: fadeIn .2s ease;
}
@supports (align-items: safe center) {
  .modal-overlay { align-items: safe center; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  position: relative;
  flex-shrink: 0;
  margin: auto 0;
  animation: pop .25s cubic-bezier(.2, .9, .3, 1.1);
}
@keyframes pop { from { transform: translateY(8px) scale(.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.modal-close:hover { background: var(--paper-warm); }
.modal h3 { font-family: 'League Spartan', serif; font-size: 32px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.02em; }
.modal-sub { color: var(--ink-2); font-size: 15px; margin: 0 0 28px; }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px; }
.amount-btn {
  padding: 18px 8px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: transparent;
  font-family: 'League Spartan', serif;
  font-size: 22px;
  transition: all .15s ease;
}
.amount-btn:hover { border-color: var(--ink); }
.amount-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.amount-custom {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
}
.amount-custom:focus { outline: none; border-color: var(--ink); }

.impact-line {
  background: var(--paper-warm);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.impact-line strong { color: var(--ink); }

.freq-toggle {
  display: flex;
  background: var(--paper-warm);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}
.freq-toggle button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
}
.freq-toggle button.active { background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.modal-cta {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s ease;
}
.modal-cta:hover { background: var(--accent-deep); }

/* ===== Zelle donate modal ===== */
.zelle-modal-overlay {
  padding: max(12px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
}
.modal--zelle {
  max-width: 420px;
  padding: 24px 22px 28px;
  overflow: visible;
}
.modal--zelle h3 { font-size: clamp(22px, 5vw, 28px); margin-bottom: 6px; }
.modal--zelle .modal-sub { font-size: 14px; margin-bottom: 18px; line-height: 1.45; }
.zelle-amount-row { margin-bottom: 16px; }
.zelle-amount-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.zelle-amount-grid { margin-bottom: 8px; }
.zelle-other-btn {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  color: var(--ink-2);
  transition: all .15s ease;
}
.zelle-other-btn:hover { border-color: var(--ink); color: var(--ink); }
.zelle-other-btn.active {
  background: color-mix(in oklab, #47030f 8%, var(--paper-warm));
  border-color: #47030f;
  color: #47030f;
}
.modal--zelle .amount-btn {
  color: #47030f;
  border-color: color-mix(in oklab, #47030f 28%, var(--line-2));
  font-weight: 500;
  padding: 14px 6px;
  font-size: 18px;
}
.modal--zelle .amount-btn:hover {
  border-color: #47030f;
  background: color-mix(in oklab, #47030f 6%, transparent);
}
.modal--zelle .amount-btn.active {
  background: #47030f;
  color: var(--paper);
  border-color: #47030f;
}
.zelle-amount-badge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 12px;
  background: color-mix(in oklab, #47030f 6%, var(--paper-warm));
  border: 1px solid color-mix(in oklab, #47030f 22%, transparent);
  border-radius: 10px;
}
.zelle-amount-badge-value {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 500;
  color: #47030f;
  line-height: 1;
}
.zelle-amount-badge-curr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: color-mix(in oklab, #47030f 65%, var(--ink-3));
}
.zelle-free-note {
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.5;
}
.zelle-qr-wrap {
  text-align: center;
  margin-bottom: 14px;
  padding: 12px;
  background: var(--paper-warm);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.zelle-qr-img {
  display: block;
  width: 100%;
  max-width: min(220px, 72vw);
  height: auto;
  margin: 0 auto 8px;
  border-radius: 8px;
}
.zelle-scan-hint {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.zelle-account {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zelle-account strong, .zelle-account a { color: var(--ink); font-weight: 500; }
.zelle-account a:hover { color: var(--accent); }
.zelle-account-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.modal--zelle .zelle-account { font-size: 12px; margin-bottom: 0; gap: 6px; }
.modal--zelle .zelle-account a { word-break: break-all; }

@media (max-height: 760px) {
  .modal--zelle { padding: 18px 18px 20px; }
  .modal--zelle .modal-sub { margin-bottom: 12px; }
  .zelle-amount-row { margin-bottom: 10px; }
  .zelle-amount-badge,
  .zelle-free-note { margin-bottom: 10px; }
  .zelle-qr-wrap { padding: 8px; margin-bottom: 10px; }
  .zelle-qr-img { max-width: min(190px, 64vw); }
}

/* ===== Misc utilities ===== */
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  transition: all .2s ease;
}
.pill-link:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.footer .pill-link--instagram {
  border-color: rgba(225, 48, 108, 0.45);
  color: #ffb8d2;
  background: rgba(225, 48, 108, 0.14);
}
.footer .pill-link--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.footer .pill-link--linkedin {
  border-color: rgba(10, 102, 194, 0.45);
  color: #9fd0ff;
  background: rgba(10, 102, 194, 0.16);
}
.footer .pill-link--linkedin:hover {
  background: #0a66c2;
  color: #fff;
  border-color: #0a66c2;
}
.footer .pill-link--youtube {
  border-color: rgba(255, 0, 0, 0.4);
  color: #ffb0b0;
  background: rgba(255, 0, 0, 0.14);
}
.footer .pill-link--youtube:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.footer .pill-link--disabled {
  opacity: 0.45;
  cursor: default;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.9,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* Parallax-ish heading underline */
.brand-mark-pulse {
  animation: markPulse 4s ease-in-out infinite;
}
@keyframes markPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.94); }
}

/* News strip */
.news-ticker {
  display: flex;
  gap: 64px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.news-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}
.news-track span { display: inline-flex; align-items: center; gap: 14px; }
.news-track span::before { content: '✦'; color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ===== Nav projects dropdown ===== */
.nav-projects { position: relative; display: flex; align-items: center; }
.nav-projects-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; color: var(--ink-2);
  padding: 4px 0;
  border-radius: 0;
  border: none;
  background: transparent;
  transition: color .15s ease;
  cursor: pointer;
}
.nav-projects-btn:hover { color: var(--ink); }
.nav-projects-btn:hover .nav-caret { color: var(--ink); }
.nav-projects-btn.open { color: var(--accent); }
.nav-projects-btn.open .nav-caret { color: var(--accent); transform: rotate(180deg); }
.nav-caret {
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease, color .15s ease;
  color: var(--accent);
  display: inline-block;
}
.nav-links > .nav-projects > .nav-projects-btn { padding: 4px 0; }
.nav-projects-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 50px -20px rgba(42,20,24,0.25), 0 8px 16px -8px rgba(42,20,24,0.12);
  padding: 14px;
  z-index: 100;
  animation: navMenuIn .18s ease-out;
}
@keyframes navMenuIn {
  from { opacity: 0; transform: translate(-50%, -6px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.nav-projects-label {
  font-size: 10px; padding: 6px 10px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.nav-project-item {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 12px; align-items: center;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background .15s ease;
}
.nav-project-item:hover { background: var(--paper-warm); }
.nav-project-item:hover .arrow { transform: translateX(3px); }
.nav-project-num { font-size: 12px; font-weight: 500; }
.nav-project-meta { display: flex; flex-direction: column; gap: 2px; }
.nav-project-name { font-size: 14px; color: var(--ink); font-weight: 500; }
.nav-project-tag { font-size: 11px; color: var(--ink-3); }
.nav-project-item .arrow { color: var(--accent); transition: transform .15s ease; }
.nav-projects-all {
  display: block;
  margin-top: 6px;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .nav-projects-menu { min-width: 280px; right: 0; left: auto; transform: none; }
  @keyframes navMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
}

/* ===== Team Pagination ===== */
.team-grid { animation: pageFade .4s ease; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.team-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.team-pag-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.team-pag-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.team-pag-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.team-pag-dots { display: flex; gap: 6px; }
.team-pag-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-3);
  font-size: 11px;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.team-pag-dot:hover { color: var(--ink); border-color: var(--line-2); }
.team-pag-dot.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--paper-warm);
  font-weight: 600;
}

/* ===== Founder Interview Modal ===== */
.interview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 24px;
  z-index: 1000;
  animation: interview-fade 0.25s ease;
}
@keyframes interview-fade { from { opacity: 0 } to { opacity: 1 } }
.interview-modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: interview-rise 0.3s cubic-bezier(.2,.7,.2,1);
}
@keyframes interview-rise { from { opacity: 0; transform: translateY(16px) } to { opacity: 1; transform: none } }
.interview-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-2);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.interview-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.interview-head {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.interview-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.interview-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 400;
}
.interview-role {
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.interview-body { display: flex; flex-direction: column; gap: 20px; }
.interview-p {
  font-family: 'League Spartan', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.interview-signature {
  margin: 12px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.interview-signature-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.interview-signature-quote {
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}

.interview-p:first-of-type::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 4px 10px 0 0;
  color: var(--accent);
  font-weight: 400;
}
@media (max-width: 700px) {
  .interview-modal { padding: 48px 24px 32px; max-height: 95vh; }
  .interview-p { font-size: 15.5px; }
}
.team-spotlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.team-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}

.team-spotlight-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 22px;
}

.team-spotlight-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.team-spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-spotlight-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px),
    color-mix(in oklab, var(--accent-deep) 70%, #000);
  border-radius: 8px;
  overflow: hidden;
}
.team-spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-spotlight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
}
.team-spotlight-month {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.14em;
}

.team-spotlight-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-spotlight-name {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.team-spotlight-where {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.team-spotlight-role {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 4px 0 0;
  text-wrap: pretty;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 12px;
}

.team-spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe8c2;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0;
}
.team-spotlight-star {
  font-size: 14px;
  color: #ffe8c2;
}

.team-spotlight-footer {
  position: relative;
  z-index: 2;
  display: block;
}
.team-spotlight-footer-text {
  max-width: 72ch;
}
.team-spotlight-why {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  letter-spacing: 0.14em;
}
.team-spotlight-quote {
  font-family: 'League Spartan', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.team-spotlight-cta {
  align-self: end;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.team-spotlight-cta:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
@media (max-width: 900px) {
  .team-spotlight { padding: 20px; }
  .team-spotlight-grid { grid-template-columns: 1fr; gap: 22px; }
  .team-spotlight-footer { grid-template-columns: 1fr; }
  .team-spotlight-quote { font-size: 16px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .team-spotlight-name { font-size: 22px; }
}

/* ===== Books / Ebooks ===== */
#equipe.section { padding-bottom: 48px; }
.books-section {
  background: transparent;
  border-top: none;
  padding-top: 32px;
}
.books-inner {
  background: var(--paper-warm);
  border-radius: 28px;
  padding: 80px 64px 88px;
  border: 1px solid var(--line);
}
.books-inner .section-head { margin-bottom: 56px; }
@media (max-width: 900px) {
  .books-inner { padding: 56px 32px 64px; border-radius: 22px; }
}
@media (max-width: 600px) {
  .books-inner { padding: 44px 22px 52px; border-radius: 18px; }
}
.book-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 64px;
  align-items: center;
}
.book-cover-wrap { display: flex; flex-direction: column; gap: 14px; align-self: center; }
.book-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 30px 60px -20px rgba(42,20,24,0.35), 0 8px 20px -8px rgba(42,20,24,0.25);
  transform: rotate(-1.2deg);
  transition: transform .4s ease;
}
.book-cover:hover { transform: rotate(0deg) translateY(-4px); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 2; }
.book-cover-fallback {
  position: absolute; inset: 0;
  padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  z-index: 1;
}
.book-cover-fallback::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.book-cover-title {
  font-size: 32px; line-height: 1.05; letter-spacing: -0.02em;
  text-wrap: balance;
}
.book-cover-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.book-cover-meta {
  display: flex; justify-content: space-between;
  font-size: 10px;
}
.book-info { padding-top: 8px; }
.book-tag { color: var(--accent); margin-bottom: 14px; }
.book-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  text-wrap: balance;
}
.book-title em { font-style: italic; color: var(--accent); }
.book-author {
  font-size: 14px; color: var(--ink-2);
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.book-syn-label, .book-stores-label {
  font-size: 10px; color: var(--ink-3); margin-bottom: 10px;
}
.book-syn {
  font-size: 16px; line-height: 1.65; color: var(--ink-2);
  margin: 0 0 28px; max-width: 56ch;
}
.book-stores { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; max-width: 380px; }
.book-store {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.book-store:hover { border-color: var(--accent); transform: translateX(4px); background: #fff; }

/* ===== Join / participation form ===== */
.join-section {
  padding-top: 0;
}
.join-inner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.join-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}
.join-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.25fr;
  gap: 28px 36px;
  align-items: stretch;
}
.join-head {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.join-head-copy { flex: 0 0 auto; }
.join-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 0 4px;
}
.join-logo img {
  width: min(200px, 82%);
  height: auto;
  display: block;
  opacity: 0.98;
}
.join-head .eyebrow { color: #ffe8c2; margin-bottom: 8px; }
.join-head .section-title {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 10px;
}
.join-head .section-title em { color: #ffe8c2; }
.join-lead {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 34ch;
}
.join-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.join-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.join-field--full { grid-column: 1 / -1; }
.join-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.join-field input,
.join-field textarea,
.join-select-trigger {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.join-field input::placeholder,
.join-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.join-field input:focus,
.join-field textarea:focus,
.join-select-trigger:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.14);
}
.join-field--select { position: relative; }
.join-select-trigger {
  text-align: left;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.85' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
.join-select-trigger.open {
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.14);
}
.join-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: var(--accent-deep);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  z-index: 20;
}
.join-select-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.join-select-option:hover,
.join-select-option.active {
  background: #ffe8c2;
  color: var(--accent-deep);
}
.join-thanks-overlay { z-index: 1200; }
.modal--thanks {
  max-width: 420px;
  text-align: center;
}
.modal--thanks h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 12px;
  color: var(--ink);
}
.modal--thanks .modal-sub {
  margin: 0 0 24px;
  color: var(--ink-2);
  line-height: 1.6;
}
.modal--thanks .btn-primary { width: 100%; justify-content: center; }
.join-field textarea { resize: vertical; min-height: 72px; }
.join-form-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.join-form-actions .btn-primary {
  background: #fff;
  color: var(--accent);
  padding: 12px 20px;
  font-size: 14px;
}
.join-form-actions .btn-primary:hover {
  background: var(--ink);
  color: #fff;
}
.join-note {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .join-inner { padding: 28px 24px; }
  .join-layout { grid-template-columns: 1fr; gap: 20px; }
  .join-lead { max-width: none; }
  .join-logo { flex: 0 0 auto; margin-top: 12px; }
  .join-logo img { width: min(140px, 52vw); }
}
@media (max-width: 600px) {
  .join-inner { padding: 24px 18px; }
  .join-form-grid { grid-template-columns: 1fr; }
  .join-form-actions { flex-direction: column; align-items: stretch; }
  .join-form-actions .btn-primary { width: 100%; justify-content: center; }
}
.book-store-label { flex: 1; font-size: 14px; color: var(--ink); font-weight: 500; }
.book-store .arrow { color: var(--accent); }
.book-cta { margin-top: 8px; }

@media (max-width: 900px) {
  .book-feature { grid-template-columns: 1fr; gap: 36px; }
  .book-cover-wrap { max-width: 320px; }
}
@media (max-width: 600px) {
  .book-cover-wrap { max-width: 100%; }
  .book-syn { font-size: 15px; }
}

/* ===== Responsivo: tablet ===== */
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .nav-inner { height: 76px; }
  .brand-full-img { height: 36px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 32px; height: 32px; }
  .nav-cta { gap: 8px; }
  .nav-cta .pill-link { padding: 5px 10px; font-size: 11px; }
  .nav-cta .btn { padding: 9px 16px; font-size: 13px; }

  .hero-inner { padding: 48px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: clamp(40px, 9vw, 64px); }
  .hero-sub { font-size: 16px; margin: 24px 0 28px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 11px 18px; font-size: 13px; }
  .hero-strip { margin-top: 48px; padding-top: 24px; }
  .hero-strip-left { font-size: 13px; }

  .hero-locales { padding: 22px; }
  .locale-city { font-size: 26px; }
  .locale-region { font-size: 13px; }

  .hero-bg-dots { bottom: 16px; left: 20px; }
  .hero-bg-dot { width: 22px; }
  .hero-bg-dot.active { width: 36px; }

  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .section-title { font-size: clamp(32px, 7vw, 44px); }
  .section-lead { font-size: 15px; }

  .proj-content { grid-template-columns: 1fr; gap: 28px; }
  .proj-visual { min-height: 320px; padding: 24px; }
  .proj-visual-num { font-size: clamp(64px, 14vw, 120px); }
  .proj-info h3 { font-size: clamp(28px, 6vw, 40px); }
  .proj-tabs {
    gap: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 12px 2px;
    scroll-padding-inline: 12px;
  }
  .proj-tab {
    padding: 14px 14px 12px;
    font-size: 12px;
    gap: 8px;
    max-width: none;
  }
  .proj-tab .proj-tab-logo { width: 22px; height: 22px; flex-shrink: 0; }

  .founder { grid-template-columns: 1fr; gap: 28px; }
  .founder-quote { font-size: clamp(22px, 5vw, 32px); }

  .donate-strip { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .donate-strip h2 { font-size: clamp(28px, 6vw, 40px); }
  .donate-options { grid-template-columns: 1fr 1fr 1fr; }
  .donate-opt { padding: 14px 10px; }
  .donate-opt-amount { font-size: 18px; }
  .donate-opt-impact { font-size: 10px; }
  .donate-actions { flex-wrap: wrap; }
  .donate-actions .btn { flex: 1; justify-content: center; }

  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-photo { aspect-ratio: 4 / 5; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 11px; }

  .test-grid { grid-template-columns: 1fr; gap: 16px; }
  .test-card { padding: 24px; min-height: auto; }
  .test-quote { font-size: 18px; }

  .footer { padding: 56px 0 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand-text { font-size: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .modal { padding: 28px 24px; }
  .modal h3 { font-size: 26px; }

  .metric { padding: 36px 20px; }
}

/* ===== Responsivo: mobile ===== */
@media (max-width: 420px) {
  .brand-full { max-width: calc(100% - 132px); }
  .nav-donate-text--full { display: none; }
  .nav-donate-text--short { display: inline; }
  .nav-donate-arrow { margin-left: 0 !important; }
  .nav-cta .nav-donate-btn {
    min-width: 42px;
    padding: 10px 11px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .nav-inner { height: 60px; gap: 6px; }
  .brand-full { max-width: calc(100% - 168px); }
  .brand-full-img { height: 32px; }
  .nav-cta .pill-link:not(.nav-lang) { display: none; }
  .nav-cta .btn-primary { padding: 10px 10px; font-size: 10px; }
  .nav-cta .pill-link.nav-lang { padding: 7px 8px; font-size: 9px; }
  .nav-hamburger { width: 42px; height: 42px; min-width: 42px; }

  .hero-inner { padding: 36px 16px 56px; }
  .hero-title { font-size: clamp(36px, 11vw, 56px); line-height: 1.05; }
  .hero-sub { font-size: 15px; margin: 20px 0 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-strip { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 36px; }
  .hero-strip-left { font-size: 12px; }

  .hero-locales { padding: 18px; }
  .locale-city { font-size: 22px; }
  .locale-meta-row { flex-direction: column; align-items: flex-start; gap: 4px; }

  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: 28px 16px; }
  .metric-num { font-size: clamp(36px, 9vw, 52px); }
  .metric-label { font-size: 12px; }

  .news-ticker { font-size: 11px; padding: 10px 0; }

  .section-head { gap: 14px; margin-bottom: 32px; }
  .section-title { font-size: clamp(28px, 8vw, 38px); }
  .section-lead { font-size: 14px; }

  .proj-tab { padding: 12px 14px 10px; font-size: 12px; gap: 8px; }
  .proj-tab .num { font-size: 10px; }
  .proj-info h3 { font-size: clamp(24px, 7vw, 34px); }
  .proj-desc { font-size: 14px; }
  .proj-visual { min-height: 260px; padding: 20px; border-radius: 8px; }
  .proj-list li { font-size: 13px; }
  .proj-where { gap: 6px; }
  .chip { font-size: 11px; padding: 5px 10px; }

  .founder-img { aspect-ratio: 4 / 4.5; }
  .founder-quote { font-size: clamp(20px, 6vw, 28px); }
  .founder-bio { font-size: 14px; }

  .donate-strip { padding: 28px 22px; border-radius: 8px; }
  .donate-strip h2 { font-size: clamp(24px, 7vw, 34px); }
  .donate-options { grid-template-columns: 1fr; gap: 6px; }
  .donate-opt { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
  .donate-opt-amount { font-size: 18px; }
  .donate-opt-impact { margin-top: 0; font-size: 11px; }
  .donate-actions .btn-primary,
  .donate-actions .btn-ghost { width: 100%; flex: none; }

  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-photo { aspect-ratio: 4 / 5; }
  .team-name { font-size: 16px; }

  .test-card { padding: 22px; }
  .test-quote { font-size: 16px; }

  .footer { padding: 44px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer h4 { margin-bottom: 14px; }

  .modal-overlay { padding: max(10px, env(safe-area-inset-top)) 10px max(14px, env(safe-area-inset-bottom)); }
  .zelle-modal-overlay { padding: max(8px, env(safe-area-inset-top)) 8px max(12px, env(safe-area-inset-bottom)); }
  .modal { padding: 24px 20px; max-width: 100%; border-radius: 14px; }
  .modal--zelle { padding: 18px 16px 20px; }
  .modal--zelle .modal-sub { margin-bottom: 14px; }
  .zelle-amount-row { margin-bottom: 12px; }
  .zelle-qr-wrap { padding: 10px; margin-bottom: 12px; }
  .zelle-qr-img { max-width: min(200px, 68vw); }
  .modal h3 { font-size: 22px; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .modal--zelle .amount-btn { padding: 12px 4px; font-size: 16px; min-height: 44px; }
  .freq-toggle button { font-size: 12px; padding: 8px; }
}

/* iOS tap target */
@media (max-width: 600px) {
  button, .btn, .pill-link, .proj-tab, a.btn { min-height: 44px; }
  .hero-bg-dot, .locale-dot { min-height: auto; }
}
