/* ============================================================
   Cross Culture — Corporate overlay
   Restrained palette, structured grid, refined typography.
   Loaded AFTER css/custom.css so these rules win on specificity ties.
   ============================================================ */

:root {
  /* Palette — drawn from the logo: warm charcoal + warm beige/taupe */
  --cc-primary:        #3A3A37;
  --cc-primary-2:      #4A4A46;
  --cc-primary-3:      #5C5B56;
  --cc-graphite:       #2A2A27;
  --cc-ink:            #1A1A18;
  --cc-mute:           #6A6963;
  --cc-line:           #E5E2DC;
  --cc-line-soft:      #EFEDE7;
  --cc-paper:          #FFFFFF;
  --cc-stone:          #F4F1EA;
  --cc-cream:          #FAF6EC;
  --cc-accent:         #A99576;     /* warm beige/taupe — pulled from the logo's right panel */
  --cc-accent-soft:    #E5DAC4;
  --cc-success:        #5C7A4A;
  --cc-error:          #B73B3B;

  /* Spatial / shape — soft rounded corporate edges */
  --cc-radius:         14px;
  --cc-radius-sm:      8px;
  --cc-radius-lg:      22px;
  --cc-radius-pill:    999px;
  --cc-shadow-1:       0 1px 2px rgba(15,30,25,0.06), 0 1px 1px rgba(15,30,25,0.04);
  --cc-shadow-2:       0 4px 12px -2px rgba(15,30,25,0.08), 0 2px 4px rgba(15,30,25,0.04);
  --cc-shadow-3:       0 12px 32px -8px rgba(15,30,25,0.12);

  --cc-container:      1400px;
  --cc-gutter:         32px;
  --cc-section-y:      clamp(64px, 8vw, 110px);
}

.container, .container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  max-width: var(--cc-container);
  padding-left: var(--cc-gutter);
  padding-right: var(--cc-gutter);
}
@media (max-width: 768px) { :root { --cc-gutter: 20px; } }
@media (max-width: 480px) { :root { --cc-gutter: 16px; } }

/* ---------------- Base ---------------- */
body { background: var(--cc-paper); color: var(--cc-ink); font-size: 15px; }
.container { max-width: var(--cc-container); }

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

/* Bolder, more confident heading scale */
h1, h2, h3, h4, h5, h6 { color: var(--cc-ink); letter-spacing: -0.018em; font-weight: 700; }
h1 { font-size: clamp(38px, 5.4vw, 72px); line-height: 1.02; font-weight: 700; }
h2 { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.1; font-weight: 700; }
h3 { font-size: clamp(20px, 1.9vw, 26px); line-height: 1.25; font-weight: 600; }
p  { font-size: 15px; line-height: 1.75; color: var(--cc-mute); }

/* Section eyebrow + headline divider — gives every section a strong opening beat */
.cc-section-head .eyebrow,
.eyebrow {
  position: relative; padding-left: 32px;
}
.cc-section-head .eyebrow::before,
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 1px; background: var(--cc-accent);
}
/* Eyebrow without the leading accent dash — for labels that sit flush left
   (sub-group headings inside a section, split-content labels, etc.) */
.eyebrow--plain,
.cc-section-head .eyebrow--plain { padding-left: 0; }
.eyebrow--plain::before,
.cc-section-head .eyebrow--plain::before { display: none; }
.cc-section-head { text-align: left; margin-left: 0; }
.cc-section-head .eyebrow { display: block; margin-bottom: 16px; }
.cc-section-head h2 { max-width: 18ch; }
.cc-section-head p { margin: 16px 0 0; max-width: 56ch; margin-left: 0; margin-right: 0; }
.cc-section-head--center { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.cc-section-head--center .eyebrow { padding-left: 0; }
.cc-section-head--center .eyebrow::before { display: none; }
.cc-section-head--center h2 { max-width: none; margin-left: auto; margin-right: auto; }
.cc-section-head--center p { margin-left: auto; margin-right: auto; }

/* Buttons: refined, sharper, uppercase tracked-out */
.btn-default,
a.btn-default,
button.btn-default {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px !important;
  border-radius: var(--cc-radius-sm);
  background: var(--cc-paper);
  color: var(--cc-primary);
  border: 1px solid var(--cc-primary);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.18s ease;
  line-height: 1;
  overflow: visible;
}
.btn-default::before { display: none !important; }
.btn-default::after  { display: none !important; }
.btn-default:hover { background: var(--cc-primary); color: #fff; }
.btn-default.btn-highlighted {
  background: var(--cc-primary); color: #fff;
}
.btn-default.btn-highlighted:hover { background: var(--cc-primary-2); border-color: var(--cc-primary-2); }
.dark-section .btn-default { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.dark-section .btn-default:hover { background: #fff; color: var(--cc-primary); border-color: #fff; }
.dark-section .btn-default.btn-highlighted { background: var(--cc-accent); color: var(--cc-primary); border-color: var(--cc-accent); }
.dark-section .btn-default.btn-highlighted:hover { background: #fff; color: var(--cc-primary); border-color: #fff; }

/* ---------------- Scroll progress bar ---------------- */
.cc-scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--cc-accent), #C2AC83);
  z-index: 100; width: 0;
  box-shadow: 0 0 16px rgba(169,149,118,0.5);
  transition: width 0.08s ease-out;
}

/* ---------------- Top bar (above nav) ---------------- */
.cc-topbar {
  background: var(--cc-graphite);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cc-topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 9px; padding-bottom: 9px;
}
.cc-topbar a, .cc-topbar .loc, .cc-topbar .follow {
  color: rgba(255,255,255,0.78); text-decoration: none;
  letter-spacing: 0.02em;
}
.cc-topbar a:hover { color: var(--cc-accent); }
.cc-topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.cc-topbar-right { display: flex; gap: 14px; align-items: center; }
.cc-topbar i.fa-solid { color: var(--cc-accent); margin-right: 6px; }
.cc-topbar-right a:not(.topbar-cta) i { margin-right: 0; }
.cc-topbar-right a:not(.topbar-cta) {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 11px; transition: all 0.15s ease;
}
.cc-topbar-right a:not(.topbar-cta):hover { background: var(--cc-accent); color: var(--cc-primary); border-color: var(--cc-accent); }
.cc-topbar .follow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
.cc-topbar .topbar-cta {
  padding: 6px 12px; background: var(--cc-accent); color: var(--cc-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-left: 6px;
}
.cc-topbar .topbar-cta i { color: var(--cc-primary); }
.cc-topbar .topbar-cta:hover { background: #fff; color: var(--cc-primary); }
@media (max-width: 768px) { .cc-topbar { display: none; } }

/* ---------------- Floating action buttons (call / whatsapp / donate / top) ---------------- */
.cc-fab {
  position: fixed; right: 24px; bottom: 28px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.cc-fab .fab-btn {
  width: 58px; height: 58px;
  border-radius: 50% !important;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cc-primary); color: var(--cc-accent);
  border: 0;
  font-size: 20px;
  cursor: pointer; text-decoration: none;
  box-shadow:
    0 14px 32px -8px rgba(15,30,25,0.45),
    0 4px 10px -2px rgba(15,30,25,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s ease;
}
.cc-fab .fab-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 22px 44px -10px rgba(15,30,25,0.55),
    0 6px 14px -2px rgba(15,30,25,0.2);
}
.cc-fab .fab-btn.whatsapp { background: #25D366; color: #fff; }
.cc-fab .fab-btn.whatsapp:hover { background: #1FB955; }
.cc-fab .fab-btn.donate    { background: #B33A3A; color: #fff; }
.cc-fab .fab-btn.donate:hover { background: #8F2C2C; }
.cc-fab .fab-btn.top       { background: #fff; color: var(--cc-primary); opacity: 0; pointer-events: none; transform: translateY(20px); }
.cc-fab.is-scrolled .fab-btn.top { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cc-fab.is-scrolled .fab-btn.top:hover { transform: translateY(-4px) scale(1.05); background: var(--cc-primary); color: var(--cc-accent); }

/* Pulse ring for WhatsApp — perfect circle, animated outward */
.cc-fab .fab-btn.whatsapp::before,
.cc-fab .fab-btn.whatsapp::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: ccFabPulse 2.4s cubic-bezier(.4,0,.2,1) infinite;
}
.cc-fab .fab-btn.whatsapp::after { animation-delay: 1.2s; }
@keyframes ccFabPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* Heartbeat for Donate */
.cc-fab .fab-btn.donate i { animation: ccBeat 1.8s ease-in-out infinite; }
@keyframes ccBeat { 0%, 100% { transform: scale(1); } 18% { transform: scale(1.18); } 36% { transform: scale(1); } 54% { transform: scale(1.12); } 72% { transform: scale(1); } }

/* Tooltip label — slides out from right on hover */
.cc-fab .fab-btn .lbl {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(12px);
  background: var(--cc-graphite); color: #fff;
  padding: 8px 14px; border-radius: var(--cc-radius-sm);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
  transition: opacity 0.18s ease, transform 0.22s ease;
}
.cc-fab .fab-btn .lbl::after {
  content: ""; position: absolute; top: 50%; right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--cc-graphite);
}
.cc-fab .fab-btn:hover .lbl { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 540px) {
  .cc-fab { right: 14px; bottom: 16px; gap: 10px; }
  .cc-fab .fab-btn { width: 50px; height: 50px; font-size: 17px; }
  .cc-fab .fab-btn .lbl { display: none; }
}

/* ---------------- Header ---------------- */
.main-header { position: relative; z-index: 40; }
.main-header .header-sticky {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--cc-line);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  transition: box-shadow 0.2s ease;
}
.main-header .navbar { padding: 14px 0; }
.main-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.navbar-brand { display: inline-flex; align-items: center; gap: 14px; padding: 0; margin: 0; text-decoration: none; }
.navbar-brand .brand-logo {
  display: block; height: 48px; width: auto;
  object-fit: contain;
}
.navbar-brand .brand-sub {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--cc-mute);
  padding-left: 14px; border-left: 1px solid var(--cc-line);
  line-height: 1.4;
}
@media (max-width: 540px) {
  .navbar-brand .brand-sub { display: none; }
  .navbar-brand .brand-logo { height: 40px; }
}
.nav-menu-wrapper { flex: 1; display: flex; justify-content: center; }
.nav-menu-wrapper #menu {
  display: flex; align-items: center; gap: 4px;
  margin: 0; padding: 0; list-style: none;
}
.nav-menu-wrapper #menu .nav-link {
  position: relative;
  padding: 10px 14px;
  color: var(--cc-ink); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav-menu-wrapper #menu .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--cc-accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.28s cubic-bezier(.6,.2,.2,1);
}
.nav-menu-wrapper #menu .nav-link:hover { color: var(--cc-primary); }
.nav-menu-wrapper #menu .nav-link:hover::after { transform: scaleX(1); }
.nav-menu-wrapper #menu .nav-link.active { color: var(--cc-primary); }
.nav-menu-wrapper #menu .nav-link.active::after { transform: scaleX(1); }
.nav-menu-wrapper #menu .submenu { position: relative; }
.nav-menu-wrapper #menu .submenu > ul {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--cc-line); border-radius: var(--cc-radius);
  padding: 6px; box-shadow: var(--cc-shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s ease;
  list-style: none; margin: 0;
}
.nav-menu-wrapper #menu .submenu:hover > ul {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu-wrapper #menu .submenu > ul .nav-link { display: block; padding: 9px 12px; font-size: 13px; }

.header-btn .btn-default { padding: 11px 18px; }

/* Sticky scroll affordance */
.main-header.is-scrolled .header-sticky { box-shadow: 0 1px 0 var(--cc-line), var(--cc-shadow-2); }

/* Mobile: slicknav fallback */
.navbar-toggle, .responsive-menu { display: none; }
@media (max-width: 992px) {
  .nav-menu-wrapper { display: none; }
  .responsive-menu { display: block; width: 100%; order: 3; position: relative; min-height: 1px; }
  .main-header .container { flex-wrap: wrap; }
  .header-btn .btn-default { padding: 9px 14px; font-size: 11px; }
  .navbar-brand img { height: 32px; }
  .navbar-brand .brand-text { font-size: 15px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-menu-wrapper #menu .nav-link { padding: 9px 10px; font-size: 13px; }
  .header-btn .btn-default { padding: 10px 16px; font-size: 11px; }
}
/* Slicknav corporate skin */
.slicknav_menu { background: transparent; padding: 0; margin: 0; font-size: 14px; }
.slicknav_btn {
  display: flex; align-items: center; gap: 10px;
  margin: 0; padding: 11px 14px;
  background: var(--cc-stone); border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-sm);
  color: var(--cc-primary); text-decoration: none;
  text-shadow: none; box-shadow: none;
  float: none; width: 100%;
}
.slicknav_btn::before {
  content: "Menu"; flex: 1;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--cc-primary);
}
.slicknav_btn .slicknav_menutxt { display: none !important; }
.slicknav_btn .slicknav_icon { float: none; width: 18px; height: 14px; margin: 0; position: relative; }
.slicknav_btn .slicknav_icon-bar {
  background-color: var(--cc-primary) !important;
  box-shadow: none !important;
  height: 2px !important;
  border-radius: 2px;
}
.slicknav_nav {
  background: #fff; border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  margin: 8px 0 6px; padding: 8px 0;
  color: var(--cc-ink);
  box-shadow: var(--cc-shadow-2);
  font-size: 14px;
}
.slicknav_nav a {
  color: var(--cc-ink); padding: 10px 16px; margin: 0;
  font-size: 14px; font-weight: 500;
  border-radius: 0;
}
.slicknav_nav a:hover { background: var(--cc-stone); color: var(--cc-primary); }
.slicknav_nav .slicknav_item a { padding: 0; margin: 0; }
.slicknav_nav .slicknav_arrow { color: var(--cc-mute); font-size: 11px; }
.slicknav_nav ul { margin: 0 0 0 12px; padding-left: 10px; border-left: 1px solid var(--cc-line); }
.slicknav_nav .slicknav_row { margin: 0; padding: 10px 16px; }
.slicknav_nav .slicknav_row:hover { background: var(--cc-stone); color: var(--cc-primary); border-radius: 0; }

/* ---------------- Section helpers ---------------- */
section.cc-section { padding: var(--cc-section-y) 0; position: relative; }
.cc-bg-cream, .cc-bg-stone { position: relative; }
.cc-bg-cream::before, .cc-bg-stone::before {
  content: ""; position: absolute; top: 0; left: var(--cc-gutter); right: var(--cc-gutter);
  height: 1px; background: var(--cc-line);
}
.cc-section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.cc-section-head .eyebrow,
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 600;
  color: var(--cc-accent);
}
.cc-section-head h2 { margin: 12px 0 14px; }
.cc-section-head p { color: var(--cc-mute); font-size: 16px; max-width: 60ch; margin-left: auto; margin-right: auto; }

.cc-bg-cream    { background: var(--cc-cream); }
.cc-bg-stone    { background: var(--cc-stone); }
.cc-bg-primary  { background: var(--cc-primary); color: #fff; }
.cc-bg-primary h1, .cc-bg-primary h2, .cc-bg-primary h3 { color: #fff; }

/* ---------------- Hero — cinematic, multi-layer ---------------- */
.cc-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden; isolation: isolate;
  color: #fff;
  background: var(--cc-graphite);
  border-bottom: 6px solid var(--cc-accent);
  display: flex;
  align-items: flex-end;
}
.cc-hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  filter: brightness(0.78) saturate(1.05);
}
.cc-hero::before {
  /* Strong left-to-right gradient so left text is fully legible */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg, rgba(58,58,55,0.96) 0%, rgba(58,58,55,0.78) 30%, rgba(58,58,55,0.4) 60%, rgba(58,58,55,0.1) 100%),
    linear-gradient(180deg, rgba(58,58,55,0.15) 0%, rgba(58,58,55,0.45) 100%);
}
.cc-hero::after {
  /* subtle film grain */
  content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* Decorative accent strip */
.cc-hero-strip {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(255,255,255,0.08); z-index: 1;
}
.cc-hero-strip::before {
  content: ""; position: absolute; top: 20%; left: -1px; width: 3px; height: 80px;
  background: var(--cc-accent);
}

.cc-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 160px 0 90px;
}
.cc-hero-inner > .container {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 70px;
  align-items: end;
}
.cc-hero-content { position: relative; min-width: 0; }
.cc-hero-side    { position: relative; min-width: 0; }

.cc-hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 0.24em; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.06);
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cc-hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cc-accent);
  box-shadow: 0 0 0 0 rgba(169,149,118,0.6);
  animation: ccDot 2s ease-out infinite;
}
@keyframes ccDot { 0% { box-shadow: 0 0 0 0 rgba(169,149,118,0.5); } 100% { box-shadow: 0 0 0 12px rgba(169,149,118,0); } }

.cc-hero h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 26px 0 22px;
  max-width: 18ch;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.cc-hero h1 em {
  font-style: normal;
  color: var(--cc-accent);
  display: inline-block; position: relative;
}
.cc-hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--cc-accent); opacity: 0.4;
}
.cc-hero p.lead {
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  font-size: 18px; line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.cc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cc-hero-actions .btn-default { padding: 16px 28px !important; font-size: 12px; }

/* Side panel — vertical stat stack */
.cc-hero-side-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 26px 28px;
  position: relative;
}
.cc-hero-side-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 60px; background: var(--cc-accent);
}
.cc-hero-side-card h4 {
  color: var(--cc-accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 18px;
}
.cc-hero-side-card .live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.cc-hero-side-card .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: ccLive 1.6s ease-out infinite;
}
@keyframes ccLive { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); } 100% { box-shadow: 0 0 0 10px rgba(74,222,128,0); } }
.cc-hero-side-stat {
  display: flex; gap: 18px; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cc-hero-side-stat:first-of-type { border-top: 0; padding-top: 0; }
.cc-hero-side-stat .n {
  font-size: clamp(28px, 2.6vw, 34px); font-weight: 700; color: var(--cc-accent);
  line-height: 1; letter-spacing: -0.02em;
  min-width: 100px;
}
.cc-hero-side-stat .l {
  font-size: 12px; color: rgba(255,255,255,0.78); line-height: 1.5;
}

/* Bottom meta row — full-width bottom of hero */
.cc-hero-meta {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 28px;
  grid-column: 1 / -1;
}
.cc-hero-meta .stat {
  padding-right: 24px;
  position: relative;
}
.cc-hero-meta .stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 8px; bottom: 8px;
  width: 1px; background: rgba(255,255,255,0.12);
}
.cc-hero-meta .stat:not(:first-child) { padding-left: 24px; }
.cc-hero-meta .stat h3 {
  color: var(--cc-accent); font-size: clamp(26px, 2.6vw, 38px); margin: 0 0 6px; font-weight: 700;
  letter-spacing: -0.02em;
}
.cc-hero-meta .stat p { color: rgba(255,255,255,0.7); font-size: 12px; margin: 0; line-height: 1.5; }

/* Vertical ticker / SCROLL label on the right edge */
.cc-hero-vertical {
  position: absolute; right: 26px; top: 50%; transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); z-index: 3; font-weight: 600;
  display: flex; gap: 16px; align-items: center;
}
.cc-hero-vertical::before {
  content: ""; width: 36px; height: 1px; background: rgba(255,255,255,0.35);
}

.cc-scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.65); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cc-scroll-cue::after {
  content: ""; display: block; width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--cc-accent), transparent);
  animation: ccCue 2.2s ease-in-out infinite;
}
@keyframes ccCue { 0%, 100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

@media (max-width: 1100px) {
  .cc-hero-inner > .container { grid-template-columns: 1fr; gap: 30px; }
  .cc-hero-side { order: 2; max-width: 460px; }
}
@media (max-width: 991px) {
  .cc-hero { min-height: 86vh; grid-template-columns: 1fr; }
  .cc-hero-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
  .cc-hero-meta .stat:not(:last-child)::after { display: none; }
  .cc-hero-meta .stat:not(:first-child) { padding-left: 0; }
  .cc-hero-vertical { display: none; }
}
@media (max-width: 600px) {
  .cc-hero { min-height: 620px; }
  .cc-hero-inner { padding: 110px 0 70px; }
  .cc-hero-actions .btn-default { flex: 1 1 auto; justify-content: center; }
  .cc-hero p.lead { font-size: 16px; }
}

/* ---------------- Mosaic ---------------- */
.cc-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 96px; gap: 14px;
}
.cc-mosaic .tile {
  position: relative; overflow: hidden;
  border-radius: var(--cc-radius);
  background: var(--cc-stone);
  box-shadow: var(--cc-shadow-1);
}
.cc-mosaic .tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.cc-mosaic .tile:hover img { transform: scale(1.04); }
.cc-mosaic .tile .caption {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  color: #fff; font-size: 12px; font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.cc-mosaic .t-a { grid-column: span 7; grid-row: span 5; }
.cc-mosaic .t-b { grid-column: span 5; grid-row: span 3; }
.cc-mosaic .t-c { grid-column: span 5; grid-row: span 2; }
.cc-mosaic .t-d { grid-column: span 4; grid-row: span 3; }
.cc-mosaic .t-e { grid-column: span 4; grid-row: span 3; }
.cc-mosaic .t-f { grid-column: span 4; grid-row: span 3; }
@media (max-width: 991px) {
  .cc-mosaic { grid-auto-rows: 80px; gap: 10px; }
  .cc-mosaic .t-a { grid-column: span 12; grid-row: span 4; }
  .cc-mosaic .t-b, .cc-mosaic .t-c { grid-column: span 6; grid-row: span 3; }
  .cc-mosaic .t-d, .cc-mosaic .t-e, .cc-mosaic .t-f { grid-column: span 4; grid-row: span 3; }
}
@media (max-width: 600px) {
  .cc-mosaic .tile { grid-column: span 12 !important; grid-row: span 3 !important; }
}

/* ---------------- Program cards ---------------- */
.cc-programs {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px;
}
.cc-program {
  position: relative; overflow: hidden;
  border-radius: var(--cc-radius);
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  box-shadow: var(--cc-shadow-1);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.cc-program:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-3); border-color: transparent; }
.cc-program .img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cc-stone); }
.cc-program .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cc-program:hover .img img { transform: scale(1.04); }
.cc-program .img .badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(3, 53, 44, 0.92); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  padding: 6px 11px; border-radius: 4px; text-transform: uppercase;
}
.cc-program .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cc-program h3 { font-size: 22px; margin: 0 0 10px; color: var(--cc-ink); }
.cc-program p { color: var(--cc-mute); font-size: 14px; line-height: 1.65; }
.cc-program .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cc-primary); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
}
.cc-program .more i { transition: transform 0.25s ease; }
.cc-program .more:hover i { transform: translateX(3px); }

.cc-program.large { grid-column: span 8; }
.cc-program.small { grid-column: span 4; }
.cc-program.large .img { aspect-ratio: 21/9; }
@media (max-width: 991px) {
  .cc-program.large, .cc-program.small { grid-column: span 12; }
  .cc-program.large .img { aspect-ratio: 16/9; }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cc-program h3 { font-size: 20px; }
}

/* ---------------- Story rows ---------------- */
.cc-story {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px;
  align-items: center; margin: 56px 0;
}
.cc-story.reverse .cc-story-media { order: 2; }
.cc-story-media {
  position: relative;
  border-radius: var(--cc-radius);
  overflow: hidden;
  background: var(--cc-stone);
  aspect-ratio: 4/5;
  box-shadow: var(--cc-shadow-2);
}
.cc-story-media img { width: 100%; height: 100%; object-fit: cover; }
.cc-story-media .floater {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(58,58,55,0.95); color: #fff;
  padding: 18px 22px;
  border-radius: 8px;
}
.cc-story-media .floater .num {
  color: var(--cc-accent); font-size: 28px; font-weight: 600; line-height: 1;
}
.cc-story-media .floater p { margin: 6px 0 0; font-size: 12px; opacity: 0.88; line-height: 1.5; color: #fff; }
.cc-story-content h2 { margin: 14px 0 16px; }
.cc-story-content p { font-size: 15px; color: var(--cc-mute); line-height: 1.75; }
.cc-story-content ul.checks { list-style: none; padding: 0; margin: 18px 0 24px; }
.cc-story-content ul.checks li {
  position: relative; padding: 7px 0 7px 30px;
  color: var(--cc-ink); font-size: 14px; line-height: 1.6;
}
.cc-story-content ul.checks li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cc-accent); color: var(--cc-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}
@media (max-width: 991px) {
  .cc-story { grid-template-columns: 1fr; gap: 32px; margin: 40px 0; }
  .cc-story.reverse .cc-story-media { order: 0; }
  .cc-story-media { aspect-ratio: 4/3; }
}

/* ---------------- Impact ---------------- */
.cc-impact {
  background: var(--cc-primary);
  color: #fff;
  padding: var(--cc-section-y) 0;
  border-top: 1px solid var(--cc-line);
  border-bottom: 1px solid var(--cc-line);
}
.cc-impact h2 { color: #fff; text-align: center; margin-bottom: 40px; }
.cc-impact h2 em { font-style: normal; color: var(--cc-accent); }
.cc-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cc-impact-card {
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--cc-radius);
  background: rgba(255,255,255,0.03);
  transition: background 0.2s ease;
}
.cc-impact-card:hover { background: rgba(255,255,255,0.06); }
.cc-impact-card .num {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600; color: var(--cc-accent); line-height: 1;
}
.cc-impact-card .label {
  display: block; margin-top: 10px;
  color: rgba(255,255,255,0.78); font-size: 13px; line-height: 1.55;
}
@media (max-width: 768px) { .cc-impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cc-impact-grid { grid-template-columns: 1fr; } }

/* ---------------- CTA bar ---------------- */
.cc-cta {
  position: relative; overflow: hidden;
  border-radius: var(--cc-radius);
  padding: 64px 48px;
  color: #fff;
  background: linear-gradient(135deg, #3A3A37 0%, #4A4A46 60%, #5C5B56 100%);
  text-align: center;
  border: 1px solid var(--cc-primary-2);
}
.cc-cta h2 { color: #fff; }
.cc-cta h2 em { font-style: normal; color: var(--cc-accent); }
.cc-cta p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 14px auto 24px; font-size: 15px; }
.cc-cta .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) {
  .cc-cta { padding: 44px 24px; }
  .cc-cta .actions { width: 100%; }
  .cc-cta .actions .btn-default { flex: 1 1 auto; justify-content: center; }
}

/* ---------------- Page header ---------------- */
.cc-page-header {
  position: relative;
  min-height: clamp(420px, 60vh, 600px);
  display: flex; align-items: flex-end;
  padding: clamp(96px, 13vh, 140px) 0 clamp(40px, 6vh, 64px);
  color: #fff; overflow: hidden;
  border-bottom: 6px solid var(--cc-accent);
}
.cc-page-header::before {
  /* Stronger, more consistent darkening so text is readable over any hero photo */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(58,58,55,0.92) 0%, rgba(58,58,55,0.72) 42%, rgba(58,58,55,0.42) 100%),
    linear-gradient(180deg, rgba(58,58,55,0.55) 0%, rgba(58,58,55,0.5) 30%, rgba(58,58,55,0.95) 100%);
}
.cc-page-header::after {
  /* subtle grain pattern for depth */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.06; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 3px 3px;
}
.cc-page-header-media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.04);
}
.cc-page-header .container {
  position: relative; z-index: 2; width: 100%;
}
.cc-page-header .eyebrow {
  color: var(--cc-accent);
  font-weight: 700; letter-spacing: 0.18em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.cc-page-header h1 {
  color: #fff; margin-top: clamp(10px, 1.4vw, 18px); max-width: 22ch;
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 700; letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.cc-page-header h1 + p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 60ch;
  margin-top: clamp(10px, 1.2vw, 16px);
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.cc-page-header .crumbs {
  margin-top: clamp(14px, 2vw, 22px);
  color: rgba(255,255,255,0.9);
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.cc-page-header .crumbs a { color: var(--cc-accent); text-decoration: none; }
.cc-page-header .crumbs a:hover { color: #fff; }

@media (max-width: 991px) {
  .cc-page-header {
    min-height: clamp(360px, 54vh, 460px);
    padding: clamp(88px, 14vh, 120px) 0 36px;
    align-items: flex-end;
  }
  .cc-page-header h1 { max-width: 100%; }
  .cc-page-header h1 + p { max-width: 100%; }
}
@media (max-width: 600px) {
  .cc-page-header {
    min-height: 340px;
    padding: 96px 0 32px;
  }
  .cc-page-header::before {
    /* On small screens the text block is narrower — flatten the side gradient and lean on the vertical one */
    background:
      linear-gradient(180deg, rgba(58,58,55,0.6) 0%, rgba(58,58,55,0.65) 35%, rgba(58,58,55,0.95) 100%);
  }
  .cc-page-header h1 + p { font-size: 14px; }
  .cc-page-header .crumbs { font-size: 11px; }
}
@media (min-width: 1600px) {
  .cc-page-header h1 { max-width: 26ch; }
  .cc-page-header h1 + p { max-width: 68ch; }
}

/* ---------------- Get involved ---------------- */
.cc-getinvolved-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.cc-gi-card {
  grid-column: span 4;
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.cc-gi-card:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-3); border-color: transparent; }
.cc-gi-card .head {
  padding: 26px 24px 16px;
  background: var(--cc-stone);
  border-bottom: 1px solid var(--cc-line);
}
.cc-gi-card .head .num {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  background: var(--cc-paper); border: 1px solid var(--cc-line);
  color: var(--cc-accent);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; margin-bottom: 12px;
}
.cc-gi-card .head h3 { font-size: 18px; margin: 0; color: var(--cc-ink); display: flex; gap: 10px; align-items: center; }
.cc-gi-card .head h3 i { color: var(--cc-primary); }
.cc-gi-card .body { padding: 22px 24px 24px; flex: 1; }
.cc-gi-card .body p { color: var(--cc-mute); font-size: 14px; line-height: 1.65; }
.cc-gi-card .body a.cta {
  display: inline-flex; align-items: center; gap: 8px; color: var(--cc-primary);
  font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; margin-top: 6px;
}
.cc-gi-card .body a.cta:hover i { transform: translateX(3px); }
.cc-gi-card .body a.cta i { transition: transform 0.25s ease; }
@media (max-width: 991px) { .cc-gi-card { grid-column: span 6; } }
@media (max-width: 600px) { .cc-gi-card { grid-column: span 12; } }

/* ---------------- Donate ---------------- */
.cc-donate-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; }
@media (max-width: 1024px) { .cc-donate-grid { grid-template-columns: 1fr; } }
.cc-donate-card {
  background: #fff; border-radius: var(--cc-radius);
  padding: 36px; border: 1px solid var(--cc-line);
  box-shadow: var(--cc-shadow-1);
}
.cc-donate-card h2 { font-size: 26px; margin-bottom: 6px; }
.cc-donate-card .sub { color: var(--cc-mute); margin-bottom: 24px; font-size: 14px; }

.cc-tabs {
  display: inline-flex; gap: 0; padding: 4px;
  background: var(--cc-stone); border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-sm); margin-bottom: 18px;
}
.cc-tabs button {
  border: 0; background: transparent; padding: 9px 18px;
  border-radius: 4px; font-weight: 600; cursor: pointer; font-size: 12px;
  color: var(--cc-mute); text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.15s ease;
}
.cc-tabs button.is-active { background: var(--cc-primary); color: #fff; }

.cc-amount-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px;
}
.cc-amount-grid button {
  padding: 16px 12px; border-radius: var(--cc-radius-sm);
  border: 1px solid var(--cc-line); background: #fff; font-weight: 600;
  cursor: pointer; color: var(--cc-ink); font-size: 16px;
  transition: all 0.15s ease; text-align: left;
}
.cc-amount-grid button:hover { border-color: var(--cc-primary); }
.cc-amount-grid button.is-active { background: var(--cc-primary); color: #fff; border-color: var(--cc-primary); }
.cc-amount-grid button .lbl { display: block; font-size: 10px; color: var(--cc-mute); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.cc-amount-grid button.is-active .lbl { color: rgba(255,255,255,0.7); }
@media (max-width: 600px) { .cc-amount-grid { grid-template-columns: 1fr 1fr; } }

.cc-form .field { margin-bottom: 14px; }
.cc-form label { display: block; font-size: 11px; font-weight: 600; color: var(--cc-mute); margin-bottom: 6px; letter-spacing: 0.12em; text-transform: uppercase; }
.cc-form input, .cc-form select, .cc-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--cc-line); border-radius: var(--cc-radius-sm);
  background: #fff; font: inherit; color: var(--cc-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-size: 14px;
}
.cc-form input:focus, .cc-form select:focus, .cc-form textarea:focus {
  outline: none; border-color: var(--cc-primary);
  box-shadow: 0 0 0 3px rgba(58,58,55,0.07);
}
.cc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .cc-row-2 { grid-template-columns: 1fr; } }

.cc-donate-aside { display: flex; flex-direction: column; gap: 14px; }
.cc-aside-card {
  background: var(--cc-primary); color: #fff;
  border-radius: var(--cc-radius); padding: 26px;
  border: 1px solid var(--cc-primary-2);
}
.cc-aside-card.cream {
  background: var(--cc-stone); color: var(--cc-ink); border-color: var(--cc-line);
}
.cc-aside-card h3 { color: inherit; font-size: 16px; margin-bottom: 10px; letter-spacing: -0.005em; }
.cc-aside-card p { color: inherit; opacity: 0.85; font-size: 13px; margin: 0; line-height: 1.65; }
.cc-aside-card.cream h3, .cc-aside-card.cream p { color: var(--cc-ink); }
.cc-aside-card.cream p { color: var(--cc-mute); opacity: 1; }

/* ---------------- Blog grid + cards ---------------- */
.cc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 991px) { .cc-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cc-blog-grid { grid-template-columns: 1fr; } }

.cc-post {
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  overflow: hidden; box-shadow: var(--cc-shadow-1);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.cc-post:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-3); border-color: transparent; }
.cc-post .img { aspect-ratio: 16/10; overflow: hidden; background: var(--cc-stone); }
.cc-post .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cc-post:hover .img img { transform: scale(1.04); }
.cc-post .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.cc-post .meta {
  display: flex; gap: 12px; color: var(--cc-mute);
  font-size: 10px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}
.cc-post h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.cc-post h3 a { color: var(--cc-ink); text-decoration: none; }
.cc-post h3 a:hover { color: var(--cc-primary); }
.cc-post p { color: var(--cc-mute); font-size: 14px; line-height: 1.6; }
.cc-post .read-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  color: var(--cc-primary); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
}

/* Row variant of post card (events page) */
.cc-post--row { flex-direction: row; align-items: stretch; }
.cc-post--row .img { flex: 0 0 40%; aspect-ratio: auto; min-height: 220px; }
.cc-post--row .body { flex: 1; }
@media (max-width: 600px) {
  .cc-post--row { flex-direction: column; }
  .cc-post--row .img { flex: none; aspect-ratio: 16/10; min-height: 0; }
}

/* ---------------- Contact ---------------- */
.cc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 991px) { .cc-contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.cc-contact-info-card {
  background: var(--cc-primary); color: #fff;
  border-radius: var(--cc-radius); padding: 32px;
  border: 1px solid var(--cc-primary-2);
}
.cc-contact-info-card h3 { color: #fff; font-size: 20px; }
.cc-contact-info-list { list-style: none; padding: 0; margin: 20px 0 0; }
.cc-contact-info-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 14px; align-items: center;
  color: rgba(255,255,255,0.92); font-size: 14px;
}
.cc-contact-info-list li:last-child { border-bottom: 0; }
.cc-contact-info-list i { color: var(--cc-accent); font-size: 16px; width: 22px; text-align: center; }
.cc-contact-info-list a { color: #fff; text-decoration: none; }
.cc-map { aspect-ratio: 16/11; border-radius: var(--cc-radius); overflow: hidden; box-shadow: var(--cc-shadow-1); border: 1px solid var(--cc-line); }
.cc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------- Misc ---------------- */
.cc-quote {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  font-style: italic; color: var(--cc-primary);
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--cc-accent);
  margin: 26px 0;
}

/* ---------------- Footer ---------------- */
.main-footer { background: var(--cc-graphite); color: rgba(255,255,255,0.75); border-top: 1px solid rgba(255,255,255,0.05); }

/* Top CTA strip */
.footer-cta {
  background: var(--cc-primary);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 50px 0;
}
.footer-cta-grid {
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
}
.footer-cta .eyebrow { color: var(--cc-accent); font-size: 11px; }
.footer-cta h2 { color: #fff; font-size: clamp(22px, 2.5vw, 32px); margin-top: 8px; line-height: 1.2; max-width: 24ch; }
.footer-cta h2 em { font-style: normal; color: var(--cc-accent); }
.footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-cta .btn-default { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-cta .btn-default:hover { background: #fff; color: var(--cc-primary); border-color: #fff; }
.footer-cta .btn-default.btn-highlighted { background: var(--cc-accent); color: var(--cc-primary); border-color: var(--cc-accent); }
.footer-cta .btn-default.btn-highlighted:hover { background: #fff; color: var(--cc-primary); border-color: #fff; }
@media (max-width: 768px) {
  .footer-cta-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-cta-actions .btn-default { flex: 1 1 auto; justify-content: center; }
}

/* Main footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 60px;
  padding: 70px 0 50px;
}
@media (max-width: 1100px) { .footer-grid { gap: 40px; } }
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; padding: 50px 0 30px; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .footer-mark {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; margin-bottom: 18px;
}
.footer-brand .footer-logo {
  display: block; height: 52px; width: auto;
  background: #fff; padding: 6px 10px; border-radius: 6px;
  object-fit: contain;
}
.footer-brand .footer-mark small {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.18);
  line-height: 1.4;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 38ch; }
.footer-social { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.footer-social .label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55); margin-right: 4px;
}
.footer-social a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.1); text-decoration: none;
  transition: all 0.18s ease;
}
.footer-social a:hover { background: var(--cc-accent); color: var(--cc-primary); border-color: var(--cc-accent); }

.footer-col h4 {
  color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 600; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; line-height: 1.55; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s ease; }
.footer-col ul li a:hover { color: var(--cc-accent); }

.footer-contact ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.75); white-space: normal;
}
.footer-contact ul li i { color: var(--cc-accent); width: 14px; margin-top: 4px; font-size: 13px; }
.footer-contact ul li a { color: rgba(255,255,255,0.75); }
.footer-contact ul li a:hover { color: var(--cc-accent); }
.footer-contact ul li span { color: rgba(255,255,255,0.75); }

/* Base bar */
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 10px;
}
.footer-base p { margin: 0; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.footer-base a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s ease; }
.footer-base a:hover { color: var(--cc-accent); }
.footer-base .dot { color: rgba(255,255,255,0.3); margin: 0 10px; }
@media (max-width: 540px) {
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* ---------------- Simple home gallery (lightbox-driven) ---------------- */
.cc-simple-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 16vw, 220px);
  gap: 14px;
  margin-top: 32px;
}
/* Editorial mosaic: hero tile + 2x2 block = a clean rectangle for 5 images */
.cc-simple-gallery a:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.cc-simple-gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--cc-radius);
  background: var(--cc-stone);
  cursor: zoom-in;
  box-shadow: var(--cc-shadow-1);
}
.cc-simple-gallery a img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.cc-simple-gallery a::after {
  content: "\f00e"; /* fa-magnifying-glass-plus */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  background: linear-gradient(180deg, rgba(58,58,55,0) 40%, rgba(58,58,55,0.55) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.cc-simple-gallery a:hover img { transform: scale(1.06); }
.cc-simple-gallery a:hover::after { opacity: 1; }
@media (max-width: 992px) {
  .cc-simple-gallery { grid-template-columns: repeat(2, 1fr); }
  .cc-simple-gallery a:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .cc-simple-gallery { grid-auto-rows: clamp(130px, 34vw, 200px); gap: 10px; }
}

/* ---------------- Preloader: keep simple ---------------- */
.preloader { background: var(--cc-paper); }

/* Hide magic-cursor and any leftover Aasha flourishes — corporate cursor only */
.cursor, .cursor2, .cursor-inner, .cursor-outer,
.cb-cursor, .mb-cursor, .magic-cursor, .magic-hover,
[class*="cursor-circle"], [class*="cursor-dot"], [class*="cursor-text"],
.mb-YTPbar { display: none !important; }
body, .smooth-scroll { cursor: auto !important; }
.section-sub-title { display: none !important; }

/* Apply consistent rounded edges across all major surfaces */
.cc-mosaic .tile,
.cc-program, .cc-program .img,
.cc-post, .cc-post .img,
.cc-gi-card, .cc-aside-card,
.cc-story-media, .cc-impact-card,
.cc-cta,
.cc-donate-card, .cc-map,
.cc-amount-grid button, .cc-tabs,
.cc-form input, .cc-form select, .cc-form textarea,
.cc-help-card-rich, .cc-help-card-rich .img,
.cc-voice, .cc-approach-card,
.cc-horiz-card, .cc-horiz-card .img,
.cc-collage .frame, .cc-field-item,
.cc-tl-item .tl-card, .cc-tl-item .tl-media,
.cc-prog-gallery .g,
.cc-pullquote-img,
.cc-split-media,
.cc-numbers-card, .cc-impact-card,
.cc-hero-side-card { border-radius: var(--cc-radius); overflow: hidden; }

/* Smaller radius for buttons / inputs / small chips */
.btn-default, .a-input, .a-select,
.cc-amount-grid button,
.cc-tabs button,
.cc-program .img .badge,
.cc-gi-card .head .num,
.cc-field-filters button,
.cc-field-floater { border-radius: var(--cc-radius-sm); }

/* Pill style for kicker / cc-hero-kicker / tags */
.cc-hero-kicker, .cc-marquee + *,
.a-tag { border-radius: var(--cc-radius-pill); }

/* Story-media floater + program badge — small radius */
.cc-story-media .floater { border-radius: var(--cc-radius-sm); }

/* Footer button — keep rounded with the rest */
.main-footer .btn-default { border-radius: var(--cc-radius-sm); }

/* Inner images inside rounded containers shouldn't have additional radius */
.cc-program .img img,
.cc-post .img img,
.cc-help-card-rich .img img,
.cc-horiz-card .img img,
.cc-prog-gallery .g img,
.cc-field-item img,
.cc-collage .frame img,
.cc-tl-item .tl-media img,
.cc-pullquote-img img,
.cc-split-media img { border-radius: 0; }

/* =========================================================
   RICH STORYTELLING SECTIONS
   ========================================================= */

/* Generic reveal — pre-hides only when GSAP is available */
.cc-has-gsap [data-cc-reveal],
.cc-has-gsap [data-cc-stagger] > *,
.cc-has-gsap [data-cc-image-reveal] { opacity: 0; }
.cc-has-gsap [data-cc-image-reveal] { opacity: 1; clip-path: inset(100% 0 0 0); }
.cc-has-gsap [data-cc-split] .cc-word { display: inline-block; }

/* ---------- Marquee ribbon ---------- */
.cc-marquee {
  background: var(--cc-primary);
  color: #fff;
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cc-marquee-track {
  display: flex; gap: 50px;
  width: max-content; white-space: nowrap;
  animation: cc-marquee 38s linear infinite;
}
.cc-marquee:hover .cc-marquee-track { animation-play-state: paused; }
.cc-marquee span {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cc-marquee .sep { color: var(--cc-accent); font-size: 14px; align-self: center; }
@keyframes cc-marquee { to { transform: translateX(-50%); } }

/* ---------- Split layout (image + text, with floater) ---------- */
.cc-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.cc-split.reverse > :first-child { order: 2; }
.cc-split-media {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.cc-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-split-media .floater {
  position: absolute; right: -24px; bottom: 36px;
  background: var(--cc-accent); color: var(--cc-primary);
  padding: 22px 28px;
  min-width: 240px;
  border: 1px solid var(--cc-primary);
}
.cc-split-media .floater .big {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700; line-height: 1;
  color: var(--cc-primary);
}
.cc-split-media .floater .lbl {
  display: block; margin-top: 8px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--cc-primary);
}
.cc-split-content .eyebrow { margin-bottom: 18px; }
.cc-split-content h2 { font-size: clamp(30px, 4vw, 56px); margin-bottom: 24px; }
.cc-split-content p { font-size: 16px; line-height: 1.8; }
.cc-split-content .meta-row {
  display: flex; gap: 30px; margin: 26px 0; padding: 24px 0;
  border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line);
}
.cc-split-content .meta-row .col { flex: 1; }
.cc-split-content .meta-row .num { font-size: 30px; font-weight: 700; color: var(--cc-primary); line-height: 1; }
.cc-split-content .meta-row .lbl { font-size: 11px; color: var(--cc-mute); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 6px; display: block; }
@media (max-width: 991px) {
  .cc-split { grid-template-columns: 1fr; gap: 40px; }
  .cc-split.reverse > :first-child { order: 0; }
  .cc-split-media .floater { right: 18px; bottom: 18px; min-width: 200px; padding: 18px 22px; }
}

/* ---------- Horizontal scrolling programs ---------- */
.cc-horiz {
  background: var(--cc-stone);
  overflow: hidden;
  padding: 0;
  position: relative;
  border-top: 1px solid var(--cc-line);
  border-bottom: 1px solid var(--cc-line);
}
.cc-horiz-inner {
  height: 100vh; min-height: 620px;
  display: flex; align-items: stretch;
  position: relative;
}
/* Solid left column holding the heading — cards slide BEHIND this */
.cc-horiz-heading {
  position: relative;
  flex: 0 0 clamp(320px, 30vw, 440px);
  background: var(--cc-stone);
  padding: 70px clamp(28px, 3vw, 44px) 70px var(--cc-gutter);
  display: flex; flex-direction: column; justify-content: center;
  z-index: 3;
  border-right: 1px solid var(--cc-line);
}
.cc-horiz-heading::after {
  /* soft right-edge gradient so cards fade behind, not abruptly clip */
  content: ""; position: absolute; right: -40px; top: 0; bottom: 0; width: 40px;
  background: linear-gradient(to right, var(--cc-stone), rgba(245,244,240,0));
  pointer-events: none;
}
.cc-horiz-heading .eyebrow { margin-bottom: 14px; }
.cc-horiz-heading h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin-bottom: 14px; }
.cc-horiz-heading p { font-size: 14px; line-height: 1.6; }
.cc-horiz-heading .progress {
  margin-top: 28px; height: 2px; background: var(--cc-line); position: relative;
}
.cc-horiz-heading .progress span {
  position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--cc-accent); transition: width 0.1s linear;
}
.cc-horiz-heading .legend {
  margin-top: 12px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cc-mute); font-weight: 600;
  display: flex; justify-content: space-between;
}
.cc-horiz-scroller {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 70px 0;
}
.cc-horiz-track {
  display: flex; gap: 26px;
  padding-left: 30px;
  padding-right: 80px;
  align-items: stretch;
  will-change: transform;
}
.cc-horiz-card {
  flex: 0 0 460px;
  background: #fff;
  border: 1px solid var(--cc-line);
  display: flex; flex-direction: column;
  box-shadow: var(--cc-shadow-2);
}
.cc-horiz-card .num-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--cc-accent); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cc-horiz-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--cc-stone); }
.cc-horiz-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cc-horiz-card:hover .img img { transform: scale(1.04); }
.cc-horiz-card .body { padding: 30px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.cc-horiz-card h3 { font-size: 26px; margin-bottom: 12px; }
.cc-horiz-card p { font-size: 15px; flex: 1; }
.cc-horiz-card .stats {
  display: flex; gap: 24px;
  margin: 18px 0 22px; padding: 18px 0;
  border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line);
}
.cc-horiz-card .stats .stat .n { font-size: 22px; font-weight: 700; color: var(--cc-primary); line-height: 1; }
.cc-horiz-card .stats .stat .l { font-size: 10px; color: var(--cc-mute); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px; display: block; }

/* Mobile fallback: stack vertically (no pin) */
@media (max-width: 991px) {
  .cc-horiz-inner { height: auto; min-height: 0; display: block; padding: 56px var(--cc-gutter); }
  .cc-horiz-heading { flex: none; position: relative; padding: 0; margin-bottom: 28px; border-right: 0; background: transparent; }
  .cc-horiz-heading::after { display: none; }
  .cc-horiz-heading .progress, .cc-horiz-heading .legend { display: none; }
  .cc-horiz-scroller { padding: 0; overflow: visible; display: block; }
  .cc-horiz-track {
    transform: none !important;
    padding: 0; flex-direction: column; gap: 18px;
  }
  .cc-horiz-card { flex: none; }
}

/* ---------- Giant counter block ---------- */
.cc-numbers {
  background: var(--cc-primary);
  color: #fff;
  padding: var(--cc-section-y) 0;
  position: relative;
  overflow: hidden;
}
.cc-numbers::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(169,149,118,0.22), transparent 65%);
}
.cc-numbers .container { position: relative; z-index: 1; }
.cc-numbers-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 30px; flex-wrap: wrap; }
.cc-numbers-head h2 { color: #fff; font-size: clamp(30px, 4vw, 56px); max-width: 16ch; }
.cc-numbers-head .eyebrow { color: var(--cc-accent); }
.cc-numbers-head p { color: rgba(255,255,255,0.7); max-width: 38ch; margin: 0; }
.cc-numbers-row {
  display: flex; flex-wrap: wrap; gap: 0;
}
.cc-numbers-row .item {
  flex: 1 1 0; min-width: 200px;
  padding: 30px 30px 30px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden; /* long figures must never bleed into the next column */
}
.cc-numbers-row .item:last-child { border-right: 0; padding-right: 0; }
.cc-numbers-row .item:first-child { padding-left: 0; }
.cc-numbers-row .item:not(:first-child) { padding-left: 30px; }
.cc-numbers-row .big {
  /* sized so even a 6-digit grouped figure (e.g. 2,65,505) fits one column */
  font-size: clamp(34px, 3.6vw, 66px);
  font-weight: 700;
  color: var(--cc-accent);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.cc-numbers-row .big .suf { color: rgba(255,255,255,0.6); margin-left: 4px; font-size: 0.6em; }
.cc-numbers-row .lbl {
  display: block; margin-top: 18px;
  color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.5; max-width: 26ch;
}
.cc-numbers-row .cc-numbers-line {
  display: block; margin-top: 22px;
  width: 36px; height: 2px; background: var(--cc-accent);
}
@media (max-width: 900px) { .cc-numbers-row .big { font-size: clamp(40px, 7vw, 64px); } .cc-numbers-row .item { flex: 1 1 calc(50% - 15px); min-width: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 28px 0 !important; } .cc-numbers-row .item:nth-child(2n) { padding-left: 30px !important; } }
@media (max-width: 540px) { .cc-numbers-row .item { flex: 1 1 100%; } .cc-numbers-row .item:nth-child(2n) { padding-left: 0 !important; } }

/* ---------- Big pullquote ---------- */
.cc-pullquote {
  padding: var(--cc-section-y) 0;
  background: var(--cc-cream);
}
.cc-pullquote-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
}
.cc-pullquote-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.cc-pullquote-img img { width: 100%; height: 100%; object-fit: cover; }
.cc-pullquote blockquote {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--cc-primary);
  letter-spacing: -0.01em;
  margin: 0;
  position: relative; padding-left: 60px;
}
.cc-pullquote blockquote::before {
  content: "\201C";
  position: absolute; left: 0; top: -20px;
  font-size: 120px; line-height: 1;
  color: var(--cc-accent); font-family: Georgia, serif;
}
.cc-pullquote cite {
  display: block; margin-top: 32px;
  font-style: normal; font-size: 13px; color: var(--cc-mute);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.cc-pullquote cite::before {
  content: ""; display: inline-block; width: 30px; height: 1px;
  background: var(--cc-accent); margin-right: 14px; vertical-align: middle;
}
@media (max-width: 900px) { .cc-pullquote-inner { grid-template-columns: 1fr; gap: 32px; } .cc-pullquote blockquote { padding-left: 0; } .cc-pullquote blockquote::before { position: static; display: block; margin-bottom: -30px; font-size: 80px; } }

/* ---------- Success story ---------- */
.cc-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.cc-story-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--cc-radius-lg);
  box-shadow: var(--cc-shadow-3);
}
.cc-story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-story-badge {
  position: absolute; left: 24px; bottom: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cc-accent); color: var(--cc-primary);
  font-size: 22px; box-shadow: var(--cc-shadow-2);
}
.cc-story-content .eyebrow { margin-bottom: 18px; }
.cc-story-content h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cc-primary);
  margin: 0 0 28px;
}
.cc-story-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--cc-primary-2);
  margin: 0 0 20px;
}
.cc-story-body p:last-child { margin-bottom: 0; }
.cc-story-body p:first-child::first-letter {
  font-size: 3.4em;
  line-height: 0.82;
  font-weight: 700;
  color: var(--cc-accent);
  float: left;
  margin: 6px 14px 0 0;
}
.cc-story-cite {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 32px; padding-top: 26px;
  border-top: 1px solid var(--cc-line);
}
.cc-story-cite .nm {
  font-size: 17px; font-weight: 700; color: var(--cc-primary);
}
.cc-story-cite .mt {
  font-size: 12px; color: var(--cc-mute);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
@media (max-width: 900px) {
  .cc-story { grid-template-columns: 1fr; gap: 36px; }
  .cc-story-media { max-width: 460px; }
}

/* ---------- Timeline ---------- */
.cc-timeline { position: relative; padding: 40px 0; }
.cc-timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 110px;
  width: 1px; background: var(--cc-line);
}
.cc-timeline::after {
  content: ""; position: absolute; top: 0; left: 110px;
  width: 1px; height: 60px; background: var(--cc-accent);
}
.cc-timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
  padding: 36px 0;
  position: relative;
}
.cc-timeline-item .year {
  font-size: 22px; font-weight: 700; color: var(--cc-primary);
  letter-spacing: -0.01em;
}
.cc-timeline-item::before {
  content: ""; position: absolute; left: 105px; top: 48px;
  width: 12px; height: 12px;
  background: var(--cc-accent);
  border: 2px solid var(--cc-paper);
  box-shadow: 0 0 0 1px var(--cc-primary);
}
.cc-timeline-item h3 { font-size: 24px; margin-bottom: 10px; }
.cc-timeline-item p { font-size: 15px; max-width: 64ch; }
.cc-timeline-item .img {
  margin-top: 18px;
  max-width: 460px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cc-timeline-item .img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .cc-timeline::before, .cc-timeline::after { left: 40px; }
  .cc-timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .cc-timeline-item::before { left: 35px; }
}

/* ---------- Founders (image + name/role list) ---------- */
.cc-founder-line {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--cc-line);
}
.cc-founder-line .name { font-size: 20px; font-weight: 700; color: var(--cc-primary); letter-spacing: -0.01em; }
.cc-founder-line .role-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cc-mute);
}

/* ---------- Section heading with side rule ---------- */
.cc-section-title-row {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end;
  margin-bottom: 56px;
}
.cc-section-title-row h2 { max-width: 16ch; font-size: clamp(28px, 3.6vw, 48px); }
.cc-section-title-row p { max-width: 38ch; margin: 0; color: var(--cc-mute); }
@media (max-width: 768px) { .cc-section-title-row { grid-template-columns: 1fr; } }

/* ---------- "What we do" stacked bands ---------- */
.cc-bands-wrap { position: relative; }
.cc-bands { display: flex; flex-direction: column; position: relative; z-index: 2; }
.cc-band {
  display: grid; grid-template-columns: 80px 1fr 1fr 80px;
  gap: 40px; align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--cc-line);
  transition: padding 0.35s ease, color 0.3s ease;
  position: relative;
}
.cc-band:last-child { border-bottom: 1px solid var(--cc-line); }
.cc-band .idx { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; color: var(--cc-accent); transition: color 0.3s ease; }
.cc-band h3 { font-size: clamp(22px, 2.2vw, 32px); transition: transform 0.35s ease; }
.cc-band p { margin: 0; transition: opacity 0.3s ease; }
.cc-band .arrow {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--cc-line);
  color: var(--cc-primary); transition: all 0.3s ease;
  justify-self: end;
}
.cc-band:hover { padding: 50px 0; }
.cc-band:hover h3 { transform: translateX(8px); }
.cc-band:hover .arrow { background: var(--cc-primary); border-color: var(--cc-primary); color: var(--cc-accent); transform: translateX(6px); }

/* Floating hover preview image (cursor-following) */
.cc-band-hover {
  position: absolute;
  top: 0; left: 0;
  width: 320px; height: 220px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.92);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
  will-change: transform, opacity;
}
.cc-band-hover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.cc-bands-wrap.is-hovering .cc-band-hover {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

@media (max-width: 768px) {
  .cc-band { grid-template-columns: 60px 1fr 60px; gap: 20px; padding: 30px 0; }
  .cc-band p { display: none; }
  .cc-band-hover { display: none; }
}

/* ---------- Sticky-scroll section (pin content, scroll other column) ---------- */
.cc-sticky { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cc-sticky-fixed { position: sticky; top: 120px; }
.cc-sticky-fixed h2 { font-size: clamp(28px, 3.6vw, 48px); }
.cc-sticky-stream { display: flex; flex-direction: column; gap: 60px; }
.cc-sticky-stream .card {
  padding: 30px 0;
  border-top: 1px solid var(--cc-line);
}
.cc-sticky-stream .card:first-child { border-top: 0; }
.cc-sticky-stream .card .step { font-size: 11px; color: var(--cc-accent); letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase; }
.cc-sticky-stream .card h3 { margin: 12px 0 12px; font-size: 26px; }
.cc-sticky-stream .card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-top: 20px;
}
@media (max-width: 991px) {
  .cc-sticky { grid-template-columns: 1fr; gap: 30px; }
  .cc-sticky-fixed { position: static; }
}

/* ---------- "How to help" cards ---------- */
.cc-help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--cc-line); }
.cc-help-card {
  padding: 50px 38px;
  border-right: 1px solid var(--cc-line);
  border-bottom: 1px solid var(--cc-line);
  background: var(--cc-paper);
  transition: background 0.3s ease;
}
.cc-help-card:hover { background: var(--cc-cream); }
.cc-help-card .icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cc-primary); color: var(--cc-accent);
  font-size: 20px; margin-bottom: 22px;
}
.cc-help-card h3 { font-size: 20px; margin-bottom: 10px; }
.cc-help-card p { font-size: 14px; }
@media (max-width: 900px) { .cc-help-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cc-help-grid { grid-template-columns: 1fr; } }

/* ---------- Image collage with floating tags ---------- */
.cc-collage {
  position: relative;
  height: clamp(420px, 56vw, 680px);
}
.cc-collage .frame {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--cc-shadow-2);
}
.cc-collage .frame img { width: 100%; height: 100%; object-fit: cover; }
.cc-collage .f1 { left: 0;     top: 0;       width: 46%; height: 68%; }
.cc-collage .f2 { right: 0;    top: 8%;      width: 36%; height: 56%; }
.cc-collage .f3 { left: 28%;   bottom: 0;    width: 38%; height: 56%; }
.cc-collage .f4 { right: 6%;   bottom: 4%;   width: 30%; height: 38%; }
.cc-collage .tag {
  position: absolute;
  background: var(--cc-primary); color: var(--cc-accent);
  padding: 14px 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 4;
}
.cc-collage .tag .n { display: block; font-size: 28px; color: var(--cc-accent); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.cc-collage .t1 { left: 40%; top: 14%; }
.cc-collage .t2 { right: 36%; bottom: 26%; background: var(--cc-accent); color: var(--cc-primary); }
.cc-collage .t2 .n { color: var(--cc-primary); }
@media (max-width: 768px) {
  .cc-collage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .cc-collage .frame { position: static; width: auto; height: auto; aspect-ratio: 4/5; }
  .cc-collage .tag { display: none; }
}

/* =========================================================
   RICH GET-INVOLVED HELP CARDS (home, sticky stream)
   ========================================================= */
.cc-help-card-rich {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cc-help-card-rich:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-3); border-color: transparent; }
.cc-help-card-rich .img { aspect-ratio: 4/3; overflow: hidden; background: var(--cc-stone); }
.cc-help-card-rich .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.cc-help-card-rich:hover .img img { transform: scale(1.05); }
.cc-help-card-rich .body { padding: 30px 32px; display: flex; flex-direction: column; }
.cc-help-card-rich .body .step {
  font-size: 11px; font-weight: 700; color: var(--cc-accent);
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cc-help-card-rich .body .step::before { content: ""; width: 24px; height: 1px; background: var(--cc-accent); }
.cc-help-card-rich .body h3 { font-size: 24px; margin-bottom: 10px; }
.cc-help-card-rich .body p { font-size: 14px; flex: 1; margin-bottom: 18px; }
.cc-help-card-rich .body .stats {
  display: flex; gap: 30px;
  padding: 16px 0; margin-bottom: 16px;
  border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line);
}
.cc-help-card-rich .body .stats .item .n {
  font-size: 22px; font-weight: 700; color: var(--cc-primary); line-height: 1;
}
.cc-help-card-rich .body .stats .item .l {
  display: block; font-size: 10px; color: var(--cc-mute);
  text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px;
}
.cc-help-card-rich .body .link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cc-primary); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; text-decoration: none;
}
.cc-help-card-rich .body .link i { transition: transform 0.25s ease; }
.cc-help-card-rich .body .link:hover i { transform: translateX(3px); }
@media (max-width: 700px) {
  .cc-help-card-rich { grid-template-columns: 1fr; }
  .cc-help-card-rich .body { padding: 24px 22px; }
}

.cc-getinvolved-counter {
  display: flex; align-items: baseline; gap: 14px;
  margin: 28px 0 22px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line);
}
.cc-getinvolved-counter .big {
  font-size: clamp(40px, 5vw, 56px); font-weight: 700; line-height: 1;
  color: var(--cc-primary); letter-spacing: -0.02em;
}
.cc-getinvolved-counter .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--cc-mute); font-weight: 600;
}

/* =========================================================
   FROM THE FIELD — filterable gallery with floating data tags
   ========================================================= */
.cc-field { position: relative; }
.cc-field-filters {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 26px;
  border-bottom: 1px solid var(--cc-line); padding-bottom: 16px;
}
.cc-field-filters button {
  background: transparent; border: 1px solid var(--cc-line);
  padding: 8px 16px; font: inherit; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  color: var(--cc-mute); cursor: pointer;
  transition: all 0.15s ease;
}
.cc-field-filters button:hover { color: var(--cc-primary); border-color: var(--cc-primary); }
.cc-field-filters button.is-active { background: var(--cc-primary); color: var(--cc-accent); border-color: var(--cc-primary); }

.cc-field-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 12px;
}
.cc-field-item {
  position: relative; overflow: hidden;
  background: var(--cc-stone);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cc-field-item.is-hidden { display: none; }
.cc-field-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cc-field-item:hover img { transform: scale(1.05); }
.cc-field-item .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(58,58,55,0.95), rgba(58,58,55,0) 80%);
  color: #fff;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.cc-field-item:hover .overlay { transform: translateY(0); opacity: 1; }
.cc-field-item .overlay .tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cc-accent);
  margin-bottom: 4px;
}
.cc-field-item .overlay h3 { font-size: 16px; color: #fff; margin-bottom: 2px; font-weight: 600; }
.cc-field-item .overlay .date { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }
.cc-field-item .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cc-accent); color: var(--cc-primary);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3; font-size: 16px;
  box-shadow: 0 0 0 0 rgba(169,149,118,0.6);
  animation: ccPing 2.4s ease-out infinite;
}
@keyframes ccPing {
  0% { box-shadow: 0 0 0 0 rgba(169,149,118,0.45); }
  100% { box-shadow: 0 0 0 22px rgba(169,149,118,0); }
}

.cc-field-item.size-a { grid-column: span 5; grid-row: span 4; }
.cc-field-item.size-b { grid-column: span 4; grid-row: span 3; }
.cc-field-item.size-c { grid-column: span 3; grid-row: span 3; }
.cc-field-item.size-d { grid-column: span 4; grid-row: span 3; }
.cc-field-item.size-e { grid-column: span 3; grid-row: span 4; }
.cc-field-item.size-f { grid-column: span 5; grid-row: span 3; }
.cc-field-item.size-g { grid-column: span 4; grid-row: span 3; }
.cc-field-item.size-h { grid-column: span 3; grid-row: span 4; }

.cc-field-floater {
  position: absolute;
  background: var(--cc-accent); color: var(--cc-primary);
  padding: 16px 22px;
  z-index: 4;
  pointer-events: none;
}
.cc-field-floater.dark { background: var(--cc-primary); color: var(--cc-accent); }
.cc-field-floater .n { font-size: 28px; font-weight: 700; line-height: 1; display: block; }
.cc-field-floater .l { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; display: block; max-width: 16ch; }
.cc-field-floater.f-1 { left: 4%;  top: 32%; }
.cc-field-floater.f-2 { right: 6%; bottom: 22%; }

@media (max-width: 991px) {
  .cc-field-grid { grid-auto-rows: 80px; }
  .cc-field-item.size-a { grid-column: span 7; grid-row: span 4; }
  .cc-field-item.size-b, .cc-field-item.size-d, .cc-field-item.size-g { grid-column: span 5; grid-row: span 4; }
  .cc-field-item.size-c, .cc-field-item.size-e, .cc-field-item.size-h { grid-column: span 6; grid-row: span 3; }
  .cc-field-item.size-f { grid-column: span 6; grid-row: span 3; }
}
@media (max-width: 600px) {
  .cc-field-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cc-field-item { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3; }
  .cc-field-floater { display: none; }
}

/* =========================================================
   GALLERY (image-gallery.html) — masonry-style with lightbox
   ========================================================= */
.cc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .cc-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cc-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cc-gallery { grid-template-columns: 1fr; } }
.cc-gallery-item {
  position: relative; display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--cc-radius);
  background: var(--cc-stone);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.cc-gallery-item:nth-child(7n) { aspect-ratio: 4/3; }
.cc-gallery-item:nth-child(11n) { aspect-ratio: 1/1; }
.cc-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.cc-gallery-item:hover img { transform: scale(1.08); }
.cc-gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,58,55,0.95) 0%, rgba(58,58,55,0.45) 45%, rgba(58,58,55,0) 75%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cc-gallery-item:hover .overlay { opacity: 1; }
.cc-gallery-item .overlay h4 {
  color: #fff; font-size: 16px; margin: 4px 0; line-height: 1.3;
  max-width: 22ch;
}
.cc-gallery-item .overlay .tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--cc-accent); letter-spacing: 0.2em; text-transform: uppercase;
}
.cc-gallery-item .overlay .date { font-size: 11px; color: rgba(255,255,255,0.7); }
.cc-gallery-item .overlay .zoom {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cc-accent); color: var(--cc-primary);
  border-radius: 50%; font-size: 14px;
  flex: none;
  transform: scale(0.6); transition: transform 0.3s ease;
}
.cc-gallery-item:hover .overlay .zoom { transform: scale(1); }

/* Magnific popup — branded */
.mfp-bg { background: rgba(58,58,55,0.94); opacity: 1; }
.mfp-fade.mfp-bg.mfp-ready { opacity: 1; }
.mfp-image-holder .mfp-content { max-width: 1200px; }
.mfp-figure { box-shadow: 0 40px 80px rgba(0,0,0,0.4); }
.mfp-figure figcaption { color: rgba(255,255,255,0.9); padding: 12px 0; font-size: 13px; letter-spacing: 0.04em; }
.mfp-arrow-left::before, .mfp-arrow-right::before { border-color: transparent !important; }
.mfp-arrow-left::after, .mfp-arrow-right::after { border-color: transparent transparent transparent #fff; }
.mfp-counter { color: var(--cc-accent); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.mfp-close { color: #fff !important; font-size: 32px !important; opacity: 0.85 !important; }
.mfp-close:hover { opacity: 1 !important; }

/* =========================================================
   TIMELINE v2 — rich, alternating, with micro-stats
   ========================================================= */
.cc-timeline-v2 {
  position: relative;
  padding: 40px 0;
}
.cc-timeline-v2::before {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: 50%; width: 1px;
  background: var(--cc-line);
  transform: translateX(-50%);
}
.cc-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 40px; align-items: start;
  margin-bottom: 70px;
}
.cc-tl-item:last-child { margin-bottom: 20px; }
.cc-tl-item .tl-year-col {
  text-align: center; position: relative;
}
.cc-tl-item .tl-year {
  font-size: 22px; font-weight: 700; color: var(--cc-primary); letter-spacing: -0.01em;
  background: var(--cc-paper); padding: 6px 14px;
  border: 1px solid var(--cc-primary);
  position: relative; z-index: 2; display: inline-block;
}
.cc-tl-item .tl-month {
  display: block; margin-top: 8px;
  font-size: 10px; color: var(--cc-mute); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.cc-tl-item .tl-card {
  background: var(--cc-paper); border: 1px solid var(--cc-line);
  padding: 28px 32px;
  box-shadow: var(--cc-shadow-1);
  position: relative;
}
.cc-tl-item .tl-card::after {
  content: ""; position: absolute; top: 28px;
  width: 14px; height: 14px;
  background: var(--cc-paper); border: 1px solid var(--cc-line);
  transform: rotate(45deg);
}
.cc-tl-item.tl-left .tl-card { grid-column: 1; text-align: right; }
.cc-tl-item.tl-left .tl-card::after { right: -8px; border-top-color: var(--cc-line); border-right-color: var(--cc-line); border-bottom: 0; border-left: 0; }
.cc-tl-item.tl-left .tl-media { grid-column: 3; }
.cc-tl-item.tl-right .tl-card { grid-column: 3; }
.cc-tl-item.tl-right .tl-card::after { left: -8px; border-bottom-color: var(--cc-line); border-left-color: var(--cc-line); border-top: 0; border-right: 0; }
.cc-tl-item.tl-right .tl-media { grid-column: 1; }
.cc-tl-item .tl-card .tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--cc-accent); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 10px;
}
.cc-tl-item .tl-card h3 { font-size: 22px; margin-bottom: 10px; }
.cc-tl-item .tl-card p { font-size: 14px; line-height: 1.7; margin: 0; }
.cc-tl-item .tl-card blockquote {
  border-left: 3px solid var(--cc-accent);
  margin: 16px 0 0; padding: 12px 0 12px 16px;
  font-style: italic; color: var(--cc-primary); font-size: 14px; line-height: 1.5; text-align: left;
}
.cc-tl-item.tl-left .tl-card blockquote {
  border-left: 0; border-right: 3px solid var(--cc-accent);
  padding: 12px 16px 12px 0; text-align: right;
}
.cc-tl-item .tl-card .micro-stats {
  display: flex; gap: 20px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--cc-line);
}
.cc-tl-item.tl-left .tl-card .micro-stats { justify-content: flex-end; }
.cc-tl-item .tl-card .micro-stats .micro .n {
  font-size: 18px; font-weight: 700; color: var(--cc-primary); line-height: 1;
}
.cc-tl-item .tl-card .micro-stats .micro .l {
  display: block; font-size: 10px; color: var(--cc-mute);
  text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px;
}
.cc-tl-item .tl-media {
  position: relative;
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--cc-stone);
}
.cc-tl-item .tl-media img { width: 100%; height: 100%; object-fit: cover; }

/* Portrait/tall photos: show the whole frame instead of cropping it */
.cc-tl-item .tl-media.is-portrait { aspect-ratio: 3/4; }
.cc-tl-item .tl-media.is-portrait img { object-fit: contain; }

@media (max-width: 900px) {
  .cc-timeline-v2::before { left: 30px; }
  .cc-tl-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .cc-tl-item .tl-year-col { grid-column: 1; text-align: left; }
  .cc-tl-item .tl-year { padding: 4px 10px; font-size: 16px; }
  .cc-tl-item.tl-left .tl-card,
  .cc-tl-item.tl-right .tl-card { grid-column: 2; text-align: left; }
  .cc-tl-item.tl-left .tl-card blockquote { border-right: 0; border-left: 3px solid var(--cc-accent); padding: 12px 0 12px 16px; text-align: left; }
  .cc-tl-item.tl-left .tl-card .micro-stats { justify-content: flex-start; }
  .cc-tl-item.tl-left .tl-card::after,
  .cc-tl-item.tl-right .tl-card::after { display: none; }
  .cc-tl-item .tl-media { grid-column: 2; }
}

/* =========================================================
   PROGRAM INNER PAGE — extended sections
   ========================================================= */
.cc-prog-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--cc-primary);
  color: #fff;
  border-top: 6px solid var(--cc-accent);
}
.cc-prog-stats-bar .stat {
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cc-prog-stats-bar .stat:last-child { border-right: 0; }
.cc-prog-stats-bar .stat .n {
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 700;
  color: var(--cc-accent); line-height: 1;
}
.cc-prog-stats-bar .stat .l {
  display: block; margin-top: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 600;
}
@media (max-width: 900px) { .cc-prog-stats-bar { grid-template-columns: 1fr 1fr; } .cc-prog-stats-bar .stat:nth-child(2n) { border-right: 0; } .cc-prog-stats-bar .stat { border-bottom: 1px solid rgba(255,255,255,0.1); } }
@media (max-width: 480px) { .cc-prog-stats-bar { grid-template-columns: 1fr; } }

/* Approach cards (4 across) */
.cc-approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--cc-line);
}
.cc-approach-card {
  padding: 36px 28px;
  border-right: 1px solid var(--cc-line);
  background: var(--cc-paper);
  transition: background 0.3s ease;
}
.cc-approach-card:last-child { border-right: 0; }
.cc-approach-card:hover { background: var(--cc-cream); }
.cc-approach-card .step {
  font-size: 11px; font-weight: 700; color: var(--cc-accent);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.cc-approach-card .icon {
  width: 44px; height: 44px;
  background: var(--cc-primary); color: var(--cc-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 18px 0 16px; font-size: 18px;
}
.cc-approach-card h3 { font-size: 18px; margin-bottom: 8px; }
.cc-approach-card p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .cc-approach-grid { grid-template-columns: 1fr 1fr; } .cc-approach-card:nth-child(2n) { border-right: 0; } .cc-approach-card { border-bottom: 1px solid var(--cc-line); } }
@media (max-width: 540px) { .cc-approach-grid { grid-template-columns: 1fr; } .cc-approach-card { border-right: 0; } }

/* Day in the life — horizontal step row */
.cc-day-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line);
  position: relative;
}
.cc-day-row::before {
  content: ""; position: absolute; left: 0; right: 0; top: 80px; height: 2px;
  background: var(--cc-line); z-index: 0;
}
.cc-day-step {
  padding: 36px 22px;
  position: relative; z-index: 1;
  border-right: 1px solid var(--cc-line);
  background: var(--cc-paper);
}
.cc-day-step:last-child { border-right: 0; }
.cc-day-step .time {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: var(--cc-accent); color: var(--cc-primary);
  font-size: 13px; font-weight: 700;
  border: 4px solid var(--cc-paper);
  margin-bottom: 16px;
}
.cc-day-step h4 { font-size: 16px; margin-bottom: 6px; }
.cc-day-step p { font-size: 13px; margin: 0; line-height: 1.6; }
@media (max-width: 900px) {
  .cc-day-row { grid-template-columns: 1fr; }
  .cc-day-step { border-right: 0; border-bottom: 1px solid var(--cc-line); }
  .cc-day-row::before { display: none; }
}

/* Voices / testimonials */
.cc-voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cc-voices-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cc-voices-grid { grid-template-columns: 1fr; } }
.cc-voice {
  background: var(--cc-paper);
  border: 1px solid var(--cc-line);
  padding: 30px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cc-voice:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-3); }
.cc-voice .quote-mark {
  font-size: 60px; line-height: 0.6; color: var(--cc-accent);
  font-family: Georgia, serif; margin-bottom: 8px;
}
.cc-voice blockquote {
  font-size: 16px; line-height: 1.6; color: var(--cc-ink);
  margin: 0; flex: 1; font-style: italic;
}
.cc-voice .who {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--cc-line);
}
.cc-voice .who img {
  width: 44px; height: 44px; object-fit: cover;
  border: 2px solid var(--cc-accent);
}
.cc-voice .who .name { font-weight: 700; color: var(--cc-primary); font-size: 14px; }
.cc-voice .who .role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cc-mute); margin-top: 2px; display: block; }

/* FAQ accordion */
.cc-faq { border-top: 1px solid var(--cc-line); }
.cc-faq-item { border-bottom: 1px solid var(--cc-line); }
.cc-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 17px; font-weight: 600; color: var(--cc-primary);
  cursor: pointer; transition: color 0.2s ease;
  user-select: none;
}
.cc-faq-q:hover { color: var(--cc-accent); }
.cc-faq-q .icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--cc-line);
  font-size: 12px; transition: all 0.25s ease;
}
.cc-faq-item.is-open .cc-faq-q .icon {
  background: var(--cc-primary); color: var(--cc-accent); border-color: var(--cc-primary);
  transform: rotate(45deg);
}
.cc-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.cc-faq-item.is-open .cc-faq-a { max-height: 400px; padding-bottom: 22px; }
.cc-faq-a p { margin: 0; font-size: 15px; line-height: 1.75; max-width: 64ch; }

/* Program gallery (richer than aside) */
.cc-prog-gallery {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap: 10px;
}
.cc-prog-gallery .g {
  position: relative; overflow: hidden;
  background: var(--cc-stone);
}
.cc-prog-gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.cc-prog-gallery .g:hover img { transform: scale(1.05); }
.cc-prog-gallery .g1 { grid-column: span 4; grid-row: span 3; }
.cc-prog-gallery .g2 { grid-column: span 2; grid-row: span 2; }
.cc-prog-gallery .g3 { grid-column: span 2; grid-row: span 2; }
.cc-prog-gallery .g4 { grid-column: span 3; grid-row: span 2; }
.cc-prog-gallery .g5 { grid-column: span 3; grid-row: span 2; }
.cc-prog-gallery .g6 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .cc-prog-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; }
  .cc-prog-gallery .g1 { grid-column: span 4; grid-row: span 3; }
  .cc-prog-gallery .g2, .cc-prog-gallery .g3 { grid-column: span 2; grid-row: span 2; }
  .cc-prog-gallery .g4, .cc-prog-gallery .g5, .cc-prog-gallery .g6 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 540px) {
  .cc-prog-gallery .g { grid-column: span 4 !important; grid-row: span 2 !important; }
}

/* Other programs cross-link */
.cc-other-progs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--cc-line);
}
.cc-other-prog {
  display: flex; align-items: center; gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--cc-line);
  text-decoration: none; color: var(--cc-ink);
  transition: background 0.2s ease;
}
.cc-other-prog:last-child { border-right: 0; }
.cc-other-prog:hover { background: var(--cc-cream); color: var(--cc-primary); }
.cc-other-prog .icon {
  width: 52px; height: 52px; flex: none;
  background: var(--cc-primary); color: var(--cc-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cc-other-prog .body { flex: 1; min-width: 0; }
.cc-other-prog .step { font-size: 10px; letter-spacing: 0.22em; color: var(--cc-accent); text-transform: uppercase; font-weight: 700; }
.cc-other-prog .nm { font-size: 16px; font-weight: 600; margin-top: 2px; }
.cc-other-prog i.fa-arrow-right { color: var(--cc-mute); transition: transform 0.25s ease, color 0.2s ease; }
.cc-other-prog:hover i.fa-arrow-right { transform: translateX(4px); color: var(--cc-primary); }
@media (max-width: 900px) { .cc-other-progs { grid-template-columns: 1fr; } .cc-other-prog { border-right: 0; border-bottom: 1px solid var(--cc-line); } .cc-other-prog:last-child { border-bottom: 0; } }

/* =========================================================
   LAYOUT FIXES — image gallery & program galleries
   The site now uses real photographs with mixed orientations
   (portrait + landscape). The original rigid aspect-ratio tiles
   and asymmetric mosaic produced awkward crops, so these
   overrides switch to:
     • a uniform 3-col grid for the program-single gallery
     • a CSS-columns masonry for image-gallery.html
   that lets each image keep its natural shape.
   ========================================================= */

/* ---- Program single gallery — uniform 3-col landscape grid ---- */
.cc-prog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 14px;
}
.cc-prog-gallery .g,
.cc-prog-gallery .g1,
.cc-prog-gallery .g2,
.cc-prog-gallery .g3,
.cc-prog-gallery .g4,
.cc-prog-gallery .g5,
.cc-prog-gallery .g6 {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cc-stone);
  grid-column: span 1;
  grid-row: span 1;
}
.cc-prog-gallery .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.cc-prog-gallery .g:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .cc-prog-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cc-prog-gallery { grid-template-columns: 1fr; }
}

/* ---- Image gallery page — CSS columns masonry ---- */
.cc-gallery {
  display: block;
  column-count: 4;
  column-gap: 14px;
  grid-template-columns: none;
}
@media (max-width: 1100px) { .cc-gallery { column-count: 3; } }
@media (max-width: 768px)  { .cc-gallery { column-count: 2; } }
@media (max-width: 480px)  { .cc-gallery { column-count: 1; } }

.cc-gallery-item {
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: auto;
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
  background: var(--cc-stone);
  border-radius: var(--cc-radius);
}
.cc-gallery-item:nth-child(7n),
.cc-gallery-item:nth-child(11n) { aspect-ratio: auto; }
.cc-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}

/* ---- Pullquote portrait — give wide photos room to breathe ---- */
.cc-pullquote-img { aspect-ratio: 4 / 5; }
.cc-pullquote-img img { object-position: center 30%; }

/* ---- Split media (program intro) — let portraits show their subject ---- */
.cc-split-media img { object-position: center 30%; }

/* ============================================================
   Legal / policy pages (privacy, terms, refund, shipping)
   ============================================================ */
.cc-legal {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 992px) { .cc-legal { grid-template-columns: 1fr; gap: 36px; } }

.cc-legal-nav {
  position: sticky;
  top: 120px;
  background: var(--cc-stone);
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius-lg);
  padding: 26px 24px;
}
@media (max-width: 992px) { .cc-legal-nav { position: static; } }
.cc-legal-nav h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--cc-accent); margin: 0 0 16px; font-weight: 600;
}
.cc-legal-nav ul { list-style: none; margin: 0; padding: 0; }
.cc-legal-nav li + li { margin-top: 4px; }
.cc-legal-nav a {
  display: block; padding: 9px 12px; border-radius: var(--cc-radius-sm);
  font-size: 14px; font-weight: 500; color: var(--cc-primary); text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.cc-legal-nav a:hover { background: #fff; color: var(--cc-ink); }
.cc-legal-nav a.is-current { background: var(--cc-graphite); color: #fff; }
.cc-legal-nav .cc-legal-nav-help {
  margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--cc-line);
  font-size: 13px; line-height: 1.7;
}
.cc-legal-nav .cc-legal-nav-help a { display: inline; padding: 0; color: var(--cc-accent); font-weight: 600; }
.cc-legal-nav .cc-legal-nav-help a:hover { background: none; color: var(--cc-ink); }

.cc-legal-body { max-width: 78ch; }
.cc-legal-effective {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cc-cream); border: 1px solid var(--cc-accent-soft);
  color: var(--cc-primary); border-radius: var(--cc-radius-pill);
  padding: 8px 18px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 26px;
}
.cc-legal-lead { font-size: 17px; line-height: 1.8; color: var(--cc-primary-3); }
.cc-legal-body h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 46px 0 14px; padding-top: 30px;
  border-top: 1px solid var(--cc-line-soft);
}
.cc-legal-body h2:first-of-type { border-top: 0; padding-top: 0; }
.cc-legal-body h3 { font-size: 18px; margin: 28px 0 10px; }
.cc-legal-body p { margin: 0 0 16px; }
.cc-legal-body ul, .cc-legal-body ol { margin: 0 0 18px; padding-left: 22px; }
.cc-legal-body li {
  font-size: 15px; line-height: 1.75; color: var(--cc-mute); margin-bottom: 8px;
}
.cc-legal-body li::marker { color: var(--cc-accent); }
.cc-legal-body a { color: var(--cc-accent); font-weight: 600; text-decoration: none; }
.cc-legal-body a:hover { color: var(--cc-ink); text-decoration: underline; }
.cc-legal-body strong { color: var(--cc-ink); }

.cc-legal-note {
  background: var(--cc-stone); border-left: 3px solid var(--cc-accent);
  border-radius: 0 var(--cc-radius) var(--cc-radius) 0;
  padding: 20px 24px; margin: 26px 0;
}
.cc-legal-note p:last-child { margin-bottom: 0; }

.cc-legal-cta {
  margin-top: 48px; padding: 32px;
  background: var(--cc-graphite); color: #fff;
  border-radius: var(--cc-radius-lg);
}
.cc-legal-cta h3 { color: #fff; margin: 0 0 10px; }
.cc-legal-cta p { color: rgba(255,255,255,0.7); margin: 0 0 20px; }
.cc-legal-cta .btn-default { margin-right: 10px; }

/* Footer gains a fifth column for policy links */
.footer-grid { grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.3fr; }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
