/* ============================================
   CRIS DU COEUR - NEW DESIGN SYSTEM
   Based on loliyaa/core
   ============================================ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700,500,400&f[]=satoshi@400,500,700,900&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  --brand: #D62828;
  --brand-dark: #B31E1E;
  --ink: #18181B;
  --ink-soft: #52525B;
  --paper: #FDFDFD;
  --paper-2: #F4F4F5;
  --border: #E4E4E7;
}

/* ==================== CSS RESET ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand) var(--paper-2);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Satoshi', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
.font-heading {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
}

.font-body {
  font-family: 'Satoshi', 'Manrope', sans-serif;
}

/* Heading scale from design guidelines */
h1, .h1 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 800;
}

h2, .h2 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h3, .h3 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h4, .h4 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p {
  line-height: 1.7;
}

/* Stats numbers - extra large */
.font-stats {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-weight: 900;
}

/* Overline - small caps style */
.overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* ==================== LENIS SMOOTH SCROLL ==================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--paper-2);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 8px;
}

/* ==================== TEXT EFFECTS ==================== */
.mask-line {
  overflow: hidden;
  display: block;
}

.text-stroke {
  -webkit-text-stroke: 1.5px rgba(24, 24, 27, 0.18);
  color: transparent;
}

/* ==================== SKIP LINK (accessibility) ==================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 16px;
}

/* ==================== LAYOUT ==================== */
.boxed_wrapper {
  min-height: 100vh;
}

main {
  display: block;
}

/* ==================== JOOMLA OVERRIDES ==================== */
.item-page,
.blog-page,
.article-body {
  font-family: 'Satoshi', 'Manrope', sans-serif;
}

.article-header h2 a {
  color: var(--ink);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  transition: color 0.2s;
}

.article-header h2 a:hover {
  color: var(--brand);
}

/* ==================== NAVBAR ==================== */
.cdc-nav-donate:active {
  transform: scale(0.96);
}

.cdc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.5s, height 0.5s;
  animation: navbar-slide-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cdc-navbar.scrolled {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cdc-navbar-white {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cdc-navbar-white .cdc-navbar-inner {
  height: 96px;
}

.cdc-navbar-white .cdc-nav-links a {
  color: var(--ink-soft);
}

.cdc-navbar-white .cdc-nav-links a:hover {
  color: var(--ink);
}

.cdc-navbar-white .cdc-navbar-official-logo {
  display: none !important;
}

.cdc-navbar-white .cdc-navbar-logo {
  display: block !important;
}

.cdc-navbar-white .cdc-mobile-toggle {
  color: var(--ink) !important;
}

.cdc-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  transition: height 0.5s;
}

@media (min-width: 768px) {
  .cdc-navbar-inner {
    padding: 0 40px;
  }
}

.cdc-navbar.scrolled .cdc-navbar-inner {
  height: 96px;
}

.cdc-navbar-brand {
  display: flex;
  align-items: center;
}

.cdc-navbar-logo {
  height: 56px;
  width: auto;
  display: none;
  transition: opacity 0.3s;
}

.cdc-navbar.scrolled .cdc-navbar-logo {
  display: block;
}

.cdc-navbar-official-logo {
  height: 72px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

.cdc-navbar:not(.scrolled) .cdc-navbar-official-logo {
  display: block;
}

.cdc-navbar.scrolled .cdc-navbar-official-logo {
  display: none;
}

.cdc-navbar-logo {
  height: 72px;
  width: auto;
  display: none;
  transition: transform 0.3s;
}

.cdc-navbar.scrolled .cdc-navbar-logo {
  display: block;
}

.cdc-navbar-official-logo {
  height: 80px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

.cdc-navbar:not(.scrolled) .cdc-navbar-official-logo {
  display: block;
}

.cdc-navbar.scrolled .cdc-navbar-official-logo {
  display: none;
}

.cdc-navbar-brand:hover .cdc-navbar-logo {
  transform: scale(1.03);
}

.cdc-navbar-social {
  display: flex;
  gap: 8px;
}

.cdc-navbar-brand:hover .cdc-navbar-heart {
  transform: scale(1.1);
}

.cdc-nav-links {
  display: none;
}

@media (min-width: 768px) {
  .cdc-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.cdc-nav-links a {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s;
}

.cdc-navbar.scrolled .cdc-nav-links a {
  color: var(--ink-soft);
}

.cdc-nav-links a:hover {
  color: white;
}

.cdc-navbar.scrolled .cdc-nav-links a:hover {
  color: var(--ink);
}

.cdc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: width 0.3s;
}

.cdc-nav-links a:hover::after {
  width: 100%;
}

.cdc-nav-link {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s;
}

.cdc-navbar.scrolled .cdc-nav-link {
  color: var(--ink-soft);
}

.cdc-nav-link:hover {
  color: white;
}

.cdc-navbar.scrolled .cdc-nav-link:hover {
  color: var(--ink);
}

.cdc-nav-connexion {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
}

.cdc-nav-connexion svg {
  width: 16px;
  height: 16px;
}

.cdc-nav-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.cdc-navbar.scrolled .cdc-nav-separator {
  background: var(--border);
}

/* ===== DROPDOWN NAV ===== */
.cdc-nav-group {
  position: relative;
}

.cdc-nav-group-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s;
  white-space: nowrap;
}

.cdc-nav-group-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s;
}

.cdc-navbar.scrolled .cdc-nav-group-btn {
  color: var(--ink-soft);
}

.cdc-nav-group-btn:hover {
  color: white;
}

.cdc-navbar.scrolled .cdc-nav-group-btn:hover {
  color: var(--ink);
}

.cdc-nav-group.open .cdc-nav-group-btn::after {
  transform: rotate(180deg);
}

.cdc-nav-group.open .cdc-nav-group-btn {
  color: white;
}

.cdc-navbar.scrolled .cdc-nav-group.open .cdc-nav-group-btn {
  color: var(--ink);
}

.cdc-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}

.cdc-nav-group.open .cdc-nav-dropdown,
.cdc-nav-group:hover .cdc-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cdc-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cdc-nav-dropdown a:hover {
  background: #f4f4f5;
  color: var(--brand);
}

@media (max-width: 767px) {
  .cdc-nav-group {
    width: 100%;
  }

  .cdc-nav-links,
  .cdc-mobile-menu,
  .cdc-nav-group,
  .cdc-nav-dropdown,
  .cdc-nav-dropdown a {
    max-width: 100%;
    overflow-x: hidden;
  }

  .cdc-nav-group-btn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--ink);
  }

  .cdc-nav-group-btn::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
  }

  .cdc-nav-group.open .cdc-nav-group-btn::after {
    transform: rotate(180deg);
  }

  .cdc-nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 0;
    background: transparent;
    display: none !important;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cdc-nav-group:first-child.open .cdc-nav-dropdown {
    display: flex !important;
    flex-direction: column;
  }

  .cdc-nav-group.open .cdc-nav-dropdown {
    display: flex !important;
    flex-direction: column;
  }

  .cdc-nav-dropdown a {
    padding: 8px 0;
    font-size: 13px;
    color: #52525b;
    border-bottom: 1px solid #f4f4f5;
  }

  .cdc-nav-dropdown a:last-child {
    border-bottom: none;
  }

  .cdc-nav-dropdown a:hover {
    background: none;
    color: var(--brand);
  }
}

.cdc-nav-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.9);
}

.cdc-navbar.scrolled .cdc-nav-icon-link {
  color: var(--ink);
}

.cdc-nav-icon-link:hover {
  color: white;
}

.cdc-navbar.scrolled .cdc-nav-icon-link:hover {
  color: var(--brand);
}

.cdc-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background: var(--brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdc-nav-donate {
  display: none;
}

@media (min-width: 768px) {
  .cdc-nav-donate {
    display: block;
  }
}

.cdc-nav-donate {
  background: var(--brand);
  color: white;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.1s;
}

.cdc-nav-donate:hover {
  background: var(--brand-dark);
}

.cdc-nav-donate:active {
  transform: scale(0.96);
}

.cdc-mobile-toggle {
  display: flex;
  align-items: center;
  color: white;
}

.cdc-navbar.scrolled .cdc-mobile-toggle {
  color: var(--ink);
}

@media (min-width: 768px) {
  .cdc-mobile-toggle {
    display: none;
  }
}

.cdc-mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.cdc-mobile-menu {
  display: none;
}

@media (max-width: 767px) {
  .cdc-mobile-menu {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 0 24px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .cdc-mobile-menu.open {
    display: flex;
    max-height: calc(100vh - 96px);
    opacity: 1;
    padding: 16px 24px;
  }
}

.cdc-mobile-menu a {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  padding: 4px 0;
}

.cdc-mobile-donate {
  background: var(--brand);
  color: white !important;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 9999px;
  text-align: center;
  margin-top: 8px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* ==================== HERO SECTION ==================== */
.cdc-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.cdc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.cdc-hero-slide.active {
  opacity: 1;
}

.cdc-hero-slide.active img {
  animation: hero-scale-in 6.5s linear forwards;
}

.cdc-hero-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cdc-hero-content > div,
.cdc-hero-content > h1,
.cdc-hero-content > p,
.cdc-hero-content > a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}

.cdc-hero-content.animate > .cdc-hero-overline {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s, transform 0.5s;
}

.cdc-hero-content.animate > h1 {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s;
}

.cdc-hero-content.animate > p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}

.cdc-hero-content.animate > a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s 0.7s, transform 0.6s 0.7s;
}

.cdc-hero-content.animate > .cdc-hero-dots {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s 0.9s, transform 0.5s 0.9s;
}

.cdc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.3), rgba(0,0,0,0.4));
  z-index: 1;
}

.cdc-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .cdc-hero-content {
    padding: 0 40px 112px;
  }
}

.cdc-hero-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cdc-hero-overline::before {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--brand);
}

.cdc-hero-overline span {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .cdc-hero-overline span {
    font-size: 14px;
  }
}

.cdc-hero-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 48px;
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 896px;
}

@media (min-width: 768px) {
  .cdc-hero-title {
    font-size: 72px;
  }
}

@media (min-width: 1024px) {
  .cdc-hero-title {
    font-size: 96px;
  }
}

.cdc-hero-title span {
  display: block;
}

.cdc-hero-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.625;
  max-width: 576px;
  margin-top: 28px;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .cdc-hero-text {
    font-size: 18px;
  }
}

.cdc-hero-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: white;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}

.cdc-hero-cta:hover {
  background: var(--brand-dark);
}

.cdc-hero-cta:active {
  transform: scale(0.97);
}

.cdc-hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.cdc-hero-cta:hover svg {
  transform: translateX(4px);
}

.cdc-hero-dots {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.cdc-hero-dot {
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.3);
  transition: width 0.5s, background 0.5s;
  width: 24px;
}

.cdc-hero-dot.active {
  width: 48px;
  background: var(--brand);
}

.cdc-hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 2;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .cdc-hero-scroll {
    right: 40px;
  }
}

.cdc-hero-scroll span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cdc-hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hero-scale-in {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes mask-line-in {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

@keyframes navbar-slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes page-hero-slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes page-hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== PAGE HERO (interior pages) ==================== */
.cdc-page-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--ink);
}

@media (min-width: 768px) {
  .cdc-page-hero {
    padding-top: 208px;
    padding-bottom: 112px;
  }
}

.cdc-page-hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cdc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(24,24,27,0.6) 50%, rgba(24,24,27,0.3) 100%);
}

.cdc-page-hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-page-hero-content {
    padding: 0 40px;
  }
}

.cdc-page-hero-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cdc-page-hero-overline::before {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--brand);
}

.cdc-page-hero-overline span {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .cdc-page-hero-overline span {
    font-size: 14px;
  }
}

.cdc-page-hero-title,
.cdc-page-hero-content h1 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 896px;
}

@media (min-width: 768px) {
  .cdc-page-hero-title,
  .cdc-page-hero-content h1 {
    font-size: 72px;
  }
}

.cdc-page-hero-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.625;
  max-width: 672px;
  line-height: 1.625;
  opacity: 0;
  transform: translateY(30px);
  animation: page-hero-fade-up 0.6s ease 0.25s both;
}

.cdc-page-hero .cdc-eyebrow {
  opacity: 0;
  transform: translateX(-20px);
  animation: page-hero-slide-in 0.6s ease 0.2s both;
}

.cdc-page-hero-title,
.cdc-page-hero-content h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: page-hero-fade-up 0.7s ease 0.1s both;
}

/* ==================== IMPACT SECTION ==================== */
.cdc-impact {
  background: var(--paper-2);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .cdc-impact {
    padding: 144px 0;
  }
}

.cdc-impact .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-impact .cdc-container {
    padding: 0 40px;
  }
}

.cdc-impact-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .cdc-impact-header {
    grid-template-columns: 8fr 4fr;
  }
}

.cdc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cdc-eyebrow::before {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--brand);
}

.cdc-eyebrow span {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--ink-soft);
}

.cdc-page-hero .cdc-eyebrow span {
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .cdc-eyebrow span {
    font-size: 14px;
  }
}

.cdc-impact-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 768px;
}

@media (min-width: 768px) {
  .cdc-impact-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .cdc-impact-title {
    font-size: 60px;
  }
}

.cdc-impact-stats,
.cdc-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 40px;
  border-top: 1px solid #d4d4d8;
  padding-top: 56px;
}

@media (min-width: 768px) {
  .cdc-impact-stats,
  .cdc-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdc-stat-number {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--ink);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .cdc-stat-number {
    font-size: 96px;
  }
}

@media (min-width: 1024px) {
  .cdc-stat-number {
    font-size: 112px;
  }
}

.cdc-stat-number .cdc-stat-suffix {
  color: var(--brand);
}

.cdc-stat-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.625;
  max-width: 320px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cdc-stat-label {
    font-size: 18px;
  }
}

/* ==================== VIDEO STORY SECTION ==================== */
.cdc-video-story {
  background: var(--paper);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .cdc-video-story {
    padding: 144px 0;
  }
}

.cdc-video-story .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-video-story .cdc-container {
    padding: 0 40px;
  }
}

.cdc-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cdc-video-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

.cdc-video-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
}

.cdc-video-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-video-player:hover .cdc-video-bg {
  transform: scale(1.05);
}

.cdc-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.cdc-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdc-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .cdc-video-play-btn {
    width: 96px;
    height: 96px;
  }
}

.cdc-video-play-btn:hover {
  transform: scale(1.05);
}

.cdc-video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--brand);
  color: var(--brand);
  margin-left: 4px;
}

@media (min-width: 768px) {
  .cdc-video-play-btn svg {
    width: 40px;
    height: 40px;
  }
}

.cdc-video-quote-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin-bottom: 24px;
}

.cdc-video-quote {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--ink);
}

@media (min-width: 768px) {
  .cdc-video-quote {
    font-size: 36px;
  }
}

.cdc-video-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.cdc-video-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
}

.cdc-video-author-name {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.cdc-video-author-role {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==================== TRANSPARENCY SECTION ==================== */
.cdc-transparency {
  background: var(--paper);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .cdc-transparency {
    padding: 128px 0;
  }
}

.cdc-transparency .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-transparency .cdc-container {
    padding: 0 40px;
  }
}

.cdc-transparency-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--paper-2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.cdc-transparency-card h3 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cdc-transparency-card p {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.625;
}

.cdc-transparency-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
}

.cdc-transparency-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

@media (min-width: 768px) {
  .cdc-transparency-card {
    padding: 64px;
    flex-direction: row;
    align-items: center;
  }
}

.cdc-transparency-card-left {
  flex: 1;
  max-width: 672px;
}

.cdc-manifesto {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .cdc-manifesto {
    padding: 144px 0;
  }
}

.cdc-manifesto-header .cdc-eyebrow span {
  color: rgba(255,255,255,0.6);
}

.cdc-manifesto-intro {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 768px;
}

.cdc-manifesto-header .cdc-impact-title {
  color: white;
}

.cdc-manifesto-rows {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cdc-manifesto-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 32px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
  margin: 0 -8px;
  transition: background 0.2s;
  cursor: default;
}

@media (min-width: 768px) {
  .cdc-manifesto-row {
    grid-template-columns: 2fr 4fr 5fr 1fr;
    padding: 40px;
    margin: 0 -16px;
  }
}

.cdc-manifesto-row:hover {
  background: rgba(255,255,255,0.03);
}

.cdc-manifesto-num {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cdc-manifesto-num {
    font-size: 48px;
  }
}

.cdc-manifesto-row:hover .cdc-manifesto-num {
  color: var(--brand);
}

.cdc-manifesto-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: white;
}

@media (min-width: 768px) {
  .cdc-manifesto-title {
    font-size: 30px;
  }
}

.cdc-manifesto-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .cdc-manifesto-text {
    font-size: 18px;
  }
}

.cdc-manifesto-arrow {
  display: none;
}

@media (min-width: 768px) {
  .cdc-manifesto-arrow {
    display: flex;
    justify-content: flex-end;
  }
}

.cdc-manifesto-arrow svg {
  width: 24px;
  height: 24px;
  color: transparent;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.cdc-manifesto-row:hover .cdc-manifesto-arrow svg {
  color: var(--brand);
  transform: translateX(0);
}

/* ==================== MARQUEE BAND ==================== */
.col-span-1 { grid-column: span 1; } .col-span-2 { grid-column: span 2; } .col-span-4 { grid-column: span 4; } .col-span-5 { grid-column: span 5; }
.cdc-marquee {
  background: var(--paper);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 768px) {
.col-span-1 { grid-column: span 1; } .col-span-2 { grid-column: span 2; } .col-span-4 { grid-column: span 4; } .col-span-5 { grid-column: span 5; }
  .cdc-marquee {
    padding: 80px 0;
  }
}

.cdc-marquee-track {
  display: flex;
  align-items: center;
}

.cdc-marquee-word {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 60px;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1.5px rgba(24,24,27,0.18);
  color: transparent;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .cdc-marquee-word {
    font-size: 96px;
  }
}

.cdc-marquee-dot {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: var(--brand);
  margin: 0 8px;
  flex-shrink: 0;
}

/* ==================== NEWS GRID ==================== */
.cdc-news {
  background: var(--paper);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .cdc-news {
    padding: 144px 0;
  }
}

.cdc-news .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-news .cdc-container {
    padding: 0 40px;
  }
}

.cdc-news-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .cdc-news-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.cdc-news-header {
  max-width: 672px;
}

.cdc-news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.cdc-news-all-link:hover {
  color: var(--brand);
}

.cdc-news-all-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.cdc-news-all-link:hover svg {
  transform: translateX(4px);
}

.cdc-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .cdc-news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.cdc-news-card {
  cursor: pointer;
}

.cdc-news-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
}

.cdc-news-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-news-card:hover .cdc-news-card-image img {
  transform: scale(1.05);
}

.cdc-news-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}

.cdc-news-card-date {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.cdc-news-card-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cdc-news-card-title {
    font-size: 24px;
  }
}

.cdc-news-card:hover .cdc-news-card-title {
  color: var(--brand);
}

.cdc-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.cdc-news-card-link svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  transition: transform 0.2s;
}

.cdc-news-card:hover .cdc-news-card-link svg {
  transform: translateX(4px);
}

/* ==================== FINAL CTA (DONATION) ==================== */
.cdc-final-cta {
  background: var(--brand);
  color: white;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cdc-final-cta {
    padding: 160px 0;
  }
}

.cdc-cta-deco-1 {
  position: absolute;
  top: -96px;
  right: -96px;
  height: 384px;
  width: 384px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
}

.cdc-cta-deco-2 {
  position: absolute;
  bottom: -128px;
  left: -80px;
  height: 384px;
  width: 384px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.05);
}

.cdc-final-cta .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

@media (min-width: 768px) {
  .cdc-final-cta .cdc-container {
    padding: 0 40px;
  }
}

.cdc-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cdc-cta-grid {
    grid-template-columns: 6fr 6fr;
    gap: 80px;
  }
}

.cdc-cta-left svg {
  width: 48px;
  height: 48px;
  fill: white;
  color: white;
  margin-bottom: 32px;
}

.cdc-cta-left h2 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) {
  .cdc-cta-left h2 {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .cdc-cta-left h2 {
    font-size: 72px;
  }
}

.cdc-cta-left p {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.625;
  max-width: 448px;
  line-height: 1.625;
}

.cdc-cta-right {
  background: white;
  border-radius: 24px;
  padding: 32px;
  color: var(--ink);
}

@media (min-width: 768px) {
  .cdc-cta-right {
    padding: 40px;
  }
}

.cdc-cta-toggle {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: var(--paper-2);
  border-radius: 9999px;
  margin-bottom: 32px;
}

.cdc-cta-toggle-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.2s;
  color: var(--ink-soft);
}

.cdc-cta-toggle-btn.active {
  background: var(--brand);
  color: white;
}

.cdc-cta-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cdc-cta-amounts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cdc-cta-amount {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
}

.cdc-cta-amount:hover {
  border-color: #a1a1aa;
}

.cdc-cta-amount.selected {
  border-color: var(--brand);
  background: rgba(214,40,40,0.05);
  color: var(--brand);
}

.cdc-cta-submit {
  width: 100%;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 20px;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}

.cdc-cta-submit:hover {
  background: var(--brand-dark);
}

.cdc-cta-subtext {
  text-align: center;
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 16px;
}

/* ==================== DONATE PAGE ==================== */
.cdc-donate-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
  padding: 64px 0 96px;
}
@media (max-width: 960px) {
  .cdc-donate-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 36px;
    padding: 48px 0 64px;
  }
}
.cdc-donate-lead {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 32px;
}
.cdc-donate-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .cdc-donate-impact { grid-template-columns: repeat(2, 1fr); }
}
.cdc-donate-impact-item {
  background: white;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.cdc-donate-impact-num {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.cdc-donate-impact-num sup { font-size: 16px; top: -10px; }
.cdc-donate-impact-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.cdc-donate-alloc {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.cdc-donate-alloc-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.cdc-donate-alloc-sub {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.cdc-donate-alloc-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cdc-donate-alloc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cdc-donate-alloc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cdc-donate-alloc-info { flex: 1; }
.cdc-donate-alloc-name {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cdc-donate-alloc-bar {
  margin-top: 5px;
  height: 6px;
  background: var(--paper-2);
  border-radius: 3px;
  overflow: hidden;
}
.cdc-donate-alloc-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--brand);
}
.cdc-donate-alloc-pct {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  min-width: 38px;
  text-align: right;
}
.cdc-donate-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 0;
}
.cdc-donate-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
}

/* Donation card */
.cdc-donate-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cdc-donate-card-head {
  background: var(--paper-2);
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.cdc-donate-card-head h2 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  margin: 0;
}
.cdc-donate-card-head p {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 3px 0 0;
}
.cdc-donate-card-body {
  padding: 24px 28px 32px;
}
@media (max-width: 640px) {
  .cdc-donate-card-head { padding: 20px; }
  .cdc-donate-card-body { padding: 20px 20px 28px; }
  .cdc-donate-alloc { padding: 20px 16px; }
  .cdc-donate-alloc-icon { display: none; }
}

/* Amount buttons reuse .cdc-cta-amount from homepage CTA */
.cdc-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

/* Custom amount input */
.cdc-donate-custom input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.2s;
  outline: none;
  background: white;
  color: var(--ink);
  box-sizing: border-box;
}
.cdc-donate-custom input:focus { border-color: var(--brand); }
.cdc-donate-custom input::placeholder { color: #a1a1aa; font-weight: 400; font-size: 14px; }

/* Recurring toggle */
.cdc-donate-recurring {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 12px;
  cursor: pointer;
}
.cdc-donate-recurring input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}
.cdc-donate-recurring-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cdc-donate-recurring-text small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 1px;
}

/* Cause badge */
.cdc-donate-cause-badge {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cdc-donate-cause-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #166534;
}
.cdc-donate-cause-name {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 2px 0 0;
}

/* Submit button */
.cdc-donate-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.cdc-donate-submit:hover { background: var(--brand-dark); }
.cdc-donate-submit:active { transform: scale(0.98); }
.cdc-donate-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Spinner */
.cdc-donate-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cdc-spin 0.6s linear infinite;
}
.cdc-donate-submit.loading .cdc-donate-spinner { display: inline-block; }
.cdc-donate-submit.loading .btn-text { display: none; }
@keyframes cdc-spin { to { transform: rotate(360deg); } }

/* Error message */
.cdc-donate-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.cdc-donate-error.show { display: block; }

/* ==================== FOOTER ==================== */
.cdc-footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 40px;
}

.cdc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-footer-inner {
    padding: 0 40px;
  }
}

.cdc-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .cdc-footer-top {
    grid-template-columns: 5fr 3fr 4fr;
  }
}

.cdc-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cdc-footer-heart {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.cdc-footer-wordmark {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  display: block;
}

.cdc-footer-tagline {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.cdc-footer-desc {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.625;
  max-width: 384px;
}

.cdc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.cdc-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.cdc-footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.cdc-footer-social a svg {
  width: 20px;
  height: 20px;
}

.cdc-footer-nav-title {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 600;
}

.cdc-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cdc-footer-nav a {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.cdc-footer-nav a:hover {
  color: white;
}

.cdc-footer-contact p {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.7);
}

.cdc-footer-donate {
  display: inline-flex;
  margin-top: 24px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s;
}

.cdc-footer-donate:hover {
  background: var(--brand-dark);
}

.cdc-footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
}

@media (min-width: 768px) {
  .cdc-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cdc-footer-legal {
  display: flex;
  gap: 24px;
}

.cdc-footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.cdc-footer-legal a:hover {
  color: white;
}

/* Footer HTML class aliases */
.cdc-footer .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .cdc-footer .cdc-container {
    padding: 0 40px;
  }
}

.cdc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .cdc-footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}

.cdc-footer-col-title {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 600;
}

.cdc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.cdc-footer-links a {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.cdc-footer-links a:hover {
  color: white;
}

.cdc-footer-bottom > div:last-child {
  display: flex;
  gap: 24px;
}

.cdc-footer-bottom > div:last-child a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.cdc-footer-bottom > div:last-child a:hover {
  color: white;
}

/* ==================== CAUSES PAGE ==================== */
.cdc-causes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .cdc-causes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    padding: 112px 40px;
  }
}

.cdc-cause-card {
  display: flex;
  flex-direction: column;
}

.cdc-cause-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
}

.cdc-cause-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-cause-card:hover .cdc-cause-card-image img {
  transform: scale(1.05);
}

.cdc-cause-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}

.cdc-cause-card-title {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--ink);
}

@media (min-width: 768px) {
  .cdc-cause-card-title {
    font-size: 30px;
  }
}

.cdc-cause-card-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.625;
}

.cdc-cause-progress-wrap {
  margin-top: 24px;
}

.cdc-cause-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.cdc-cause-progress-amount {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.cdc-cause-progress-goal {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}

.cdc-cause-progress-bar {
  height: 8px;
  width: 100%;
  border-radius: 9999px;
  background: var(--border);
  overflow: hidden;
}

.cdc-cause-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--brand);
}

.cdc-cause-progress-days {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 8px;
}

.cdc-cause-btn {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s;
}

.cdc-cause-btn:hover {
  background: var(--brand);
}

.cdc-cause-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.cdc-cause-btn:hover svg {
  transform: translateX(4px);
}

/* ==================== EVENTS PAGE ==================== */
.cdc-events-list {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .cdc-events-list {
    padding: 112px 40px;
  }
}

.cdc-event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  padding: 20px;
  transition: border-color 0.2s;
}

@media (min-width: 768px) {
  .cdc-event-card {
    grid-template-columns: 3fr 2fr 5fr 2fr;
    padding: 24px;
  }
}

.cdc-event-card:hover {
  border-color: var(--brand);
}

.cdc-event-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
}

.cdc-event-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-event-card:hover .cdc-event-card-image img {
  transform: scale(1.05);
}

.cdc-event-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .cdc-event-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.cdc-event-day {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--ink);
  line-height: 1;
}

@media (min-width: 768px) {
  .cdc-event-day {
    font-size: 60px;
  }
}

.cdc-event-month {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.cdc-event-info-time {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  font-weight: 700;
}

.cdc-event-info-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .cdc-event-info-title {
    font-size: 30px;
  }
}

.cdc-event-info-loc {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cdc-event-info-loc svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.cdc-event-info-desc {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

.cdc-event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s;
  justify-self: start;
}

@media (min-width: 768px) {
  .cdc-event-btn {
    justify-self: end;
  }
}

.cdc-event-btn:hover {
  background: var(--brand-dark);
}

.cdc-event-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.cdc-event-btn:hover svg {
  transform: translateX(4px);
}

/* ==================== BLOG PAGE ==================== */
.cdc-blog-wrap {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .cdc-blog-wrap {
    padding: 112px 40px;
  }
}

.cdc-blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  cursor: pointer;
  margin-bottom: 96px;
}

@media (min-width: 1024px) {
  .cdc-blog-featured {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.cdc-blog-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}

.cdc-blog-featured-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-blog-featured:hover .cdc-blog-featured-image img {
  transform: scale(1.05);
}

.cdc-blog-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}

.cdc-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.cdc-blog-meta-cat {
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.cdc-blog-meta-sep {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cdc-blog-meta-sep svg {
  width: 14px;
  height: 14px;
}

.cdc-blog-featured-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cdc-blog-featured-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .cdc-blog-featured-title {
    font-size: 48px;
  }
}

.cdc-blog-featured:hover .cdc-blog-featured-title {
  color: var(--brand);
}

.cdc-blog-featured-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 1.625;
}

.cdc-blog-featured-author {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 24px;
}

.cdc-blog-featured-author strong {
  color: var(--ink);
}

.cdc-blog-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .cdc-blog-feed {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .cdc-blog-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdc-blog-card {
  cursor: pointer;
}

.cdc-blog-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}

.cdc-blog-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-blog-card:hover .cdc-blog-card-image img {
  transform: scale(1.05);
}

.cdc-blog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}

.cdc-blog-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cdc-blog-card-title {
    font-size: 24px;
  }
}

.cdc-blog-card:hover .cdc-blog-card-title {
  color: var(--brand);
}

.cdc-blog-card-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cdc-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.cdc-blog-card-link svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  transition: transform 0.2s;
}

.cdc-blog-card:hover .cdc-blog-card-link svg {
  transform: translateX(4px);
}

/* ==================== BOUTIQUE PAGE ==================== */
.cdc-boutique-wrap {
  background: var(--paper);
  padding: 80px 20px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .cdc-boutique-wrap {
    padding: 112px 40px;
  }
}

.cdc-boutique-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.cdc-boutique-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.cdc-boutique-count {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
}

.cdc-interior-content .cdc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .cdc-interior-content .cdc-container {
    padding: 0 40px;
  }
}

.cdc-boutique-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.cdc-boutique-cart svg {
  width: 20px;
  height: 20px;
}

.cdc-boutique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .cdc-boutique-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.cdc-product-card {
  cursor: pointer;
}

.cdc-product-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  background: var(--paper-2);
}

.cdc-product-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.cdc-product-card:hover .cdc-product-card-image img {
  transform: scale(1.05);
}

.cdc-product-card-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.cdc-product-card:hover .cdc-product-card-add {
  opacity: 1;
  transform: translateY(0);
}

.cdc-product-card-add:hover {
  background: var(--brand);
  color: white;
}

.cdc-product-card-add svg {
  width: 20px;
  height: 20px;
}

.cdc-product-card-cat {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  font-weight: 700;
}

.cdc-product-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .cdc-product-card-title {
    font-size: 20px;
  }
}

.cdc-product-card-price {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 18px;
  margin-top: 4px;
}

/* ==================== A PROPOS PAGE ==================== */
.cdc-apropos-section {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .cdc-apropos-section {
    padding: 112px 40px;
  }
}

.cdc-apropos-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .cdc-apropos-mission {
    grid-template-columns: 5fr 7fr;
  }
}

.cdc-apropos-mission-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.625;
}

.cdc-apropos-mission-text p {
  margin-bottom: 20px;
}

.cdc-apropos-mission-text p:last-child {
  margin-bottom: 0;
}

.cdc-apropos-stats {
  background: var(--ink);
  color: white;
  padding: 64px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 20px;
}

@media (min-width: 768px) {
  .cdc-apropos-stats {
    padding: 80px 40px;
  }
}

.cdc-apropos-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .cdc-apropos-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdc-apropos-stat-number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -0.05em;
  color: var(--brand);
}

@media (min-width: 768px) {
  .cdc-apropos-stat-number {
    font-size: 80px;
  }
}

.cdc-apropos-stat-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 260px;
}

.cdc-apropos-valeurs {
  background: var(--paper-2);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .cdc-apropos-valeurs {
    padding: 112px 40px;
  }
}

.cdc-apropos-valeurs-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .cdc-apropos-valeurs-title {
    font-size: 36px;
  }
}

.cdc-valeurs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .cdc-valeurs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdc-valeur-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.cdc-valeur-card-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--brand);
}

.cdc-valeur-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-top: 16px;
}

.cdc-valeur-card-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
}

.cdc-apropos-team {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .cdc-apropos-team {
    padding: 112px 40px;
  }
}

.cdc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .cdc-team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.cdc-team-card {
  cursor: pointer;
}

.cdc-team-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: var(--paper-2);
}

.cdc-team-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s, transform 0.7s;
}

.cdc-team-card:hover .cdc-team-card-image img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.cdc-team-card-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.cdc-team-card-role {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==================== CONTACT PAGE ==================== */
.cdc-contact-wrap {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .cdc-contact-wrap {
    padding: 112px 40px;
  }
}

@media (min-width: 1024px) {
  .cdc-contact-wrap {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

.cdc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cdc-contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .cdc-contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cdc-contact-form label {
  display: block;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.cdc-contact-form input,
.cdc-contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  background: white;
  padding: 14px 16px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}

.cdc-contact-form input::placeholder,
.cdc-contact-form textarea::placeholder {
  color: #a1a1aa;
}

.cdc-contact-form input:focus,
.cdc-contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(214,40,40,0.15);
}

.cdc-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.cdc-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 9999px;
  transition: background 0.2s;
  align-self: flex-start;
}

.cdc-contact-submit:hover {
  background: var(--brand-dark);
}

.cdc-contact-submit:active {
  transform: scale(0.98);
}

.cdc-contact-submit svg {
  width: 16px;
  height: 16px;
}

.cdc-contact-info {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 32px;
}

@media (min-width: 768px) {
  .cdc-contact-info {
    padding: 40px;
  }
}

.cdc-contact-info-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 32px;
}

.cdc-contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cdc-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cdc-contact-info-item svg {
  width: 20px;
  height: 20px;
}

.cdc-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdc-contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.cdc-contact-info-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.cdc-contact-info-value {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: white;
  margin-top: 4px;
}

.cdc-contact-info-note {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.cdc-reveal {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s, translate 0.8s;
}

.cdc-reveal.revealed {
  opacity: 1;
  translate: 0 0;
}

/* ==================== LOGIN MODAL ==================== */
.crsd-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.crsd-modal.active {
  display: flex;
}

.crsd-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.crsd-modal-dialog {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  margin: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.crsd-modal-body {
  padding: 32px;
}

.crsd-modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.crsd-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.crsd-modal-icon {
  color: var(--brand);
  margin-bottom: 16px;
}

.crsd-modal-badge {
  display: inline-block;
  background: rgba(214,40,40,0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 9999px;
}

.crsd-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  transition: background 0.2s;
}

.crsd-modal-close:hover {
  background: var(--paper-2);
}

.crsd-login-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--ink);
}

.crsd-login-form input:focus {
  border-color: var(--brand);
  outline: none;
}

.crsd-login-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 0.2s;
}

.crsd-login-submit:hover {
  background: var(--brand-dark);
}

.crsd-login-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 14px;
}

.crsd-login-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.crsd-login-links a:hover {
  color: var(--brand);
}


/* ==================== PRODUCT MODAL ==================== */
.cdc-product-modal {
  display: none;
}

.cdc-product-modal-inner {
  background: white;
  border-radius: 24px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cdc-product-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
}

.cdc-product-modal-image {
  aspect-ratio: 1;
  background: #f4f4f5;
  border-radius: 16px;
  overflow: hidden;
}

.cdc-product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdc-product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.cdc-product-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  margin-top: auto;
  text-decoration: none;
  transition: background 0.2s;
}

.cdc-product-modal-btn:hover {
  background: var(--brand-dark);
}

@media (max-width: 767px) {
  .cdc-product-modal-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .cdc-product-modal-inner {
    width: 95%;
    max-height: 95vh;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767px) {
  .cdc-hero-title {
    font-size: 36px;
  }
  .cdc-hero-content {
    padding: 0 16px 64px;
  }
  .cdc-impact,
  .cdc-video-story,
  .cdc-manifesto,
  .cdc-news {
    padding: 64px 0;
  }
  .cdc-transparency {
    padding: 64px 0;
  }
  .cdc-final-cta {
    padding: 80px 0;
  }
  .cdc-impact-title {
    font-size: 28px;
  }
  .cdc-stat-number {
    font-size: 60px;
  }
  .cdc-manifesto-num {
    font-size: 28px;
  }
  .cdc-manifesto-title {
    font-size: 20px;
  }
  .cdc-video-quote {
    font-size: 24px;
  }
  .cdc-page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .cdc-page-hero-title {
    font-size: 36px;
  }
  .cdc-cta-left h2 {
    font-size: 36px;
  }
  .cdc-causes-grid,
  .cdc-events-list,
  .cdc-blog-wrap,
  .cdc-boutique-wrap,
  .cdc-apropos-section,
  .cdc-contact-wrap {
    padding: 60px 16px;
  }
  .cdc-footer-top {
    gap: 40px;
  }
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.cdc-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.cdc-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
  max-width: 360px;
}

.cdc-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.cdc-toast-success {
  background: #16a34a;
}

.cdc-toast-error {
  background: var(--brand);
}

.cdc-toast-icon {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.cdc-toast-message {
  line-height: 1.4;
}

/* ==================== VIDEO MODAL ==================== */
.cdc-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
}

.cdc-video-modal.open {
  display: flex;
}

.cdc-video-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.cdc-video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2001;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.cdc-video-modal-close:hover {
  background: var(--paper-2);
}

.cdc-video-modal-close svg {
  width: 20px;
  height: 20px;
}

.cdc-video-modal-content {
  position: relative;
  z-index: 2001;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
}

.cdc-video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== CART COUNTER ==================== */
.cdc-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ==================== FORM VALIDATION ==================== */
.cdc-contact-form input.error,
.cdc-contact-form textarea.error {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(214,40,40,0.15);
}

.cdc-field-error {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

/* ==================== MARQUEE ANIMATION ==================== */
.cdc-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

/* ==================== TEAM GRAYSCALE HOVER ==================== */
.cdc-team-card-image img {
  filter: grayscale(1);
  transition: filter 0.7s, transform 0.7s;
}

.cdc-team-card:hover .cdc-team-card-image img {
  filter: grayscale(0);
}

/* ==================== NEWS CARD HOVER ==================== */
.cdc-news-card-image img {
  transition: transform 0.7s;
}

/* ==================== CAUSE CARD HOVER ==================== */
.cdc-cause-card-image img {
  transition: transform 0.7s;
}

/* ==================== EVENT CARD HOVER ==================== */
.cdc-event-card-image img {
  transition: transform 0.7s;
}

/* ==================== BLOG CARD HOVER ==================== */
.cdc-blog-featured-image img,
.cdc-blog-card-image img {
  transition: transform 0.7s;
}

/* ==================== PRODUCT CARD HOVER ==================== */
.cdc-product-card-image img {
  transition: transform 0.7s;
}

.cdc-product-card-add {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

/* ==================== DONATION FREQUENCY BUTTONS ==================== */
.cdc-freq-btn {
  flex: 1;
  padding: 12px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  color: var(--ink-soft);
  cursor: pointer;
}

.cdc-freq-btn.active {
  background: var(--brand);
  color: white;
}

.cdc-amount-btn {
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.cdc-amount-btn:hover {
  border-color: #a1a1aa;
}

.cdc-amount-btn.selected {
  border-color: var(--brand);
  background: rgba(214,40,40,0.05);
  color: var(--brand);
}

/* ==================== HERO PARALLAX ==================== */
.cdc-hero-slide img {
  will-change: transform;
  transition: transform 0.1s linear;
}.cdc-marquee { overflow: hidden; } .cdc-marquee-track { display: flex; align-items: center; white-space: nowrap; }

/* ==================== COOKIE BANNER ==================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  display: none;
}

#cookie-banner[aria-hidden="false"] {
  display: block;
}

.cookie-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--brand);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--brand-dark);
}

.cookie-btn-refuse {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

.cookie-btn-refuse:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ==================== CSS CLASS ALIASES (blog.php compatibility) ==================== */

/* Cause page aliases */
.cdc-cause-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}
.cdc-cause-amount {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.cdc-cause-goal {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}
.cdc-cause-donate {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s;
}
.cdc-cause-donate:hover {
  background: var(--brand);
}
.cdc-cause-donate svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.cdc-cause-donate:hover svg {
  transform: translateX(4px);
}

/* Blog page aliases */
.cdc-blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 9999px;
}
.cdc-blog-excerpt {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 1.625;
}
.cdc-blog-author {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 24px;
}
.cdc-blog-author strong {
  color: var(--ink);
}
.cdc-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.cdc-blog-read-more svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  transition: transform 0.2s;
}
.cdc-blog-read-more:hover svg {
  transform: translateX(4px);
}
.cdc-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .cdc-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .cdc-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cdc-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.cdc-blog-card-excerpt {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Boutique page aliases */
.cdc-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .cdc-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.cdc-product-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cdc-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  background: var(--paper-2);
}
.cdc-product-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.cdc-product-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.cdc-product-add:hover {
  background: var(--brand);
  color: white;
}
.cdc-product-add svg {
  width: 20px;
  height: 20px;
}
.cdc-product-cat {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  font-weight: 700;
}
.cdc-product-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.375;
}
@media (min-width: 768px) {
  .cdc-product-name {
    font-size: 20px;
  }
}
.cdc-product-price {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 18px;
  margin-top: 4px;
}
.cdc-product-card:hover .cdc-product-image img {
  transform: scale(1.05);
}
.cdc-product-card:hover .cdc-product-add {
  opacity: 1;
  transform: translateY(0);
}

/* A propos page */
.cdc-stats-band {
  background: var(--ink);
  padding: 80px 0;
  margin-bottom: 80px;
  border-radius: 24px;
}
.cdc-value-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.cdc-value-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--brand);
}
.cdc-team-member {
  cursor: pointer;
}
.cdc-team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: var(--paper-2);
}
.cdc-team-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s, transform 0.7s;
}
.cdc-team-member:hover .cdc-team-photo img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Contact page aliases */
.cdc-contact-grid {
  background: var(--paper);
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .cdc-contact-grid {
    padding: 112px 40px;
  }
}
@media (min-width: 1024px) {
  .cdc-contact-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}
.cdc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cdc-form-group label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cdc-form-group input,
.cdc-form-group textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  padding: 14px 16px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.cdc-form-group input:focus,
.cdc-form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(214,40,40,0.15);
}
.cdc-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 9999px;
  transition: background 0.2s;
  align-self: flex-start;
  cursor: pointer;
}
.cdc-form-submit:hover {
  background: var(--brand-dark);
}
.cdc-form-submit svg {
  width: 16px;
  height: 16px;
}
.cdc-contact-info-box {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 32px;
}
@media (min-width: 768px) {
  .cdc-contact-info-box {
    padding: 40px;
  }
}
.cdc-contact-hours {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.625;
  margin-top: 24px;
}

/* Event page aliases */
.cdc-event-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
}
.cdc-event-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.cdc-event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cdc-event-type {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-weight: 700;
}
.cdc-event-location {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cdc-event-location svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.cdc-event-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s;
  justify-self: start;
}
.cdc-event-register:hover {
  background: var(--brand-dark);
}
.cdc-event-register svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.cdc-event-register:hover svg {
  transform: translateX(4px);
}

/* A-propos mission children */
.cdc-apropos-mission-left h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 24px;
}
.cdc-apropos-mission-right {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.cdc-apropos-mission-right p + p {
  margin-top: 20px;
}

/* Values grid */
.cdc-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .cdc-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cdc-valeur-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e4e4e7;
}
.cdc-valeur-card-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--brand);
}
.cdc-valeur-card-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-top: 16px;
}
.cdc-valeur-card-text {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.625;
}

/* Team grid */
.cdc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .cdc-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cdc-team-card {
  cursor: default;
}
.cdc-team-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  background: #f4f4f5;
  margin-bottom: 16px;
}
.cdc-team-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.7s;
}
.cdc-team-card:hover .cdc-team-card-image img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.cdc-team-card-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.cdc-team-card-role {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Section title */
.cdc-section-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}

/* Contact grid */
.cdc-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .cdc-contact-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

/* Contact form fields */
.cdc-form-field {
  margin-bottom: 20px;
}
.cdc-form-label {
  display: block;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cdc-form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  background: white;
  padding: 14px 16px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cdc-form-input::placeholder {
  color: #a1a1aa;
}
.cdc-form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.15);
}
.cdc-form-input.error {
  border-color: var(--brand);
}
.cdc-form-textarea {
  resize: none;
}
.cdc-contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .cdc-contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.cdc-contact-info-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 32px;
}
.cdc-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cdc-field-error {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--brand);
  margin-top: 6px;
  display: block;
}

/* ==================== JEVENTS OVERRIDE ==================== */
.cdc-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .cdc-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cdc-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdc-event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.cdc-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cdc-event-date {
  background: var(--ink);
  color: white;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.cdc-event-day {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cdc-event-month {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.cdc-event-year {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

.cdc-event-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cdc-event-category {
  display: inline-block;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 9999px;
  align-self: flex-start;
}

.cdc-event-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.cdc-event-title a {
  color: inherit;
  text-decoration: none;
}

.cdc-event-title a:hover {
  color: var(--brand);
}

.cdc-event-time,
.cdc-event-location {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.cdc-event-desc {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.cdc-event-link {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  transition: gap 0.2s;
}

.cdc-event-link:hover {
  gap: 10px;
}

.cdc-events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 18px;
}

.cdc-events-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.cdc-pagination-prev,
.cdc-pagination-next {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.cdc-pagination-prev:hover,
.cdc-pagination-next:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.cdc-pagination-pages {
  display: flex;
  gap: 4px;
}

.cdc-pagination-page {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cdc-pagination-page:hover {
  background: var(--surface);
  color: var(--ink);
}

.cdc-pagination-page.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* Override JEvents default styles */
#eventlist table.eventlist {
  display: none;
}

/* ==================== JEVENT DETAIL PAGE ==================== */
.cdc-event-detail {
  padding: 48px 0 96px;
}

.cdc-event-detail .cdc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cdc-event-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.cdc-event-back:hover {
  color: var(--brand);
}

.cdc-event-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .cdc-event-detail-grid {
    grid-template-columns: 1fr 380px;
    gap: 64px;
  }
}

.cdc-event-detail-main .cdc-event-category {
  display: inline-block;
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.cdc-event-detail-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 24px;
}

.cdc-event-repeat {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.cdc-event-detail-content {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}

.cdc-event-detail-content p {
  margin: 0 0 20px;
}

.cdc-event-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.cdc-event-custom-fields {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cdc-event-info-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.cdc-event-info-card h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 24px;
}

.cdc-event-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cdc-event-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cdc-event-info-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}

.cdc-event-info-label {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin: 0 0 4px;
}

.cdc-event-info-value {
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.cdc-event-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cdc-event-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--ink);
  font-family: 'Satoshi', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.cdc-event-action-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.cdc-event-action-btn:active {
  transform: scale(0.98);
}

/* ===== CAUSES LISTING ===== */
.cdc-causes-page { padding: 120px 0 80px; background: #F4F4F5; }
.cdc-causes-header { text-align: center; margin-bottom: 48px; }
.cdc-causes-header h1 { font-family: 'Cabinet Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.cdc-causes-header h1 span { color: var(--brand); }
.cdc-causes-header p { font-size: 1.125rem; color: #71717a; margin-top: 8px; }
.cdc-causes-stats { display: flex; justify-content: center; gap: 32px; margin-top: 24px; }
.cdc-causes-stats div { font-size: 0.875rem; color: #71717a; }
.cdc-causes-stats strong { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.cdc-causes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .cdc-causes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cdc-causes-grid { grid-template-columns: 1fr; } }
.cdc-cause-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e4e4e7; transition: transform 0.2s, box-shadow 0.2s; }
.cdc-cause-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.cdc-cause-card-img { aspect-ratio: 16/10; overflow: hidden; }
.cdc-cause-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cdc-cause-card-body { padding: 20px; }
.cdc-cause-card-body h3 { font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.cdc-cause-card-body p { font-size: 0.875rem; color: #71717a; line-height: 1.5; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cdc-cause-bar { height: 6px; background: #e4e4e7; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.cdc-cause-bar-fill { height: 100%; background: var(--brand); border-radius: 3px; transition: width 1s ease; }
.cdc-cause-bar-text { font-size: 0.8125rem; color: #71717a; margin-bottom: 16px; }
.cdc-cause-bar-text strong { color: var(--ink); font-weight: 600; }
.cdc-cause-card-actions { display: flex; gap: 8px; }
.cdc-cause-btn-primary { flex: 1; text-align: center; padding: 10px; background: var(--brand); color: #fff; border-radius: 10px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.cdc-cause-btn-primary:hover { background: #b82020; }
.cdc-cause-btn-secondary { flex: 1; text-align: center; padding: 10px; background: #f4f4f5; color: var(--ink); border-radius: 10px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.cdc-cause-btn-secondary:hover { background: #e4e4e7; }

/* ===== CAUSE DETAIL ===== */
.cdc-cause-hero { position: relative; height: 400px; overflow: hidden; }
.cdc-cause-hero img { width: 100%; height: 100%; object-fit: cover; }
.cdc-cause-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.cdc-cause-hero-overlay h1 { font-family: 'Cabinet Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cdc-cause-donate-btn { display: inline-block; padding: 12px 28px; background: var(--brand); color: #fff; border-radius: 10px; font-weight: 600; text-decoration: none; transition: background 0.2s; width: fit-content; }
.cdc-cause-donate-btn:hover { background: #b82020; }
.cdc-cause-info { max-width: 800px; margin: 40px auto; }
.cdc-cause-description { font-size: 1rem; line-height: 1.7; color: #52525b; margin: 24px 0; }
.cdc-cause-objective { background: #f4f4f5; border-radius: 12px; padding: 24px; margin: 24px 0; }
.cdc-cause-objective h3 { font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.cdc-cause-objective p { font-size: 0.9375rem; color: #52525b; line-height: 1.6; }
.cdc-cause-meta { font-size: 0.8125rem; color: #a1a1aa; margin-top: 16px; }

/* ===== CAUSE DONATION ===== */
.cdc-cause-don-section { max-width: 480px; margin: 48px auto; background: #fff; border-radius: 20px; padding: 32px; border: 1px solid #e4e4e7; }
.cdc-cause-don-section h2 { font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; text-align: center; }
.cdc-cause-don-amounts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.cdc-cause-don-amount { padding: 16px; border: 2px solid #e4e4e7; border-radius: 12px; background: #fff; font-size: 1.125rem; font-weight: 700; cursor: pointer; transition: all 0.2s; color: var(--ink); font-family: inherit; }
.cdc-cause-don-amount:hover { border-color: var(--brand); color: var(--brand); }
.cdc-cause-don-amount.selected { border-color: var(--brand); background: #fef2f2; color: var(--brand); }
.cdc-cause-don-custom { margin-bottom: 16px; }
.cdc-cause-don-custom input { width: 100%; padding: 14px 16px; border: 2px solid #e4e4e7; border-radius: 12px; font-size: 1rem; text-align: center; transition: border-color 0.2s; outline: none; font-family: inherit; }
.cdc-cause-don-custom input:focus { border-color: var(--brand); }
.cdc-cause-don-method { display: flex; gap: 8px; margin-bottom: 16px; }
.cdc-cause-don-method-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 2px solid #e4e4e7; border-radius: 10px; background: #fff; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; color: #71717a; }
.cdc-cause-don-method-btn.active { border-color: var(--brand); background: #fef2f2; color: var(--brand); }
.cdc-cause-don-submit { width: 100%; padding: 16px; background: var(--brand); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.cdc-cause-don-submit:hover { background: #b82020; }
.cdc-cause-don-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.cdc-cause-don-legal { text-align: center; font-size: 0.75rem; color: #a1a1aa; margin-top: 12px; }

/* ===== CAUSE SHARE ===== */
.cdc-cause-share { max-width: 480px; margin: 48px auto; text-align: center; }
.cdc-cause-share h3 { font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 16px; }
.cdc-cause-share-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cdc-cause-share-btns a { padding: 10px 20px; background: #f4f4f5; color: var(--ink); border-radius: 10px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.cdc-cause-share-btns a:hover { background: var(--brand); color: #fff; }
