/* ============================================================
   WASHINGTON SORIO — Site CSS
   Design system: dark theme with gold (#e6b422) accents
   ============================================================ */

/* ── FONT-FACE DECLARATIONS ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/inter-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/playfair-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/playfair-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F;
}

/* ── CSS VARIABLES ── */
:root {
  --bg: #121212;
  --fg: #f2f2f2;
  --card: #1c1c1c;
  --primary: #e6b422;
  --primary-fg: #121212;
  --muted: #a6a6a6;
  --border: #4d3d1a;
  --olive: #2e2e1a;
  --olive-light: #3d3d26;
  --radius: 0.5rem;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

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

a:hover {
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ── FOCUS VISIBLE RINGS ── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── SKIP LINK ── */
#skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s;
}

#skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 1.5rem;
}

/* ── UTILITY ── */
.text-primary { color: var(--primary); }
.bg-primary { background: var(--primary); }
.text-muted { color: var(--muted); }
.tracking { letter-spacing: 0.25em; }
.text-center { text-align: center; }
.bg-card-section { background: var(--card); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── SECTION HEADINGS ── */
.stitle {
  letter-spacing: 0.25em;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.sheading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* ── SVG ICONS ── */
.icon-svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
}

/* Nav + mobile: donation CTA */
.btn-nav-donate {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
  transition: opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

body > nav .links a.btn-nav-donate {
  color: var(--primary-fg);
}

.btn-nav-donate:hover {
  opacity: 0.85;
}

body > nav .links a.btn-nav-donate:hover {
  color: var(--primary-fg);
}

.mobile-menu a.btn-nav-donate {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.55rem 1.15rem;
  border-bottom: none;
  color: var(--primary-fg);
}

.mobile-menu a.btn-nav-donate:hover {
  color: var(--primary-fg);
  opacity: 0.85;
}

/* ── DONATE BANNER (home) ── */
.donate-banner {
  background: var(--olive);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.donate-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.donate-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.donate-inner p {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .donate-inner {
    flex-direction: column;
    text-align: center;
  }

  .donate-inner .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ── NAV ── */
body > nav,
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

body > nav .inner,
.site-nav .inner,
.site-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body > nav .logo,
.site-nav .logo,
.site-nav .nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

body > nav .links,
.site-nav .links,
.site-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

body > nav .links a,
.site-nav .links a,
.site-nav .nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

body > nav .links a:hover,
body > nav .links a[aria-current="page"],
.site-nav .links a:hover,
.site-nav .links a[aria-current="page"],
.site-nav .nav-links a:hover,
.site-nav .nav-links a[aria-current="page"] {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(77, 61, 26, 0.3);
  font-size: 0.95rem;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--primary);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo .frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
}

.hero-photo .glow {
  position: absolute;
  inset: -0.75rem;
  background: var(--primary);
  border-radius: var(--radius);
  opacity: 0.8;
}

.hero-photo .inner {
  position: relative;
  background: var(--olive);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.hero-photo .inner p {
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  color: var(--fg);
}

.hero-photo img {
  width: 24rem;
  border-radius: 4px;
}

.hero-geo-link {
  display: inline-block;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s;
}
.hero-geo-link:hover { opacity: 1; text-decoration: underline; }

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-text {
  text-align: left;
}

.hero-text .badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.hero-text .sub {
  color: var(--primary);
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.hero-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.hero-text .bar {
  width: 6rem;
  height: 4px;
  background: var(--primary);
  margin: 2rem 0;
}

.hero-text .tagline {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-text .values p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0.25rem 0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-legal {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--card);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--muted);
}

.story-box {
  background: var(--olive);
  border: 1px solid rgba(230, 180, 34, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.story-box h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.story-box p {
  color: var(--muted);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

/* ── MOTIVATION ── */
.motiv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.motiv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
}

.motiv-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.motiv-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.motiv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.motiv-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONNECTION ── */
.conn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.conn-card {
  display: flex;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.conn-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

.conn-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

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

/* ── RESULTS ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.result-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.result-tag {
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
}

.result-body {
  padding: 1.5rem;
}

.result-body .company {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.result-body .highlight {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.result-body .desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── AGENDA / PROPOSALS ── */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.agenda-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.agenda-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.agenda-header {
  background: rgba(230, 180, 34, 0.1);
  border-bottom: 1px solid rgba(230, 180, 34, 0.3);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.agenda-header h3 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.agenda-body {
  padding: 1.5rem;
}

.agenda-body .sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.agenda-body ul {
  list-style: none;
  padding: 0;
}

.agenda-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.agenda-body li::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
}

.value-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info .bar {
  width: 4rem;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem 0;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-info .name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.contact-info .role {
  color: var(--primary);
  font-style: italic;
}

.contact-info .title {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--primary);
}

.contact-links svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

footer .footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

footer .footer-nav a:hover {
  color: var(--primary);
}

footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

footer .footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

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

footer .footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
}

footer .footer-legal {
  background: var(--olive);
  border: 1px solid rgba(230, 180, 34, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

footer .footer-legal p {
  font-size: 0.75rem;
  color: var(--muted);
}

footer .footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb-item a {
  color: var(--muted);
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--border);
  margin: 0 0.25rem;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
}

.faq-q .q-mark {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-a {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 3rem;
}

.faq-item .faq-a-block {
  padding: 0 1.5rem 1.25rem 1.5rem;
  padding-left: 3rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item .faq-a-block > p:first-child {
  margin-bottom: 1rem;
}

.faq-awards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-awards li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.faq-awards li:last-child {
  margin-bottom: 0;
}

.faq-award-icon {
  flex-shrink: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.faq-awards strong {
  color: var(--fg);
}

.faq-tldr {
  background: var(--olive);
  border: 1px solid rgba(230, 180, 34, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-tldr strong {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

/* ── ARTICLE / POST ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.posts-listing {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.post-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-date {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.post-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
  color: var(--fg);
}

.post-title a {
  color: var(--fg);
  transition: color 0.2s;
}

.post-title a:hover {
  color: var(--primary);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.post-tag {
  background: var(--olive);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
}

.post-share a {
  color: var(--muted);
  transition: color 0.2s;
}

.post-share a:hover {
  color: var(--primary);
}

.related-posts {
  max-width: 1100px;
  margin: 3rem auto 0;
}

.related-posts h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* ── TAG FILTER ── */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tag-filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.tag-filter-btn:hover,
.tag-filter-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* ── PAGINATION ── */
.pagination-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-static a,
.pagination-static span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--card);
  transition: all 0.2s;
}

.pagination-static a:hover,
.pagination-static span.current {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* ── GENERATED PUBLICATIONS PAGES ── */
.publications-header,
.publications-grid,
.post-single {
  padding: 6rem 1.5rem 3rem;
}

.publications-grid {
  padding-top: 0;
}

.publications-header h1,
.post-header h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.pub-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.post-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 3rem 0 1rem;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.9rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--card);
  transition: all 0.2s;
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

.post-single {
  max-width: 900px;
  margin: 0 auto;
}

.post-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.post-hero-img {
  display: block;
  margin: 2rem 0;
}

.post-hero-img img,
img.post-hero-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.post-body {
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
  color: var(--fg);
  font-size: 1.05rem;
}

.post-body p {
  margin-bottom: 1.25rem;
}

.post-hashtag {
  color: var(--primary);
  font-weight: 700;
}

.post-nav-links {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
}

.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer .footer-legal,
.site-footer .footer-copy {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.site-footer .footer-nav {
  margin: 0.75rem 0;
  font-size: 0.9rem;
}

.site-footer .footer-nav a {
  color: var(--muted);
}

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

/* ── PRESS KIT ── */
.press-bio {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.press-bio h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.press-bio p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.press-photo-grid figure {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.press-photo-grid figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.press-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--olive);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.press-download-btn:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

.fact-sheet {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-sheet-row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  border-bottom: 1px solid var(--border);
}

.fact-sheet-row:last-child {
  border-bottom: none;
}

.fact-sheet-key {
  background: var(--olive);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.fact-sheet-val {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--fg);
}

/* ── PROPOSAL DEEP-DIVE ── */
.proposal-answer {
  background: var(--olive);
  border: 1px solid rgba(230, 180, 34, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
}

.proposal-section {
  margin-bottom: 3rem;
}

.proposal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.proposal-section p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.proposal-section ul {
  list-style: none;
  padding: 0;
}

.proposal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}

.proposal-section ul li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

.proposal-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.proposal-metric-item {
  background: var(--card);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.proposal-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.proposal-metric-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── TLDR FACT BLOCK (AEO) ── */
.fact-block {
  background: var(--olive);
  border: 1px solid rgba(230, 180, 34, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.fact-block h2 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.fact-block dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  font-size: 0.9rem;
}

.fact-block dt {
  font-weight: 700;
  color: var(--fg);
}

.fact-block dd {
  color: var(--muted);
}

/* ── ARTICLE CONTENT ── */
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--fg);
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
}

.article-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.article-content ul, .article-content ol {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.article-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.article-content ul li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

.article-content blockquote {
  background: var(--olive);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg);
}

/* ── CASE STUDY ARTICLE ── */
article.case-study {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

article.case-study .case-header {
  background: rgba(230, 180, 34, 0.1);
  border-bottom: 1px solid rgba(230, 180, 34, 0.3);
  padding: 1.5rem 2rem;
}

article.case-study .case-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

article.case-study .case-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

article.case-study .case-body {
  padding: 2rem;
}

article.case-study .case-metric {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

article.case-study .case-metric .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

article.case-study .case-metric .desc {
  font-size: 0.85rem;
  color: var(--muted);
}

article.case-study section {
  margin-bottom: 1.5rem;
}

article.case-study section h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

article.case-study section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PILLAR CARDS ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  border-color: rgba(230, 180, 34, 0.5);
}

.pillar-icon-wrap {
  background: rgba(230, 180, 34, 0.1);
  border-bottom: 1px solid rgba(230, 180, 34, 0.3);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pillar-icon {
  font-size: 1.75rem;
}

.pillar-icon-wrap h3 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.pillar-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar-body p.sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.pillar-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pillar-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.pillar-body ul li::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.pillar-body .pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap 0.2s;
  font-family: 'Inter', sans-serif;
}

.pillar-body .pillar-link:hover {
  gap: 0.7rem;
}

/* ── PAGE INTRO ── */
.page-intro {
  max-width: 800px;
  margin: 0 auto;
}

.page-intro h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.page-intro .lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── AGENDA PLACEHOLDER ── */
.agenda-placeholder {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
  color: var(--muted);
}

.agenda-placeholder p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── AVISO LEGAL ── */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-section ul li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── FAQ TEASER ── */
.faq-teaser {
  max-width: 800px;
  margin: 0 auto;
}

.faq-teaser .faq-item {
  background: var(--bg);
}

/* ── CONTACT PAGE ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.captacao-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.captacao-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.captacao-box p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
    order: -1;
  }

  .hero-text .bar {
    margin: 2rem auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-photo img {
    width: 16rem;
  }

  .hero-photo .frame {
    max-width: 24rem;
    transform: none;
    margin-bottom: 0;
  }

  .hero-photo {
    order: 1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .conn-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .motiv-grid,
  .results-grid,
  .agenda-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .press-photo-grid {
    grid-template-columns: 1fr;
  }

  .proposal-metric {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body > nav .links,
  .site-nav .links,
  .site-nav .nav-links {
    display: none;
  }

  .hamburger,
  .nav-burger {
    display: block;
  }

  .fact-block dl {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .fact-block dt {
    margin-top: 0.5rem;
  }

  .fact-sheet-row {
    grid-template-columns: 1fr;
  }

  .fact-sheet-key {
    border-bottom: none;
  }

  .timeline {
    padding-left: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .hero-photo img {
    width: 14rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  footer .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .tag-filter {
    justify-content: flex-start;
  }
}

/* === PRÊMIOS GRID (biografia) === */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.award-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-item picture {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f4f4;
}

.award-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.award-item figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted, #555);
}

.award-item figcaption strong {
  display: block;
  color: var(--color-text, #1a1a1a);
  margin-bottom: 0.2rem;
}

@media (max-width: 640px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie consent (GA4 / Consent Mode v2) ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10040;
  padding: 1rem 1rem 1.25rem;
  background: rgba(28, 28, 28, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-consent-inner p {
  flex: 1 1 16rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-consent-inner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-consent-actions .btn {
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  font-weight: 700;
  font-family: inherit;
}

.cookie-consent-actions .cookie-reject {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}

.cookie-consent-actions .cookie-accept {
  background: var(--primary);
  color: var(--primary-fg);
}
