/* =====================================================
   TOP BAR
===================================================== */
.site-topbar {
  background: var(--text);
  color: var(--text-inv);
  font-size: var(--text-xs);
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.topbar-date { color: rgba(255,255,255,0.55); }
.topbar-trending {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.trending-label { color: rgba(255,255,255,0.4); font-weight: 600; white-space: nowrap; }
.trending-tag {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.trending-tag:hover { color: var(--tdw-gold); }
.topbar-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.topbar-newsletter, .topbar-search {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.topbar-newsletter:hover, .topbar-search:hover { color: #fff; }
@media (max-width: 768px) {
  .topbar-date, .topbar-trending { display: none; }
  .topbar-right { margin-left: 0; }
}

/* =====================================================
   SITE HEADER
===================================================== */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: 16px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.logo-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tdw-red);
  line-height: 1;
}

/* =====================================================
   NAVIGATION
===================================================== */
.site-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--tdw-red); background: var(--surface); }
.nav-item.current .nav-link { color: var(--tdw-red); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 360px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility 0s var(--dur-fast);
  z-index: 200;
  padding: 20px 0;
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.mega-inner { display: flex; gap: var(--space-4); }
.mega-col { flex: 1; min-width: 120px; }
.mega-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 0 var(--space-2);
}
.mega-col ul li a {
  display: block;
  padding: 6px var(--space-2);
  font-size: var(--text-sm);
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.mega-col ul li a:hover { color: var(--tdw-red); background: var(--surface); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.search-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
  transition: all var(--dur-fast) var(--ease);
}
.search-toggle:hover { border-color: var(--text); background: var(--surface); }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 4px; justify-content: center;
  width: 38px; height: 38px;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--radius); cursor: pointer; padding: 10px 9px;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: all var(--dur-fast) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Search overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--dur-fast) var(--ease);
  z-index: 100;
}
.search-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-form-main {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  transition: border-color var(--dur-fast);
}
.search-form-main:focus-within { border-color: var(--tdw-red); }
.search-input-main {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--text-lg);
  color: var(--text);
}
.search-form-main button { color: var(--text-muted); cursor: pointer; background: none; border: none; }
.search-form-main button:hover { color: var(--tdw-red); }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(28,27,26,0.6);
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-drawer {
  position: absolute; top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: var(--card);
  padding: var(--space-4);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
}
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  font-size: 1.5rem; background: none; border: none; cursor: pointer;
  color: var(--text-muted); line-height: 1; padding: 4px;
}
.mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast);
}
.mobile-nav-list li a:hover { color: var(--tdw-red); padding-left: 8px; }
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
}

/* =====================================================
   HERO / BANNER
===================================================== */
.hero-cinematic {
  position: relative;
  background: var(--text);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-backdrop { position: absolute; inset: 0; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,27,26,0.92) 35%, rgba(28,27,26,0.4) 70%, transparent 100%);
}
.hero-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: var(--space-8) 0 var(--space-6);
}
.hero-content {
  max-width: 640px;
}
.hero-cat { margin-bottom: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-excerpt {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-meta { display: flex; align-items: center; gap: 12px; }
.hero-meta .post-meta { color: rgba(255,255,255,0.6); font-size: var(--text-sm); }
.hero-meta .post-meta a { color: rgba(255,255,255,0.8); }
.hero-score { flex-shrink: 0; }
.hero-nav {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: all var(--dur-fast);
  padding: 0;
}
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* =====================================================
   CONTENT SECTIONS
===================================================== */
.site-section { padding: var(--space-8) 0; }
.site-section--sm { padding: var(--space-5) 0; }
.site-section--lg { padding: var(--space-10) 0; }
.site-section--surface { background: var(--surface); }
.site-section--dark { background: var(--text); color: var(--text-inv); }

/* =====================================================
   CARDS
===================================================== */
.card--article {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  border: 1px solid var(--border-light);
}
.card--article:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__image { overflow: hidden; display: block; }
.card__image img { transition: transform 0.5s var(--ease); }
.card--article:hover .card__image img { transform: scale(1.04); }
.card__body { padding: 20px; }
.card__title { font-size: var(--text-lg); margin: 8px 0 8px; line-height: 1.35; }
.card__title a { color: var(--text); }
.card__title a:hover { color: var(--tdw-red); }
.card__excerpt { color: var(--text-muted); font-size: var(--text-sm); margin: 0 0 12px; line-height: 1.6; }

/* Large card */
.card--large .card__title { font-size: var(--text-xl); }

/* Movie card */
.card--movie {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.card--movie:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__poster {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.card__poster img { transition: transform 0.5s var(--ease); }
.card--movie:hover .card__poster img { transform: scale(1.04); }
.card__score-badge { position: absolute; bottom: 8px; right: 8px; z-index: 2; }
.poster-placeholder { width: 100%; height: 100%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; }
.card__title--movie { font-size: 1rem; margin: 10px 0 6px; }
.card__meta-line { display: flex; gap: 8px; font-size: var(--text-sm); color: var(--text-muted); }

/* Person card */
.card--person { text-align: center; }
.card__avatar { display: block; border-radius: 50%; overflow: hidden; width: 80px; height: 80px; margin: 0 auto 12px; border: 2px solid var(--border); }
.card__title--person { font-size: 0.9375rem; margin: 0 0 4px; }
.person-profession { font-size: var(--text-sm); color: var(--tdw-red); font-weight: 600; }
.person-known-for { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; }

/* =====================================================
   ARTICLE / REVIEW PAGE
===================================================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } }

.article-header { margin-bottom: var(--space-4); }
.article-full-bleed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
  background: var(--surface-2);
}
.article-full-bleed img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: var(--article-max);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text);
}
.article-body p { margin-bottom: 1.5em; }
.article-body h2 { font-size: var(--text-2xl); margin: 2em 0 0.75em; }
.article-body h3 { font-size: var(--text-xl); margin: 1.75em 0 0.6em; }
.article-body a { color: var(--tdw-red); text-decoration: underline; text-underline-offset: 3px; }
.article-body img { border-radius: var(--radius-lg); margin: var(--space-4) 0; }
.article-body blockquote {
  border-left: 4px solid var(--tdw-red);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: var(--text-xl);
  font-family: var(--font-display);
  color: var(--text);
  background: var(--surface);
  padding: 24px 24px 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.article-body blockquote p { margin: 0; }

/* Drop cap */
.article-body--dropcap > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.85;
  margin: 6px 8px 0 0;
  color: var(--tdw-red);
}

/* Bottom line review box */
.review-bottom-line {
  background: var(--surface);
  border: 2px solid var(--tdw-red);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  margin: var(--space-4) 0;
}
.review-bottom-line__title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tdw-red);
  margin-bottom: var(--space-2);
}
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.pros-list, .cons-list { font-size: var(--text-sm); }
.pros-list li, .cons-list li { display: flex; gap: 8px; margin-bottom: 8px; }
.pros-list li::before { content: "+"; color: var(--tdw-green); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: "−"; color: var(--tdw-red); font-weight: 700; flex-shrink: 0; }

/* =====================================================
   MOVIE/TV PROFILE PAGE
===================================================== */
.profile-hero {
  background: var(--text);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.profile-backdrop { position: absolute; inset: 0; }
.profile-backdrop img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.profile-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,27,26,0.97) 30%, rgba(28,27,26,0.6) 70%, transparent 100%);
}
.profile-hero-content {
  position: relative; z-index: 10;
  width: 100%;
  padding: var(--space-8) 0 var(--space-6);
}
.profile-hero-inner {
  display: flex;
  gap: var(--space-5);
  align-items: flex-end;
}
.profile-poster {
  flex-shrink: 0;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 2/3;
  background: var(--surface-2);
}
.profile-poster img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { flex: 1; }
.profile-title {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.profile-meta-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-meta-item .sep { color: rgba(255,255,255,0.3); }
.profile-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.profile-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.profile-score-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.audience-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}
.audience-bar { width: 80px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; }
.audience-bar-fill { height: 100%; background: var(--tdw-green); border-radius: 3px; }

/* Profile page body */
.profile-body { padding: var(--space-6) 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 320px; gap: var(--space-6); align-items: start; }
@media (max-width: 1024px) { .profile-grid { grid-template-columns: 1fr; } }

.where-to-watch-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.platform-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  transition: all var(--dur-fast) var(--ease);
}
.platform-link:hover { border-color: var(--tdw-blue); color: var(--tdw-blue); background: rgba(26,77,143,0.05); }

.cast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: var(--space-3); margin-top: 16px; }

/* Spoiler section */
.spoiler-section { position: relative; }
.spoiler-overlay {
  position: absolute; inset: 0;
  background: rgba(28,27,26,0.92);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  z-index: 10;
  cursor: pointer;
  gap: 12px;
  transition: opacity var(--dur-fast);
}
.spoiler-overlay.revealed { display: none; }
.spoiler-overlay p { color: #fff; font-weight: 700; font-size: var(--text-lg); }
.spoiler-overlay .btn { pointer-events: none; }

/* =====================================================
   RANKINGS PAGE
===================================================== */
.rankings-list { margin-top: var(--space-4); }
.ranking-item {
  display: grid;
  grid-template-columns: 60px 80px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: 20px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
  transition: box-shadow var(--dur-fast);
}
.ranking-item:hover { box-shadow: var(--shadow); }
.ranking-number {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--border);
  text-align: center;
}
.ranking-item:nth-child(1) .ranking-number { color: var(--tdw-gold); }
.ranking-item:nth-child(2) .ranking-number { color: var(--text-subtle); }
.ranking-item:nth-child(3) .ranking-number { color: #CD7F32; }
.ranking-poster { aspect-ratio: 2/3; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); }
.ranking-info .ranking-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 6px; }
.ranking-info .ranking-title a:hover { color: var(--tdw-red); }
.ranking-blurb { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.5; }

/* =====================================================
   CELEBRITY PAGE
===================================================== */
.celebrity-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  align-items: start;
}
@media (max-width: 768px) { .celebrity-hero { grid-template-columns: 1fr; } }
.celebrity-portrait {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.celebrity-name {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.celebrity-profession {
  font-size: var(--text-xl);
  color: var(--tdw-red);
  font-weight: 600;
  margin-bottom: 16px;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer { background: var(--text); color: rgba(255,255,255,0.75); margin-top: auto; }
.footer-top { padding: var(--space-8) 0; }
.footer-top-inner { display: grid; grid-template-columns: 320px 1fr; gap: var(--space-8); align-items: start; }
@media (max-width: 1024px) { .footer-top-inner { grid-template-columns: 1fr; } }

.footer-logo .logo-main { color: #fff; font-size: 1.5rem; }
.footer-logo .logo-tag { color: var(--tdw-red); }
.footer-tagline { color: rgba(255,255,255,0.9); font-size: var(--text-lg); font-weight: 700; margin: 12px 0 8px; }
.footer-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast) var(--ease);
}
.social-link:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.06); }

.footer-nav-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
@media (max-width: 768px) { .footer-nav-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-nav-cols { grid-template-columns: 1fr; } }
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: var(--text-sm); color: rgba(255,255,255,0.65); transition: color var(--dur-fast); }
.footer-col ul li a:hover { color: #fff; }

.footer-email-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: #fff;
  font-size: var(--text-sm);
  margin-bottom: 8px;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-email-input:focus { outline: none; border-color: var(--tdw-red); }
.footer-sub-btn {
  width: 100%;
  padding: 10px;
  background: var(--tdw-red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background var(--dur-fast);
}
.footer-sub-btn:hover { background: var(--tdw-red-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }
.footer-legal-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-nav a { font-size: var(--text-xs); color: rgba(255,255,255,0.4); transition: color var(--dur-fast); }
.footer-legal-nav a:hover { color: rgba(255,255,255,0.75); }

/* =====================================================
   POST META
===================================================== */
.post-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.post-meta__date, .post-meta__rt { font-size: var(--text-sm); color: var(--text-muted); }
.post-meta__author { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.post-meta__author:hover { color: var(--tdw-red); }
.post-meta__sep { color: var(--border); }

/* =====================================================
   CALENDAR
===================================================== */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.calendar-day-header { background: var(--surface); padding: 10px; text-align: center; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.calendar-day { background: var(--card); padding: 10px; min-height: 100px; vertical-align: top; }
.calendar-day--today { background: rgba(200,16,46,0.03); }
.calendar-day__num { font-size: var(--text-xs); font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.calendar-day--today .calendar-day__num { color: var(--tdw-red); }
.calendar-event { font-size: 0.7rem; background: var(--tdw-red); color: #fff; border-radius: 3px; padding: 2px 6px; margin-bottom: 3px; line-height: 1.4; }

/* =====================================================
   RESPONSIVE OVERRIDES
===================================================== */
@media (max-width: 768px) {
  .profile-hero-inner { flex-direction: column; align-items: flex-start; }
  .profile-poster { width: 140px; }
  .ranking-item { grid-template-columns: 40px 60px 1fr; }
  .ranking-item .tdw-score { display: none; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  input, textarea, select { font-size: 16px !important; }
  .footer-top-inner { gap: var(--space-5); }
}
@media (max-width: 480px) {
  .review-pros-cons { grid-template-columns: 1fr; }
}
