/* ============================================================
   STREET FOOD DISPATCH — Main Stylesheet
   Colors: Red #C8202B | Yellow #F5C518 | Cream #FBE9C8
   Fonts:  Anton (display) | Oswald (headings) | Inter (body)
   ============================================================ */

:root {
  --red:       #C8202B;
  --red-dark:  #A0191F;
  --red-light: #E8313D;
  --yellow:    #F5C518;
  --yellow-dk: #D4A800;
  --cream:     #FBE9C8;
  --cream-dk:  #F5DBA8;
  --white:     #FFFFFF;
  --dark:      #1A1208;
  --gray-900:  #1E1610;
  --gray-700:  #4A3D2E;
  --gray-500:  #7A6A55;
  --gray-300:  #C8B99A;
  --gray-100:  #F0E8D8;

  --font-display:  'Anton', sans-serif;
  --font-heading:  'Oswald', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(26, 18, 8, 0.12);
  --shadow-hover: 0 12px 40px rgba(26, 18, 8, 0.22);
  --shadow-red:   0 8px 32px rgba(200, 32, 43, 0.35);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: relative;
  background: #B01E28;
  overflow: hidden;
  padding: 0;
}

.header-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--yellow);
}
.wave-1 { width: 600px; height: 600px; top: -300px; right: -100px; }
.wave-2 { width: 400px; height: 400px; bottom: -200px; left: -80px; }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 18px;
}

/* LOGO */
.logo-badge {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-street {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
}
.logo-food {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--yellow);
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
.logo-dispatch {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.tagline {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-yt {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-yt svg { width: 18px; height: 18px; }
.nav-yt:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

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

.hero {
  background: #B01E28;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 400px at 110% 50%, rgba(245,197,24,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at -10% 80%, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}


.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  text-align: center;
  min-width: 140px;
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.16); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
  font-size: 14px;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   TOPICS FILTER BAR
   ============================================================ */

.topics-bar {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.filter-scroll {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.filter-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red-light);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.accent-bar {
  display: block;
  width: 6px;
  height: 32px;
  background: linear-gradient(180deg, var(--red) 0%, var(--yellow) 100%);
  border-radius: 3px;
  flex-shrink: 0;
}

/* ============================================================
   FEATURED VIDEO
   ============================================================ */

.featured-section {
  padding: 64px 0 0;
}

.featured-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

/* Featured video layout — injected by JS */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.featured-thumb-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.featured-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-thumb-wrap:hover img { transform: scale(1.04); }

.featured-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
}
.featured-thumb-wrap:hover .featured-play { background: rgba(200,32,43,0.5); }

.play-btn-lg {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition), background var(--transition);
}
.play-btn-lg:hover { transform: scale(1.1); background: var(--red-dark); }
.play-btn-lg svg { width: 30px; height: 30px; fill: var(--white); margin-left: 4px; }

.featured-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,32,43,0.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.featured-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.featured-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 14px;
}

.featured-info p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  padding: 12px 0;
  border-bottom: 2px solid var(--red);
  width: fit-content;
  transition: color var(--transition), gap var(--transition);
}
.watch-btn svg { width: 18px; height: 18px; }
.watch-btn:hover { gap: 14px; color: var(--red-dark); }

/* ============================================================
   VIDEO GRID
   ============================================================ */

.videos-section {
  padding: 56px 0 80px;
}

.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  transition: all var(--transition);
}
.view-btn svg { width: 18px; height: 18px; }
.view-btn.active, .view-btn:hover {
  background: var(--red);
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.video-grid.list-view {
  grid-template-columns: 1fr;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.list-view .video-card {
  flex-direction: row;
  align-items: stretch;
}

.card-thumb {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.list-view .card-thumb {
  padding-top: 0;
  width: 240px;
  height: 140px;
}

.card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.list-view .card-thumb img { position: absolute; }
.video-card:hover .card-thumb img { transform: scale(1.05); }

.card-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.video-card:hover .card-play-overlay { background: rgba(200,32,43,0.35); }

.play-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-red);
}
.play-icon svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.video-card:hover .play-icon { opacity: 1; transform: scale(1); }

.card-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-view .card-title { -webkit-line-clamp: 3; font-size: 17px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-300);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-meta svg { width: 13px; height: 13px; }

/* ============================================================
   LOAD MORE
   ============================================================ */

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */

.skeleton-thumb, .skeleton-line {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--cream-dk) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
.skeleton-thumb { width: 100%; padding-top: 56.25%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line.wide { width: 90%; }
.skeleton-line.medium { width: 60%; }
.skeleton-line.short { width: 40%; }

.skeleton-card .card-body { padding: 18px 20px 20px; }

.featured-skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.featured-skeleton .skeleton-thumb {
  padding-top: 0;
  width: 100%;
  height: 300px;
  border-radius: 0;
}
.featured-skeleton .skeleton-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}
.lightbox-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.lightbox-meta {
  padding: 20px 24px;
}
.lightbox-meta h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
}
.lightbox-meta p {
  font-size: 13px;
  color: var(--gray-300);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: var(--red); }

/* ============================================================
   API NOTICE
   ============================================================ */

.api-notice {
  background: var(--yellow);
  padding: 14px 0;
}
.notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
}
.notice-inner svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.notice-inner strong { font-weight: 700; margin-right: 6px; }
.notice-inner code {
  background: rgba(0,0,0,0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--gray-900);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { max-width: 400px; }

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo .logo-food { font-size: 28px; }
.footer-logo .logo-street { font-size: 10px; }
.footer-logo .logo-dispatch { font-size: 16px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.footer-yt-btn svg { width: 20px; height: 20px; }
.footer-yt-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 20px;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--yellow); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   INNER PAGES (about, contact, legal)
   ============================================================ */

.page-hero {
  background: #B01E28;
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero .header-bg-shapes { pointer-events: none; }
.page-hero-inner {
  position: relative;
}
.page-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
}

.page-body {
  padding: 72px 0 96px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.prose {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
}
.prose h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); text-decoration: underline; }
.prose a:hover { color: var(--red-dark); }
.prose strong { color: var(--dark); font-weight: 600; }

.prose .last-updated {
  display: inline-block;
  font-size: 13px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  color: var(--gray-300);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

/* Sidebar card */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 80px;
}
.sidebar-card + .sidebar-card { margin-top: 24px; }

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}
.sidebar-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sidebar-card .btn { width: 100%; justify-content: center; }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 32, 43, 0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg {
  width: 56px; height: 56px;
  color: var(--red);
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}
.form-success p { color: var(--gray-500); }

/* About stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.about-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--red);
  display: block;
  line-height: 1;
}
.about-stat .lbl {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 6px;
  display: block;
}

/* Topic pills */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.topic-pill {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(200,32,43,0.08);
  color: var(--red);
  border: 1px solid rgba(200,32,43,0.15);
}

@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

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

@media (max-width: 900px) {
  .hero-content { flex-direction: column; }
  .hero-stats { flex-direction: row; width: 100%; }
  .stat-card { flex: 1; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb-wrap { min-height: 240px; }
  .featured-skeleton { grid-template-columns: 1fr; }
  .featured-skeleton .skeleton-thumb { height: 220px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-nav { width: 100%; }
  .nav-yt { flex: 1; justify-content: center; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero { padding: 40px 0 56px; }
  .list-view .video-card { flex-direction: column; }
  .list-view .card-thumb { width: 100%; height: auto; padding-top: 56.25%; }
}
