/* =========================================================
   COMMISSIONED 2 CHRIST — SITE STYLESHEET (v2, premium/refined)
   Palette from the Culture 2 Christ brand flyer; typography and
   interaction language inspired by clean, spacious product sites.
   ========================================================= */

:root {
  --c2c-black: #0d0d0d;
  --c2c-black-soft: #161616;
  --c2c-red: #dc0e10;
  --c2c-red-dark: #a90c0e;
  --c2c-white: #fbfaf8;
  --c2c-off: #f3f1ed;
  --c2c-gray: #6e6e6e;
  --c2c-border: #0000000f;

  --font-display: 'Anton', 'Arial Narrow Bold', sans-serif;
  --font-label: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 980px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.04);
  --shadow-md: 0 1px 2px rgba(0,0,0,0.04), 0 24px 48px -18px rgba(0,0,0,0.16);
  --shadow-lg: 0 30px 70px -20px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c2c-white);
  color: var(--c2c-black);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }

/* Brand accent numerals keep the flyer's bold poster feel */
h1 .accent, .stat .num, .event-date .num {
  font-family: var(--font-display);
  letter-spacing: 0;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  color: var(--c2c-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--c2c-red);
  display: inline-block;
  border-radius: 2px;
}

.text-red { color: var(--c2c-red); }
.lede {
  font-size: 1.15rem;
  font-weight: 400;
  color: #444;
  max-width: 620px;
  letter-spacing: -0.005em;
}
.section-label-vert {
  writing-mode: vertical-rl;
  font-family: var(--font-label);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.section-label-vert .text-red { font-weight: 700; }

/* ---------- Buttons (pill, soft motion) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c2c-red); color: #fff; border-color: var(--c2c-red); box-shadow: 0 10px 24px -10px rgba(220,14,16,0.55); }
.btn-primary:hover { background: var(--c2c-red-dark); border-color: var(--c2c-red-dark); box-shadow: 0 16px 32px -10px rgba(220,14,16,0.6); }
.btn-dark { background: var(--c2c-black); color: #fff; border-color: var(--c2c-black); box-shadow: 0 10px 24px -12px rgba(0,0,0,0.5); }
.btn-dark:hover { background: #000; box-shadow: 0 16px 32px -12px rgba(0,0,0,0.55); }
.btn-outline { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-outline:hover { background: #fff; color: var(--c2c-black); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--c2c-black); border-color: rgba(0,0,0,0.18); }
.btn-outline-dark:hover { background: var(--c2c-black); color: #fff; border-color: var(--c2c-black); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 12px 24px -18px rgba(0,0,0,0.15); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 38px; width: auto; border-radius: 6px; }
.brand-text {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.brand-text small {
  display: block;
  font-size: 0.62rem;
  color: var(--c2c-gray);
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: #333;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--c2c-black); }
.nav-links a.active { background: var(--c2c-black); color: #fff; }
.nav-cta { background: var(--c2c-red) !important; color: #fff !important; margin-left: 4px; }
.nav-cta:hover { background: var(--c2c-red-dark) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--c2c-black); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 64px 12px auto 12px;
    background: rgba(251, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 2px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin-top: 6px; margin-left: 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #1c1c1c 0%, #0d0d0d 55%, #050505 100%);
  color: #fff;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: -20% -10%;
  opacity: 0.35;
  background: radial-gradient(circle at 30% 20%, rgba(220,14,16,0.25), transparent 45%),
              radial-gradient(circle at 80% 60%, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 130px 24px 100px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero-tag {
  font-family: var(--font-label);
  letter-spacing: 2.5px;
  color: var(--c2c-red);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  display: block;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--c2c-red); }
.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: #c7c5c1;
  max-width: 560px;
  margin: 22px 0 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 74px; padding-bottom: 70px; }
  .hero-side { display: none; }
}

.stripe-block {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  padding: 4px;
  backdrop-filter: blur(8px);
}
.stripe-block span {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
}
.stripe-block .lbl { color: #d8d6d2; }
.stripe-block .val { background: var(--c2c-red); color: #fff; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.bg-black { background: var(--c2c-black); color: #fff; }
.bg-off { background: var(--c2c-off); }
.bg-red { background: var(--c2c-red); color: #fff; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* ---------- Reveal-on-scroll ----------
   Progressive enhancement: elements are fully visible by default so the
   site works with JS off/blocked. The hidden "pre-reveal" state only
   applies once an early inline script confirms JS is running (html.js-anim),
   and main.js also force-reveals everything after a short safety timeout
   in case IntersectionObserver ever fails to fire. */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js-anim .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p { color: #555; margin: 0; font-size: 0.97rem; line-height: 1.6; }
.card .icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(155deg, #ffeceb, #fff5f4);
  color: var(--c2c-red);
}
.card .icon svg { width: 24px; height: 24px; }

/* ---------- Platform / social tiles ---------- */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 800px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
.platform-tile {
  background: #161616;
  color: #fff;
  padding: 36px 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.platform-tile:hover { background: var(--c2c-red); transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(220,14,16,0.45); }
.platform-tile .p-icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.35); border-radius: 16px;
  transition: border-color 0.3s ease;
}
.platform-tile:hover .p-icon { border-color: rgba(255,255,255,0.7); }
.platform-tile .p-icon svg { width: 26px; height: 26px; fill: currentColor; }
.platform-tile .p-name {
  font-family: var(--font-label); font-weight: 600;
  letter-spacing: -0.01em; font-size: 0.92rem;
}
.platform-tile .p-handle { font-size: 0.8rem; color: #a8a8a8; margin-top: 4px; }
.platform-tile:hover .p-handle { color: #ffe1e1; }

.live-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(220,14,16,0.12);
  border: 1px solid rgba(220,14,16,0.25);
  color: var(--c2c-red);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
}
.bg-black .live-banner { background: rgba(220,14,16,0.14); color: #ff6b6d; border-color: rgba(220,14,16,0.3); }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--c2c-red);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220,14,16,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(220,14,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,14,16,0); }
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- Homepage media ---------- */
.media-home { background: var(--c2c-white); }
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.youtube-grid article { min-width: 0; }
.youtube-grid h3 { margin: 18px 4px 0; }
.shorts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(42px, 8vw, 96px);
  align-items: center;
}
.shorts-copy .lede { margin-bottom: 28px; }
.short-rotator { width: 100%; max-width: 390px; margin-inline: auto; }
.short-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.short-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}
.short-video[hidden] { display: none; }
.rotator-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: #d8d6d2;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
}
.rotator-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.rotator-controls button:hover { background: var(--c2c-red); transform: translateY(-2px); }
.home-paths a.card { display: block; }

@media (max-width: 800px) {
  .youtube-grid, .shorts-layout { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; margin-bottom: 32px; }
  .shorts-copy { text-align: center; }
  .shorts-copy .eyebrow { justify-content: center; }
  .shorts-copy .lede { margin-inline: auto; }
}

@media (max-width: 620px) {
  section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .container { padding-inline: 18px; }
  .nav-wrap { padding-inline: 18px; }
  .hero-grid { padding-inline: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .youtube-grid { gap: 32px; }
  .short-rotator { max-width: min(100%, 330px); }
  .card { padding: 30px 24px; }
  .page-hero { padding: 66px 0 48px; }
  .stripe-block { max-width: 100%; }
}
.video-embed-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #000);
}
.video-placeholder-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: #8a8a8a;
  font-family: var(--font-label); letter-spacing: 0.5px; font-size: 0.85rem; font-weight: 500;
}
.video-placeholder-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(220,14,16,0.15);
  border: 1px solid rgba(220,14,16,0.35);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-play::after {
  content: "";
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--c2c-red);
  margin-left: 4px;
}

/* ---------- Events ---------- */
#event-list { display: flex; flex-direction: column; gap: 14px; }
.event-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.event-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date {
  background: var(--c2c-off);
  color: var(--c2c-black);
  text-align: center;
  padding: 12px 6px;
  border-radius: 14px;
  font-family: var(--font-label);
}
.event-date .num { font-size: 1.7rem; line-height: 1; color: var(--c2c-red); }
.event-date .mon { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1.5px; font-weight: 600; color: var(--c2c-gray); }
.event-info h3 { margin-bottom: 6px; }
.event-meta { font-family: var(--font-label); font-size: 0.82rem; letter-spacing: 0; color: var(--c2c-gray); font-weight: 500; }
.event-meta span { margin-right: 16px; }
.event-recurring-badge {
  display: inline-block;
  background: rgba(220,14,16,0.1);
  color: var(--c2c-red);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .event-row { grid-template-columns: 64px 1fr; padding: 18px; }
  .event-row .btn { grid-column: 1 / -1; margin-top: 6px; }
}

/* ---------- Forms ---------- */
.form-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .form-panel { padding: 28px 22px; } }
label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 20px 0 8px;
  color: #222;
}
label:first-child { margin-top: 0; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fbfaf8;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--c2c-red); background: #fff;
  box-shadow: 0 0 0 4px rgba(220,14,16,0.1);
}
textarea { resize: vertical; min-height: 140px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; }
.checkbox-row input { margin-top: 4px; width: auto; }
.checkbox-row label { margin: 0; font-weight: 400; font-size: 0.9rem; letter-spacing: 0; color: #444; }
.form-note {
  font-size: 0.85rem;
  color: var(--c2c-gray);
  margin-top: 10px;
}
.privacy-box {
  background: var(--c2c-off);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 30px;
  border-left: 3px solid var(--c2c-red);
}
.form-success {
  display: none;
  background: var(--c2c-black);
  color: #fff;
  padding: 44px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.form-success h3 { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c2c-black); color: #cfcdc9; padding: 76px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--c2c-red); }
.footer-brand img { height: 38px; margin-bottom: 16px; border-radius: 6px; }
.footer-brand p { max-width: 320px; color: #9a9894; font-size: 0.92rem; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { background: var(--c2c-red); border-color: var(--c2c-red); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.8rem; color: #74726e; flex-wrap: wrap; gap: 10px;
}

.social-row-dark { display: flex; gap: 10px; margin-top: 18px; }
.social-row-dark a {
  width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-row-dark a:hover { background: var(--c2c-red); border-color: var(--c2c-red); transform: translateY(-3px); }
.social-row-dark a:hover svg { fill: #fff; }
.social-row-dark svg { width: 16px; height: 16px; fill: var(--c2c-black); transition: fill 0.25s ease; }

/* ---------- Misc ---------- */
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.tag-pill {
  font-family: var(--font-label); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.3px; border: 1px solid currentColor; padding: 6px 14px; border-radius: var(--radius-pill);
}
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 850px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-frame img { width: 100%; }
.stat { text-align: center; }
.stat .num { font-size: 2.6rem; color: var(--c2c-red); }
.stat .lbl { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: var(--c2c-gray); font-weight: 600; }

.page-hero {
  background: radial-gradient(120% 160% at 85% 0%, #1c1c1c 0%, #0d0d0d 55%, #050505 100%);
  color: #fff;
  padding: 84px 0 60px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  font-family: var(--font-label); font-weight: 500; font-size: 0.82rem;
  letter-spacing: -0.005em; color: #9a9894; margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--c2c-red); }

.cta-band {
  background: linear-gradient(135deg, var(--c2c-red), var(--c2c-red-dark));
  color: #fff;
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .btn-dark:hover { background: #000; }

.anon-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c2c-black); color: #fff;
  padding: 9px 18px; border-radius: var(--radius-pill); font-family: var(--font-label);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.3px;
  margin-bottom: 22px;
}
.anon-badge svg { width: 14px; height: 14px; fill: var(--c2c-red); }
