/* ICUE — Cristo Unica Esperanza
   Adapted from web-propuesta visual system
   ───────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg: #f0e9dc;
  --bg-alt: #e8dfcd;
  --bg-card: #faf5ea;
  --bg-deep: #1c1812;
  --bg-deep-2: #2a241c;

  /* Ink */
  --ink: #1c1812;
  --ink-2: #4a3f30;
  --ink-3: #756651;
  --ink-mute: #a99a82;
  --hairline: rgba(28, 24, 18, 0.12);
  --hairline-soft: rgba(28, 24, 18, 0.06);
  --on-deep: #f0e9dc;
  --on-deep-2: rgba(240, 233, 220, 0.65);

  /* Accent */
  --accent: #b8744a;
  --accent-ink: #ffffff;
  --accent-soft: rgba(184, 116, 74, 0.12);

  /* Status */
  --live: #d63c3c;
  --live-glow: rgba(214, 60, 60, 0.45);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Type */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; }

/* ── Layout helpers ──────────────────────── */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ── Type scale ──────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0;
}
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 60ch;
  text-wrap: pretty;
}
.muted { color: var(--ink-3); }
.mono { font-family: var(--font-mono); font-size: 0.78em; letter-spacing: 0.02em; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { filter: brightness(1.05); }
.btn-ghost { border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-deep { background: var(--bg); color: var(--ink); }
.btn-on-deep:hover { background: var(--accent); color: var(--accent-ink); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ── Live banner ─────────────────────────── */
.live-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-deep);
  color: var(--on-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: none;
}
.live-bar.is-live { display: block; }
.live-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 44px;
  padding: 0 var(--gutter);
  font-size: 13px;
  font-weight: 500;
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 var(--live-glow);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--live-glow); }
  50% { box-shadow: 0 0 0 8px rgba(214, 60, 60, 0); }
}
.live-label {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}
.live-bar a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
}
.live-bar a:hover { border-color: var(--bg); }

/* ── Nav ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(240, 233, 220, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-soft);
}
.live-bar.is-live ~ .nav { top: 44px; }
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 var(--gutter);
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 16px;
  line-height: 1.1;
}
.brand-mark {
  width: 40px; height: 40px;
  display: block;
  flex-shrink: 0;
}
.pastor-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
}
.brand-name { font-size: 14px; }
.brand-sub { font-size: 11px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.02em; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.16s ease, color 0.16s ease;
}
.nav-link:hover { background: rgba(28,24,18,0.06); color: var(--ink); }
.nav-link.active { color: var(--ink); background: rgba(28,24,18,0.06); }
.nav-cta { margin-left: 8px; }
.nav-live-dot { background: #ff5a5a; width: 7px; height: 7px; border-radius: 50%; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-mobile.is-open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-mobile a:hover { color: var(--accent); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(28,24,18,0.18) 0%, rgba(28,24,18,0.82) 100%),
    repeating-linear-gradient(135deg,
      rgba(93,70,50,0.55) 0px, rgba(93,70,50,0.55) 28px,
      rgba(74,56,38,0.42) 28px, rgba(74,56,38,0.42) 56px),
    url('../assets/img/hero-iglesia.jpg') center / cover no-repeat,
    #4a3826;
}
.hero-content {
  position: relative;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  color: var(--on-deep);
}
.hero-content .eyebrow { color: rgba(240,233,220,0.7); }
.hero-content .eyebrow::before { background: var(--accent); }
.hero-display {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero-display em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid rgba(240,233,220,0.18);
  align-items: flex-end;
}
.hero-meta-item .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,233,220,0.55);
  margin-bottom: 6px;
}
.hero-meta-item .val {
  font-size: 17px;
  font-weight: 500;
  color: var(--on-deep);
  line-height: 1.35;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-left: auto;
}

/* ── Info strip ──────────────────────────── */
.info-strip {
  background: var(--bg-deep-2);
  color: var(--on-deep);
  padding: 22px 0;
}
.info-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.info-strip .sep { color: rgba(240,233,220,0.3); }
.info-strip strong { color: var(--accent); font-weight: 600; }

/* ── Cards / grid ────────────────────────── */
.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; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive split layouts ────────────── */
.g-split   { display:grid; grid-template-columns:1fr 1.3fr; gap:clamp(40px,6vw,96px); align-items:center; }
.g-wide    { display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(40px,6vw,96px); align-items:center; }
.g-half    { display:grid; grid-template-columns:1fr 1fr;   gap:clamp(32px,5vw,72px); align-items:center; }
.g-thirds  { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.g-split.top, .g-wide.top, .g-half.top { align-items:start; }
@media (max-width: 880px) {
  .g-split, .g-wide, .g-half { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .g-thirds { grid-template-columns:1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { border-color: var(--hairline); }
.card-title { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px; }
.card-body { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* Schedule rows */
.sched-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.sched-row:last-child { border-bottom: 1px solid var(--hairline); }
.sched-day {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.sched-title { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.sched-sub { color: var(--ink-3); font-size: 14px; margin-top: 2px; }
.sched-time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.sched-time .live-pill {
  display: inline-flex; align-items: center; gap: 5px;
  margin-left: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--live);
  padding: 2px 8px;
  border: 1px solid var(--live);
  border-radius: 999px;
}
.sched-time .live-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
}

/* ── Section header ──────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head .right { display: flex; align-items: center; gap: 10px; }

/* ── Page header (inner pages) ───────────── */
.page-head {
  padding: clamp(72px, 9vw, 130px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--hairline);
}
.page-head .crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.page-head .display { max-width: 18ch; }
.page-head .lead { margin-top: 22px; }

/* ── Events carousel ─────────────────────── */
.events-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}
.events-track::-webkit-scrollbar { display: none; }
.events-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28,24,18,0.12);
  transition: transform 0.25s ease;
}
.events-item:hover { transform: translateY(-3px); }
.events-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.events-empty {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  color: var(--ink-3);
  font-size: 15px;
}

/* ── Blog / Studies ──────────────────────── */
.blog-search {
  position: relative;
}
.blog-search input {
  width: 240px;
  height: 38px;
  padding: 0 14px 0 36px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--bg-card);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease;
}
.blog-search input:focus { border-color: var(--ink); }
.blog-search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.blog-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}
.blog-card .tag { color: var(--accent); }
.blog-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 0;
}
.blog-card-lede {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
}
.blog-card-footer .pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
}

.filter-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-chip {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.filter-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* ── Forms ───────────────────────────────── */
.form-grid { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field textarea, .field select {
  font: inherit;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none;
  padding: 24px;
  background: #ecfdf5;
  border-radius: var(--radius);
  color: #047857;
  text-align: center;
  font-weight: 600;
}
.form-success.is-visible { display: block; }

/* ── Misc ────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.pill.accent { background: var(--accent-soft); color: var(--accent); border-color: transparent; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.ph-image {
  position: relative;
  background:
    repeating-linear-gradient(45deg,
      rgba(28,24,18,0.06) 0 8px,
      transparent 8px 16px),
    var(--bg-alt);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}

.flex-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.spacer { flex: 1; }
.divider { height: 1px; background: var(--hairline); margin: clamp(48px, 6vw, 72px) 0; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--bg-deep);
  color: var(--on-deep);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  margin-top: clamp(64px, 9vw, 120px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,233,220,0.12);
}
.footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,233,220,0.5);
  margin: 0 0 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(240,233,220,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand .brand-mark { filter: brightness(0) invert(1); }
.footer-brand-name { font-size: 18px; font-weight: 700; }
.footer-brand-sub { font-size: 13px; color: rgba(240,233,220,0.6); margin-top: 4px; }
.footer-vox { font-size: 14px; color: rgba(240,233,220,0.7); margin-top: 18px; max-width: 32ch; line-height: 1.55; }

.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(240,233,220,0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 600;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── WhatsApp floating button ────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(184,116,74,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
}
.wa-float:hover { transform: scale(1.08); background: #a5653d; }
.wa-float svg { width: 28px; height: 28px; }

/* ── Video tile ──────────────────────────── */
.video-tile { display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(28,24,18,0.1) 0%, rgba(28,24,18,0.5) 100%),
    repeating-linear-gradient(45deg, #2a241c 0 14px, #1f1a14 14px 28px);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.video-tile:hover .video-thumb { transform: translateY(-2px); }
.video-thumb::after {
  content: "▶";
  position: absolute;
  bottom: 14px; left: 14px;
  width: 44px; height: 44px;
  background: rgba(240,233,220,0.95);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  padding-left: 3px;
}
.video-thumb .duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(28,24,18,0.85);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}
.video-thumb .topic {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(240,233,220,0.55);
  letter-spacing: 0.04em;
}
.video-thumb .title-overlay {
  position: absolute;
  left: 14px; right: 80px;
  bottom: 70px;
  color: var(--bg);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.012em;
}
.video-meta { display: flex; flex-direction: column; gap: 4px; }
.video-meta .series {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.video-meta .vtitle { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; line-height: 1.3; }
.video-meta .vsub {
  font-size: 13.5px; color: var(--ink-3);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.video-meta .vsub .dot { width: 3px; height: 3px; background: var(--ink-mute); border-radius: 50%; }

/* ── Zone tile ───────────────────────────── */
.zone-tile {
  padding: 22px 20px;
  border: 1px solid rgba(240,233,220,0.14);
  border-radius: 12px;
  background: rgba(240,233,220,0.03);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 880px) {
  .hide-mobile { display: none !important; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .sched-row {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }
  .sched-time { grid-column: 2; }

  .hero-display { font-size: clamp(40px, 10vw, 64px); }
  .hero-meta { gap: 20px 32px; }
}

@media (max-width: 640px) {
  .row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-search input { width: 100%; }
  .events-item { width: 260px; }
}

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