/* =============================================
   LAZARUS — Design System
   ============================================= */

:root {
  --bg:           #0a0a0a;
  --bg-surface:   #111111;
  --bg-elevated:  #171717;
  --bg-hover:     #1d1d1d;
  --border:       rgba(255, 255, 255, 0.07);
  --border-md:    rgba(255, 255, 255, 0.11);
  --border-high:  rgba(255, 255, 255, 0.18);
  --text:         #f0f0f0;
  --text-muted:   #888;
  --text-subtle:  #444;
  --accent:       #c9a84c;
  --accent-light: #d4b96a;
  --accent-dim:   rgba(201, 168, 76, 0.1);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --nav-h:        60px;
  --container:    1100px;
}

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-brand-mark { color: var(--accent); font-size: 17px; line-height: 1; }
.nav-brand-name { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link {
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-admin {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  margin-left: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-md);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.nav-admin:hover {
  color: var(--text);
  border-color: var(--border-high);
  background: rgba(255,255,255,0.04);
}

/* =============================================
   PAGE SYSTEM
   ============================================= */

.page { display: none; padding-top: var(--nav-h); }
.page.active { display: block; animation: pageIn 0.3s ease; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HERO
   ============================================= */

.hero {
  padding: 110px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-small { padding: 72px 0 60px; }

.hero-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 24px;
  background: linear-gradient(160deg, #f4f4f4 20%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto;
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.section-alt { background: var(--bg-surface); }

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

.section-header { margin-bottom: 44px; }

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

.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* =============================================
   PHOTO GRID
   ============================================= */

.photo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 10px;
}

.photo-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.photo-item.photo-tall  { grid-row: 1 / 3; }
.photo-item.photo-wide  { grid-column: 1 / 3; }

.photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-elevated);
  color: var(--text-subtle);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.photo-placeholder:hover { background: var(--bg-hover); color: var(--text-muted); }
.photo-placeholder svg { opacity: 0.4; transition: opacity 0.2s; }
.photo-placeholder:hover svg { opacity: 0.7; }

/* =============================================
   MUSIC PLAYER
   ============================================= */

.track-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.track-item {
  display: grid;
  grid-template-columns: 36px 1fr auto 36px;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s ease;
}
.track-item:last-child { border-bottom: none; }
.track-item:hover { background: rgba(255,255,255,0.025); }
.track-item.playing { background: var(--accent-dim); }

.track-num {
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
  text-align: center;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.track-item.playing .track-num { display: none; }

.track-eq {
  display: none;
  text-align: center;
  color: var(--accent);
  font-size: 14px;
}
.track-item.playing .track-eq { display: block; }

.track-info { min-width: 0; }

.track-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}
.track-item.playing .track-title { color: var(--accent); }

.track-artist {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-duration {
  font-size: 13px;
  color: var(--text-subtle);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.track-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.track-btn:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.track-item.playing .track-btn { background: var(--accent-dim); color: var(--accent); }

/* =============================================
   PLACEHOLDER BLOCK
   ============================================= */

.placeholder-block {
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
}
.placeholder-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--text-subtle);
}
.placeholder-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.placeholder-sub { font-size: 13px; color: var(--text-subtle); }

/* =============================================
   DAYS GRID
   ============================================= */

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.day-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  cursor: pointer;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.day-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.day-card:hover {
  border-color: var(--border-md);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.day-card:hover::after { transform: scaleX(1); }
.day-card.is-open {
  border-color: rgba(201,168,76,0.35);
  background: var(--accent-dim);
}
.day-card.is-open::after { transform: scaleX(1); }

.day-number {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-subtle);
  margin-bottom: 14px;
  transition: color 0.2s;
}
.day-card:hover .day-number,
.day-card.is-open .day-number { color: var(--accent); }

.day-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.day-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.day-arrow {
  position: absolute;
  bottom: 16px; right: 16px;
  color: var(--text-subtle);
  transition: color 0.2s, transform 0.2s;
}
.day-card:hover .day-arrow { color: var(--text-muted); transform: translateX(2px); }
.day-card.is-open .day-arrow { color: var(--accent); }

/* =============================================
   DRAWER
   ============================================= */

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 400px;
  max-width: 100vw;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-md);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.drawer.open {
  transform: translateX(0);
  box-shadow: -24px 0 80px rgba(0,0,0,0.6);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-day-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.drawer-close {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.drawer-close:hover { background: rgba(255,255,255,0.07); color: var(--text); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 22px 40px;
  scroll-behavior: smooth;
}
.drawer-body::-webkit-scrollbar { width: 4px; }
.drawer-body::-webkit-scrollbar-track { background: transparent; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 2px; }

.drawer-day-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.drawer-day-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.drawer-section { margin-bottom: 28px; }
.drawer-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 14px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; }

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  position: relative;
  padding-bottom: 16px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 18px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: 17px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--border-md);
  background: var(--bg-surface);
  z-index: 1;
}
.timeline-item:first-child .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  padding-top: 2px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.timeline-content { padding-top: 0; }
.timeline-activity {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.timeline-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 6px; }

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.15s;
}
.checklist-item:hover { border-color: var(--border-md); }
.checklist-icon { font-size: 15px; flex-shrink: 0; line-height: 1; }

/* =============================================
   NOW PLAYING BAR
   ============================================= */

.now-playing {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  height: 62px;
  background: rgba(12, 12, 12, 0.94);
  border-top: 1px solid var(--border-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.now-playing.visible { transform: translateY(0); }

.now-playing-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.now-playing-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.np-icon { font-size: 15px; color: var(--accent); flex-shrink: 0; }
.np-meta { min-width: 0; }
.np-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-artist {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.np-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.np-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.np-play-btn {
  width: 34px; height: 34px;
  background: var(--accent);
  color: #000;
}
.np-play-btn:hover { background: var(--accent-light); }

.np-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 2;
  max-width: 280px;
  flex-shrink: 0;
}
.np-time {
  font-size: 11px;
  color: var(--text-subtle);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  width: 32px;
}
.np-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.np-bar:hover .np-fill { background: var(--accent-light); }
.np-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 860px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 160px;
  }
  .photo-item.photo-tall { grid-row: span 2; }
  .photo-item.photo-wide { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  :root { --container: 100%; }
  .nav-container { padding: 0 18px; }
  .section-container { padding: 0 18px; }
  .hero-container { padding: 0 18px; }
  .hero { padding: 80px 0 60px; }
  .hero-small { padding: 56px 0 44px; }
  .section { padding: 60px 0; }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-item { height: 200px; }
  .photo-item.photo-tall { grid-row: auto; }
  .photo-item.photo-wide { grid-column: auto; }

  .now-playing-inner { padding: 0 16px; gap: 14px; }
  .np-progress { display: none; }

  .drawer { width: 100%; }
  .days-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* =============================================
   PHOTO HERO ROW (Foto's page — top 3)
   ============================================= */

.photo-hero-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 320px;
}

.photo-hero-slot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-hero-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-hero-slot:hover img { transform: scale(1.03); }

.photo-placeholder-block {
  background: var(--bg-elevated);
}
.photo-placeholder-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-subtle);
}

/* =============================================
   PHOTO COLLECTION GRID
   ============================================= */

.photo-collection {
  columns: 3;
  column-gap: 10px;
}

.photo-collection-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
}
.photo-collection-item img {
  width: 100%; display: block;
  transition: transform 0.35s ease;
}
.photo-collection-item:hover img { transform: scale(1.03); }

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.photo-collection-item:hover .photo-caption { opacity: 1; }

.photo-collection-empty {
  color: var(--text-subtle);
  font-size: 14px;
  padding: 48px 0;
  text-align: center;
}

/* =============================================
   JOKE GENERATOR
   ============================================= */

.qa-input-row { margin-bottom: 16px; }
.qa-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.qa-input:focus { border-color: var(--accent); }
.qa-input::placeholder { color: var(--text-subtle); }

.photo-collection-divider {
  border-top: 1px solid var(--border-md);
  margin-bottom: 40px;
}

.joke-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.joke-card {
  width: 100%;
  min-height: 180px;
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color 0.3s ease;
}
.joke-card.has-joke {
  border-color: rgba(201,168,76,0.25);
  background: var(--bg-elevated);
  justify-content: flex-start;
  text-align: left;
}

.joke-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-subtle);
}
.joke-idle p { font-size: 14px; }

.joke-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  white-space: pre-wrap;
}

.joke-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--accent);
  color: #000;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}
.joke-btn:hover  { background: var(--accent-light); }
.joke-btn:active { transform: scale(0.97); }
.joke-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.joke-disclaimer {
  font-size: 12px;
  color: var(--text-subtle);
  text-align: center;
}

.joke-error {
  color: #e05c5c;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}

/* Spinner */
.spinner { animation: spin 0.8s linear infinite; }
.hidden  { display: none !important; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =============================================
   DAYS LOADING STATE
   ============================================= */

.days-loading {
  color: var(--text-subtle);
  font-size: 14px;
  padding: 48px 0;
  text-align: center;
  grid-column: 1 / -1;
}

/* =============================================
   RESPONSIVE — new sections
   ============================================= */

@media (max-width: 860px) {
  .photo-hero-row { height: 220px; }
  .photo-collection { columns: 2; }
}

@media (max-width: 640px) {
  .photo-hero-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-hero-slot { height: 200px; }
  .photo-collection { columns: 1; }
  .joke-card { padding: 24px 20px; }
  .joke-btn { width: 100%; justify-content: center; }
}
