@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --wine: #7a1f33;
  --wine-deep: #451019;
  --wine-soft: #a3405a;
  --wine-tint: #f7ecef;
  --gold: #d9a441;
  --gold-soft: #f3d9a8;
  --paper: #faf7f3;
  --white: #ffffff;
  --ink: #241b1e;
  --muted: #6d6266;
  --line: #eae2dd;
  --gray: #f3eeea;
  --shadow: 0 14px 40px rgba(69, 16, 25, 0.1);
  --shadow-lift: 0 22px 55px rgba(69, 16, 25, 0.16);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --font: "Plus Jakarta Sans", -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(234, 226, 221, 0.8);
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1260px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--wine-deep);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.submenu-trigger {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #55484d;
  padding: 9px 15px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.submenu-trigger:hover,
.submenu-trigger.is-active {
  background: var(--wine-tint);
  color: var(--wine);
}

.nav-item {
  position: relative;
}

.submenu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.submenu-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu a {
  display: block;
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--ink);
  font-weight: 600;
}

.submenu a:hover,
.submenu a.is-active {
  background: var(--wine-tint);
  color: var(--wine);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--wine);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--wine-soft);
  box-shadow: 0 10px 26px rgba(122, 31, 51, 0.28);
}

.button.secondary {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--wine-tint);
  box-shadow: none;
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button.secondary.light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  background: var(--gold);
  color: var(--wine-deep);
}

.button.light:hover {
  background: var(--gold-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.button.secondary.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button.secondary.light:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(680px, calc(100dvh - 74px));
  overflow: hidden;
  background: var(--wine-deep);
  color: var(--white);
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-track {
  display: flex;
  transition: transform 650ms ease;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  display: grid;
  align-items: center;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 8, 14, 0.88), rgba(41, 8, 14, 0.55) 52%, rgba(41, 8, 14, 0.18)),
    linear-gradient(0deg, rgba(41, 8, 14, 0.5), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

/* ---------- Type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  color: var(--white);
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
}

.section-dark .eyebrow,
.donation-band .eyebrow,
.impact-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font);
}

h1,
h2 {
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
}

.hero h2 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  color: var(--wine-deep);
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 160ms ease;
}

.hero-dot.is-active {
  background: var(--gold);
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray);
}

.section-dark {
  background: var(--wine-deep);
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.section-header h2 {
  margin-top: 12px;
}

.section-header p {
  color: var(--muted);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  left: -16px;
  bottom: -16px;
  max-width: 250px;
  border-radius: var(--radius);
  background: var(--wine);
  color: var(--white);
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: var(--shadow-lift);
}

.text-stack {
  display: grid;
  gap: 16px;
}

.text-stack h2 {
  margin-top: 4px;
}

.text-stack p,
.page-body p,
.card p,
.feature-card p {
  color: var(--muted);
}

/* ---------- Grids & cards ---------- */

.areas-grid,
.project-grid,
.cards-grid,
.documents-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.documents-grid,
.events-grid {
  margin-top: 20px;
}

.card,
.feature-card,
.document-card,
.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.feature-card:hover,
.document-card:hover,
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card {
  padding: 26px;
}

.feature-card img,
.event-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.feature-card-content,
.event-card-content {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h3,
.feature-card h3 {
  margin-bottom: 8px;
}

/* ---------- Impact band ---------- */

.impact-band {
  background: var(--wine-deep);
  color: var(--white);
  padding: 26px 0;
}

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

.impact-item {
  min-height: 148px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.impact-item span {
  display: block;
  max-width: 190px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Donation band ---------- */

.donation-band {
  background: linear-gradient(115deg, var(--wine-deep), var(--wine));
  color: var(--white);
}

.donation-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.donation-inner p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Page hero ---------- */

.page-hero {
  padding: 88px 0 72px;
  background:
    linear-gradient(115deg, rgba(41, 8, 14, 0.94), rgba(122, 31, 51, 0.82)),
    url("../img/hero-oficina.jpg") center/cover;
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.page-body {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 42px;
}

.content-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.side-panel {
  align-self: start;
  position: sticky;
  top: 96px;
}

.list-clean {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.list-clean li:last-child {
  border-bottom: 0;
}

.document-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 24px;
}

.document-card a {
  color: var(--wine);
  font-weight: 800;
  line-height: 1.35;
}

.document-card a:hover {
  text-decoration: underline;
}

.document-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- Contact ---------- */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-tile {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
}

.contact-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-tile a {
  font-weight: 700;
}

.contact-tile a:hover {
  color: var(--gold);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--wine-deep);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr 1fr;
  gap: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-logo h2 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.site-footer h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 20px;
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  transition: transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

/* ---------- Chips ---------- */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 11px 20px;
  color: var(--wine-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

a.chip:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-card figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card figcaption strong {
  display: block;
  color: var(--wine);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Stats & data ---------- */

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

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

.stat-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px 26px;
}

.stat-tile strong {
  display: block;
  color: var(--wine);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-tile span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-tile p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.bar-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.bar-row {
  display: grid;
  gap: 7px;
}

.bar-row .bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.bar-row .bar-label span:last-child {
  color: var(--wine);
  font-weight: 800;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: var(--gray);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--wine-soft));
}

.data-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.data-panel + .data-panel {
  margin-top: 20px;
}

.data-panel h3 {
  font-size: 1.3rem;
}

.data-panel > p {
  margin-top: 10px;
  color: var(--muted);
}

.split-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.split-panels .data-panel + .data-panel {
  margin-top: 0;
}

.table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.data-table th,
.data-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.data-table th {
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-table td:last-child,
.data-table th:last-child {
  text-align: right;
  font-weight: 700;
}

/* ---------- Board & team ---------- */

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

.board-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.board-col h3 {
  font-size: 1.05rem;
}

.board-col ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.board-col li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.board-col li:last-child {
  border-bottom: 0;
}

.board-col li strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.board-col li span {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 600;
}

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

.person-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.person-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.person-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.person-card span {
  display: block;
  margin-top: 7px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 24px;
  transition: box-shadow 160ms ease;
}

.faq-list details[open] {
  box-shadow: var(--shadow);
}

.faq-list summary {
  padding: 19px 30px 19px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-bottom: 20px;
  color: var(--muted);
}

/* ---------- Sponsors ---------- */

.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sponsor-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 13px 26px;
  color: var(--wine-deep);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sponsor-board {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.sponsor-board img {
  width: 100%;
  border-radius: 12px;
}

/* ---------- Docs ---------- */

.doc-group {
  margin-top: 48px;
}

.doc-group:first-of-type {
  margin-top: 0;
}

.doc-group > h3 {
  font-size: 1.3rem;
}

.doc-group > p {
  margin-top: 6px;
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: var(--white);
  padding: 16px 20px;
  color: var(--muted);
}

.value-list li strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-social a:hover {
  border-color: var(--gold);
}

/* ---------- Motion & responsive ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .header-actions .button.secondary {
    display: none;
  }

  .site-nav a,
  .submenu-trigger {
    padding-inline: 10px;
  }
}

@media (max-width: 940px) {
  .mobile-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow-y: auto;
    padding: 18px 20px 32px;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .submenu-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    padding: 13px 14px;
    text-align: left;
  }

  .nav-item {
    width: 100%;
  }

  .submenu {
    position: static;
    display: grid;
    max-height: 0;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
    transform: none;
  }

  .nav-item.is-open .submenu,
  .nav-item:focus-within .submenu {
    max-height: 420px;
    padding-top: 4px;
    padding-bottom: 8px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .section-header,
  .intro-grid,
  .donation-inner,
  .page-body,
  .split-panels {
    grid-template-columns: 1fr;
  }

  .split-panels .data-panel + .data-panel {
    margin-top: 0;
  }

  .areas-grid,
  .project-grid,
  .cards-grid,
  .documents-grid,
  .events-grid,
  .contact-strip,
  .footer-grid,
  .stat-grid,
  .stat-grid.cols-3,
  .board-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand img {
    height: 42px;
  }

  .brand-text strong {
    max-width: 170px;
    font-size: 0.92rem;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 56px 0 84px;
  }

  .hero-slide::after {
    background: linear-gradient(90deg, rgba(41, 8, 14, 0.92), rgba(41, 8, 14, 0.72));
  }

  .hero-actions .button,
  .donation-inner .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .areas-grid,
  .project-grid,
  .cards-grid,
  .documents-grid,
  .events-grid,
  .contact-strip,
  .footer-grid,
  .stat-grid,
  .stat-grid.cols-3,
  .board-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-item {
    min-height: 126px;
    padding: 24px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .impact-item:nth-child(2n) {
    border-right: 0;
  }

  .media-note {
    position: static;
    max-width: none;
    margin-top: -8px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 14px;
  }
}
