/* ═══════════════════════════════════════════════════════════
   P. Julio Ramírez Cabrera — Hoja de estilos principal
   Versión 4 · Diseño profesional
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #080c10;
  --bg2:      #0c1018;
  --surface:  #0f1520;
  --card:     #111925;
  --card2:    #141e2a;
  --text:     #e8edf5;
  --muted:    #8a9ab5;
  --faint:    #4a5568;
  --line:     rgba(138,154,181,.14);
  --line2:    rgba(138,154,181,.08);

  /* Accents */
  --gold:     #c9963a;
  --gold-hi:  #e0b050;
  --gold-bg:  rgba(201,150,58,.08);
  --gold-line:rgba(201,150,58,.25);
  --red:      #e5373a;
  --red-bg:   rgba(229,55,58,.08);
  --red-line: rgba(229,55,58,.25);
  --green:    #1db954;
  --green-bg: rgba(29,185,84,.08);
  --green-line:rgba(29,185,84,.22);
  --white-btn:#eef2f8;

  --radius:   16px;
  --radius-sm:10px;
  --radius-lg:22px;
  --shadow:   0 8px 28px rgba(0,0,0,.32);
  --shadow-lg:0 16px 48px rgba(0,0,0,.42);
  --max:      1100px;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── BODY GRADIENT ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 0% 0%,   rgba(201,150,58,.055) 0%, transparent 60%),
    radial-gradient(700px 400px at 100% 0%,  rgba(229,55,58,.045)  0%, transparent 55%),
    radial-gradient(600px 500px at 50% 100%, rgba(29,185,84,.025)  0%, transparent 60%);
}

/* ── CONTAINER ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,12,16,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; }
.brand-badge {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: #080c10;
  font-weight: 900;
  font-size: 14px;
  display: grid; place-items: center;
  letter-spacing: -.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,150,58,.30);
}
.brand strong { display: block; font-size: 14px; line-height: 1.2; font-weight: 600; }
.brand small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 1px; font-weight: 400; }

/* Nav desktop */
nav { display: flex; gap: 2px; }
nav a {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: var(--line);
}
/* Special highlight for Junio tab */
nav a.nav-junio {
  color: #c4923a;
  border-color: rgba(196,146,58,.2);
  background: rgba(196,146,58,.06);
}
nav a.nav-junio:hover, nav a.nav-junio.active {
  background: rgba(196,146,58,.12);
  border-color: rgba(196,146,58,.35);
  color: var(--gold-hi);
}

/* Actions */
.actions { display: flex; gap: 8px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { background: rgba(255,255,255,.07); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn.primary {
  background: var(--white-btn);
  color: #080c10;
  border-color: rgba(238,242,248,.18);
}
.btn.primary:hover { background: #fff; box-shadow: 0 4px 16px rgba(238,242,248,.15); }

.btn.youtube {
  background: rgba(229,55,58,.88);
  border-color: rgba(229,55,58,.30);
  color: #fff;
}
.btn.youtube:hover { background: var(--red); }

.btn.spotify-btn {
  background: rgba(29,185,84,.12);
  border-color: var(--green-line);
  color: var(--green);
}
.btn.spotify-btn:hover { background: rgba(29,185,84,.20); }

.btn.gold-btn {
  background: rgba(201,150,58,.12);
  border-color: var(--gold-line);
  color: var(--gold-hi);
}
.btn.gold-btn:hover { background: rgba(201,150,58,.20); }

.btn.lg { padding: 12px 22px; font-size: 14px; border-radius: 13px; }
.btn.sm { padding: 6px 11px; font-size: 12px; }

/* Menu burger */
.menu-btn {
  display: none;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu { display: none; padding: 0 0 14px; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color .15s, background .15s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); background: rgba(255,255,255,.04); }
.mobile-menu a.nav-junio { color: var(--gold); }

/* ══════════════════════════════════════
   MAIN / LAYOUT
══════════════════════════════════════ */
main { flex: 1; padding: 26px 0 36px; }

/* ── PAGE HEADER ── */
.page-header { margin: 0 0 28px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-eyebrow::before, .page-eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--gold-line); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 10px;
  letter-spacing: -.3px;
}
.lead {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
  max-width: 68ch;
}

/* ── HERO ── */
.hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  margin-bottom: 28px;
  position: relative;
}
.hero img { width: 100%; display: block; }

/* ── GRID ── */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── CARDS ── */
.card {
  background: linear-gradient(160deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: rgba(138,154,181,.24); }
.card-inner { background: rgba(255,255,255,.025); border: 1px solid var(--line2); border-radius: var(--radius-sm); padding: 16px; }

.card h2 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.card h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}

/* ── SECTION SPACING ── */
.section { margin-top: 20px; }

/* ── HELPERS / TYPOGRAPHY ── */
.helper { color: var(--muted); font-size: 13px; line-height: 1.7; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.text-gold { color: var(--gold-hi); }
.text-muted { color: var(--muted); }
.divider { border: none; border-top: 1px solid var(--line); margin: 20px 0; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.badge-gold { background: var(--gold-bg); border: 1px solid var(--gold-line); color: var(--gold-hi); }
.badge-red  { background: var(--red-bg);  border: 1px solid var(--red-line);  color: var(--red); }
.badge-green{ background: var(--green-bg);border: 1px solid var(--green-line);color: var(--green); }
.dot-pulse { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: dpulse 2s ease-in-out infinite; }
@keyframes dpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

/* ── EMBEDS ── */
.embed { width: 100%; border: 0; border-radius: 14px; background: #000; }
.embed.spotify { height: 352px; }
.embed.youtube { aspect-ratio: 16/9; }

/* ── STAT MINI CARDS ── */
.stat-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line2);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.stat-card strong { display: block; font-size: 24px; font-weight: 700; color: var(--gold-hi); line-height: 1; }
.stat-card span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block; }

/* ── LINK LIST ── */
.link-list { display: flex; flex-direction: column; gap: 8px; }
.link-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: background .15s, border-color .15s;
}
.link-item:hover { background: rgba(255,255,255,.045); border-color: var(--line); }
.link-item-icon { font-size: 18px; flex-shrink: 0; }
.link-item-info { flex: 1; min-width: 0; }
.link-item-info strong { display: block; font-size: 13.5px; font-weight: 600; }
.link-item-info span { display: block; font-size: 12px; color: var(--muted); }
.link-item-arrow { color: var(--faint); font-size: 16px; flex-shrink: 0; }

/* ── FORM ELEMENTS ── */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(201,150,58,.45);
  background: rgba(255,255,255,.05);
}
.form-textarea { min-height: 130px; resize: vertical; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--faint);
  font-size: 12.5px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--muted); font-size: 12px; transition: color .15s; }
.footer-links a:hover { color: var(--text); }

/* ══════════════════════════════════════
   JUNE / SAGRADO CORAZON PAGE
   (styles specific to junio.html)
══════════════════════════════════════ */
.sc-page body,
.junio-page {
  /* override gradient for this page */
}
.sc-hero {
  position: relative;
  text-align: center;
  padding: 40px 20px 30px;
  border: 1px solid rgba(185,28,28,.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(44,5,5,.6) 0%, rgba(17,6,6,.4) 100%);
  margin-bottom: 28px;
  overflow: hidden;
}
.sc-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(185,28,28,.14) 0%, transparent 65%);
}
.sc-heart {
  position: relative; z-index: 1;
  font-size: 2.6rem;
  animation: scPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(220,38,38,.65));
  display: block; margin-bottom: 12px;
}
@keyframes scPulse {
  0%,100%{transform:scale(1); filter:drop-shadow(0 0 20px rgba(220,38,38,.65))}
  50%    {transform:scale(1.08); filter:drop-shadow(0 0 32px rgba(220,38,38,.9))}
}
.sc-title {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.7rem);
  font-weight: 700; line-height: 1.2;
  color: #f5e6d3;
  text-shadow: 0 2px 18px rgba(185,28,28,.3);
  margin: 0 0 6px;
}
.sc-subtitle {
  position: relative; z-index: 1;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(201,150,58,.85);
}
.sc-author {
  position: relative; z-index: 1;
  font-size: 12px; font-style: italic;
  color: rgba(201,150,58,.5); margin-top: 4px;
}
.sc-divider {
  position: relative; z-index: 1;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.6), transparent);
  margin: 14px auto 0;
}

/* Tab bar inside junio.html */
.sc-tabs-wrap {
  background: rgba(8,12,16,.7);
  border: 1px solid rgba(185,28,28,.2);
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 22px;
  display: flex; gap: 4px;
}
.sc-tab {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(196,146,58,.7);
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .2s ease;
  white-space: nowrap;
}
.sc-tab:hover:not(.active) { background: rgba(255,255,255,.03); color: rgba(196,146,58,.9); }
.sc-tab.active {
  background: linear-gradient(135deg, rgba(185,28,28,.7), rgba(120,10,10,.55));
  border-color: rgba(220,38,38,.55);
  color: #fff;
  box-shadow: 0 0 12px rgba(185,28,28,.25);
}

/* Day nav */
.sc-day-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }
.sc-nav-btn {
  background: rgba(185,28,28,.22);
  border: 1px solid rgba(220,38,38,.3);
  color: #f5e6d3;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s; font-family: Georgia, serif;
}
.sc-nav-btn:disabled { opacity: .25; cursor: default; }
.sc-nav-btn:not(:disabled):hover { background: rgba(185,28,28,.5); border-color: rgba(220,38,38,.7); box-shadow: 0 0 12px rgba(185,28,28,.25); }
.sc-nav-btn:not(:disabled):active { transform: scale(.92); }

.sc-day-info { text-align: center; min-width: 72px; }
.sc-day-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(201,150,58,.85); }
.sc-day-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; color: #f5e6d3; text-shadow: 0 0 24px rgba(185,28,28,.35); }
.sc-day-month { font-size: 11px; color: rgba(196,146,58,.6); letter-spacing: .12em; text-transform: uppercase; }

/* Card content */
.sc-card { transition: opacity .24s ease, transform .24s ease; }
.sc-card.hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }

.sc-badge { text-align: center; margin-bottom: 14px; }
.sc-week-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(201,150,58,.85);
  border: 1px solid rgba(201,150,58,.28);
  background: rgba(201,150,58,.07);
  padding: 3px 12px; border-radius: 20px;
}

.sc-med-icon { font-size: 2.8rem; display: block; text-align: center; margin-bottom: 10px; filter: drop-shadow(0 0 10px rgba(220,38,38,.4)); }
.sc-med-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.35rem);
  font-weight: 700; text-align: center;
  color: #f5e6d3; line-height: 1.3; margin: 0 0 18px;
}

.sc-quote {
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(185,28,28,.28);
  border-left: 3px solid rgba(220,38,38,.8);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
  margin-bottom: 14px;
  position: relative;
}
.sc-quote::before {
  content: '\201C';
  position: absolute; top: -4px; left: 12px;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: rgba(185,28,28,.2); pointer-events: none;
}
.sc-quote-text {
  font-family: var(--font-display);
  font-size: clamp(.87rem, 2.2vw, .98rem);
  font-style: italic; line-height: 1.85;
  color: #f0d9be; margin-bottom: 8px;
}
.sc-quote-source { font-size: 11px; color: rgba(196,146,58,.75); letter-spacing: .05em; text-align: right; font-weight: 600; }

.sc-reflection {
  background: rgba(185,28,28,.07);
  border: 1px solid rgba(185,28,28,.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.sc-refl-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,150,58,.85); margin-bottom: 7px; }
.sc-refl-text { font-size: 14px; line-height: 1.78; color: #e8d0b5; }

.sc-prayer {
  text-align: center;
  background: linear-gradient(135deg, rgba(185,28,28,.10), rgba(100,10,10,.07));
  border: 1px solid rgba(185,28,28,.18);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.sc-prayer-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,150,58,.85); margin-bottom: 8px; }
.sc-prayer-text { font-family: var(--font-display); font-size: 14px; font-style: italic; color: #e8d0b5; line-height: 1.75; }

/* Podcast section */
.sc-podcast-header { text-align: center; margin-bottom: 20px; }
.sc-podcast-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; filter: drop-shadow(0 0 14px rgba(29,185,84,.4)); }
.sc-podcast-title { font-family: var(--font-display); font-size: clamp(1rem, 3vw, 1.25rem); font-weight: 700; color: #f5e6d3; margin: 0 0 4px; }
.sc-podcast-sub { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(201,150,58,.8); }
.sc-podcast-desc { font-size: 13.5px; color: rgba(196,146,58,.65); line-height: 1.65; max-width: 420px; margin: 10px auto 0; }
.sc-embed-wrap {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  box-shadow: 0 0 30px rgba(29,185,84,.05);
}
.sc-embed-wrap iframe { display: block; border-radius: 12px; }
.sc-podcast-tip { text-align: center; font-size: 12px; color: rgba(201,150,58,.45); letter-spacing: .04em; }
.sc-podcast-tip::before { content: '✦ '; } .sc-podcast-tip::after { content: ' ✦'; }

/* Calendar */
.sc-cal-header { text-align: center; margin-bottom: 16px; }
.sc-cal-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 4px; }
.sc-cal-nav-btn { background: rgba(185,28,28,.22); border: 1px solid rgba(220,38,38,.3); color: #f5e6d3; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; font-family: Georgia, serif; display: flex; align-items: center; justify-content: center; transition: all .18s; }
.sc-cal-nav-btn:hover { background: rgba(185,28,28,.5); }
.sc-cal-title { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; color: #f5e6d3; }
.sc-cal-sub { font-size: 11px; color: rgba(196,146,58,.55); letter-spacing: .1em; }
.sc-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.sc-cal-dow { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .08em; color: rgba(196,146,58,.6); text-transform: uppercase; padding: 4px 0 6px; }
.sc-cal-cell { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 7px; cursor: default; position: relative; transition: all .16s; }
.sc-cal-cell.has-med { cursor: pointer; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); }
.sc-cal-cell.has-med:hover { background: rgba(185,28,28,.22); border-color: rgba(220,38,38,.38); }
.sc-cal-cell.today { border: 1px solid rgba(220,38,38,.65) !important; background: rgba(185,28,28,.16) !important; }
.sc-cal-cell.selected { background: rgba(185,28,28,.52) !important; border-color: rgba(220,38,38,.8) !important; }
.sc-cal-num { font-size: 13px; color: #f5e6d3; line-height: 1; }
.sc-cal-cell:not(.has-med) .sc-cal-num { color: #3d2010; }
.sc-cal-icon { font-size: 10px; margin-top: 1px; line-height: 1; }
.sc-today-dot { width: 4px; height: 4px; background: rgba(220,38,38,.8); border-radius: 50%; margin-top: 2px; }
.sc-cal-legend { display: flex; gap: 12px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.sc-legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(196,146,58,.6); }
.sc-legend-box { width: 11px; height: 11px; border-radius: 3px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  nav { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 600px) {
  .page-title { font-size: 26px; }
  .actions .btn.primary, .actions .btn.youtube { display: none; }
  .actions .btn.primary:last-of-type { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-heart, .dot-pulse, .sc-card { animation: none; transition: none; }
}
