/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — Filmmaker's Monitor / Golden Hour
═══════════════════════════════════════════════════════ */
:root {
  --bg: #12110f;
  --surface: #1c1a17;
  --surface2: #252320;
  --surface3: #2e2b27;
  --warm: #f5ebd8;
  --warm2: #cfc2ae;
  --muted: #7a6e62;
  --border: #332f2a;
  --border2: #3e3a34;
  --gold: #e8a44a;
  --gold2: #c4823a;
  --rust: #b84232;
  --green: #2e5a4a;
  --text: #f5ebd8;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Jost", sans-serif;
  --f-mono: "Azeret Mono", monospace;

  --r: 5px;
  --r-lg: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s;
}

/* ═══ RESET ══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input {
  font-family: inherit;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ═══ FILM GRAIN OVERLAY ═════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.055'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ═══ PAGE SYSTEM ════════════════════════════════════════ */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: fadeIn 0.5s ease both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(18, 17, 15, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.hdr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.9);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--warm);
}
.logo-sub {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nl {
  padding: 7px 15px;
  border-radius: var(--r);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    color var(--t) var(--ease),
    background var(--t) var(--ease);
}
.nl:hover {
  color: var(--warm);
  background: var(--surface2);
}
.nl.active {
  color: var(--gold);
}

.hdr-cta {
  padding: 8px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border2);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm2);
  transition: all var(--t) var(--ease);
}
.hdr-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 164, 74, 0.08);
}

/* ═══════════════════════════════════════════════════════
   SCROLL FADE-IN UTILITY
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.32s;
}
.reveal-d4 {
  transition-delay: 0.44s;
}

/* ═══════════════════════════════════════════════════════
   ██  HOME PAGE
═══════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: calc(100vh - 62px);
  overflow: hidden;
}

/* Left: portrait panel */
.hero-portrait-panel {
  position: relative;
  overflow: hidden;
  background: #0c0b09;
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.85);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-portrait-panel:hover .hero-portrait {
  transform: scale(1);
}

/* Scanline: paused-video effect */
.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.scanline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(232, 164, 74, 0.6);
  box-shadow:
    0 0 16px rgba(232, 164, 74, 0.8),
    0 0 4px rgba(232, 164, 74, 1);
  animation: scan 4s linear infinite;
}
@keyframes scan {
  0% {
    top: -2px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Portrait gradient overlay */
.hero-portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, var(--bg) 98%),
    linear-gradient(to top, rgba(18, 17, 15, 0.7) 0%, transparent 40%);
  z-index: 1;
}

/* Portrait badges */
.portrait-badge {
  position: absolute;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 164, 74, 0.4);
  background: rgba(18, 17, 15, 0.8);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: var(--r);
}
.badge-tl {
  top: 24px;
  left: 24px;
}
.badge-bl {
  bottom: 28px;
  left: 24px;
}
.badge-br {
  bottom: 28px;
  right: 40px;
  color: var(--warm2);
  border-color: rgba(245, 235, 216, 0.2);
}

/* Right: editorial text */
.hero-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 52px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-h1 .line-sm {
  font-size: 0.48em;
  font-weight: 400;
  display: block;
  letter-spacing: 0.04em;
  color: var(--warm2);
  margin-top: 8px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--warm2);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 44px;
  border-left: 2px solid var(--border2);
  padding-left: 18px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-gold {
  padding: 13px 28px;
  border-radius: var(--r);
  background: var(--gold);
  color: #12110f;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 164, 74, 0.4);
}
.btn-outline {
  padding: 12px 26px;
  border-radius: var(--r);
  border: 1px solid var(--border2);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm2);
  transition:
    border-color var(--t) var(--ease),
    color var(--t) var(--ease),
    background var(--t) var(--ease);
}
.btn-outline:hover {
  border-color: var(--warm2);
  background: var(--surface2);
  color: var(--warm);
}

/* Stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.hs-item {
  background: var(--surface);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hs-num {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
}
.hs-num b {
  color: var(--gold);
  font-weight: 600;
}
.hs-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── LATEST VIDEO STRIP ─────────────────────────────── */
.latest-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Asymmetric featured video layout */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.vcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color var(--t) var(--ease),
    transform var(--t) var(--ease);
}
.vcard:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.vcard.large {
  grid-row: 1/3;
}

/* Thumbnail area with hover-to-play */
.vcard-thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #0c0b09;
}
.vcard.large .vcard-thumb {
  padding-bottom: 62%;
}
.vcard-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    opacity var(--t) var(--ease);
  filter: saturate(0.9) contrast(1.05);
}
.vcard:hover .vcard-thumb img {
  transform: scale(1.03);
  opacity: 0;
}

/* YouTube embed revealed on hover */
.vcard-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vcard:hover .vcard-thumb iframe {
  opacity: 1;
  pointer-events: auto;
}

/* Play button overlay */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232, 164, 74, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition:
    opacity var(--t) var(--ease),
    transform var(--t) var(--ease);
}
.play-btn svg {
  fill: #12110f;
  width: 18px;
  height: 18px;
  margin-left: 3px;
}
.vcard.large .play-btn {
  width: 68px;
  height: 68px;
}
.vcard.large .play-btn svg {
  width: 24px;
  height: 24px;
}
.vcard:hover .play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Card gradient */
.vcard-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 17, 15, 0.75) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
}

/* Card info */
.vcard-info {
  padding: 20px 22px;
}
.vcard.large .vcard-info {
  padding: 24px 28px;
}
.vcard-views {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vcard-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--warm);
}
.vcard.large .vcard-title {
  font-size: 1.6rem;
}
.vcard-logline {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}
.vcard.large .vcard-logline {
  font-size: 0.92rem;
  max-width: 500px;
}
.vcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t) var(--ease);
}
.vcard:hover .vcard-cta {
  gap: 10px;
}

/* Home video cards: thumbnail-only; clicking the card opens Videos page */
#page-home .featured-grid .vcard:hover .vcard-thumb img {
  transform: none;
  opacity: 1;
}
#page-home .featured-grid .vcard-thumb iframe,
#page-home .featured-grid .play-btn {
  display: none;
}

/* ── DIRECTOR'S NOTE ────────────────────────────────── */
.director-note {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dn-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 36px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.dn-portrait-wrap {
  position: sticky;
  top: 100px;
}
.dn-portrait {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.dn-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) saturate(0.85);
  display: block;
}
.dn-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(18, 17, 15, 0.5)
  );
}
.dn-label {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.dn-content {
}
.dn-quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--warm);
  margin-bottom: 28px;
}
.dn-quote span {
  color: var(--gold);
  font-style: normal;
}
.dn-body {
  font-size: 0.95rem;
  color: var(--warm2);
  line-height: 1.9;
  margin-bottom: 20px;
}
.dn-sign {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.dn-sign-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm);
}
.dn-sign-role {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ── SOCIAL PROOF TICKER ────────────────────────────── */
.ticker-band {
  overflow: hidden;
  padding: 12px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-scroll {
  display: flex;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
}
.ticker-item b {
  color: var(--gold);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════
   ██  VIDEOS PAGE
═══════════════════════════════════════════════════════ */
.vpage-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 36px 48px;
}
.vpage-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.vpage-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.vpage-hero p {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* Filter tabs */
.vtabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 36px;
}
.vtab {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--t) var(--ease);
}
.vtab.on,
.vtab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 164, 74, 0.08);
}

/* Video masonry grid */
.vgrid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vgrid .vcard:nth-child(1) {
  grid-column: 1/3;
}
.vgrid .vcard:nth-child(5) {
  grid-column: 2/4;
}

/* ═══════════════════════════════════════════════════════
   ██  ABOUT PAGE
═══════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px 60px;
  gap: 80px;
  align-items: start;
}
.about-left h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-left h1 em {
  font-style: italic;
  color: var(--gold);
}
.about-left h1 span {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.about-left p {
  font-size: 0.95rem;
  color: var(--warm2);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-left blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--warm);
}

/* Portrait stack on right */
.about-portraits {
  position: relative;
  height: 600px;
}
.ap {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) saturate(0.82);
  display: block;
}
.ap-1 {
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  z-index: 2;
}
.ap-2 {
  top: 18%;
  right: 0;
  width: 52%;
  height: 54%;
  z-index: 3;
  border: 2px solid var(--gold);
}
.ap-3 {
  bottom: 0;
  left: 8%;
  width: 46%;
  height: 35%;
  z-index: 1;
}

.ap-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(18, 17, 15, 0.8);
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 4;
}

/* Timeline */
.timeline-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 80px;
}
.timeline {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--border);
  margin-left: 16px;
  padding-left: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 40px 40px;
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border2);
  border: 2px solid var(--bg);
  transition: background var(--t) var(--ease);
}
.tl-item:hover::before {
  background: var(--gold);
}
.tl-year {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
  text-align: right;
}
.tl-content h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 6px;
}
.tl-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Channel Trailer embed */
.trailer-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.trailer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 36px;
}
.trailer-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
  text-align: center;
}
.trailer-inner h2 em {
  font-style: normal;
  color: var(--gold);
}
.trailer-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.trailer-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Stats cards */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.sc-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 6px;
}
.sc-num em {
  font-style: normal;
  color: var(--gold);
}
.sc-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   ██  LOGIN / COMMUNITY PAGE
═══════════════════════════════════════════════════════ */
.community-page {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left: large portrait */
.cp-left {
  position: relative;
  overflow: hidden;
  background: #0c0b09;
}
.cp-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) saturate(0.75);
}
.cp-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--bg) 98%);
}
.cp-overlay {
  position: absolute;
  bottom: 48px;
  left: 36px;
  z-index: 2;
}
.cp-overlay .big-quote {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm);
  line-height: 1.3;
  max-width: 300px;
}
.cp-overlay .big-quote b {
  color: var(--gold);
  font-style: normal;
}

/* Right: form */
.cp-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.cp-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cp-right h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cp-right h2 em {
  font-style: italic;
  color: var(--gold);
}
.cp-right p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}

/* Login form */
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.input-row {
  position: relative;
}
.form-field input {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--warm);
  font-size: 0.95rem;
  transition: border-color var(--t) var(--ease);
}
.form-field input:focus {
  border-color: var(--gold);
  background: var(--surface);
}
.form-field input::placeholder {
  color: var(--muted);
}
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--t) var(--ease);
}
.pw-toggle:hover {
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: #12110f;
  border-radius: var(--r);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
  margin-top: 6px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 164, 74, 0.35);
}

.form-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.form-sep::before,
.form-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-sep span {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-note {
  margin-top: 24px;
  text-align: left;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.form-note a {
  color: var(--gold);
  text-decoration: underline;
}

/* Newsletter alt */
.newsletter-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.newsletter-block h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 8px;
}
.newsletter-block p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.nl-row {
  display: flex;
  gap: 10px;
}
.nl-row input {
  flex: 1;
  padding: 11px 14px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--warm);
  font-size: 0.9rem;
}
.nl-row input:focus {
  border-color: var(--gold);
  background: var(--surface);
}
.nl-row input::placeholder {
  color: var(--muted);
}
.nl-row button {
  padding: 11px 20px;
  background: var(--surface3);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.nl-row button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 164, 74, 0.1);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 60px 36px 36px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
}
.footer-brand .logo-name {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 260px;
}
.footer-brand .f-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.f-social a {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--t) var(--ease);
}
.f-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--t) var(--ease);
}
.footer-col ul li a:hover {
  color: var(--warm);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   VIDEO DETAIL PAGE (inner)
═══════════════════════════════════════════════════════ */
.video-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 36px 80px;
}
.vd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color var(--t) var(--ease);
  cursor: pointer;
}
.vd-back:hover {
  color: var(--gold);
}
.vd-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.vd-tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.vd-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border2);
}
.vd-date {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.vd-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.vd-title em {
  font-style: italic;
  color: var(--gold);
}
.vd-logline {
  font-size: 1rem;
  color: var(--warm2);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
  font-style: italic;
}
.vd-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.vd-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.vd-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm2);
  margin-bottom: 48px;
  transition: all var(--t) var(--ease);
}
.vd-yt-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.vd-desc-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 14px;
}
.vd-desc p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ═══ RESPONSIVE ════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-portrait-panel {
    height: 65vw;
    min-height: 320px;
  }
  .dn-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dn-portrait-wrap {
    position: static;
  }
  .community-page {
    grid-template-columns: 1fr;
  }
  .cp-left {
    display: none;
  }
  .cp-right {
    padding: 60px 36px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .vgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vgrid .vcard:nth-child(1),
  .vgrid .vcard:nth-child(5) {
    grid-column: auto;
  }
  .about-portraits {
    height: auto;
    position: static;
  }
  .ap {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 12px;
  }
  .ap img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 640px) {
  .hdr {
    padding: 0 20px;
  }
  nav .nl {
    padding: 6px 10px;
    font-size: 0.65rem;
  }
  .hero-editorial {
    padding: 36px 24px;
  }
  .hero-h1 {
    font-size: 3rem;
  }
  .latest-strip,
  .vpage-hero,
  .vd-back {
    padding-left: 20px;
    padding-right: 20px;
  }
  .vgrid,
  .vtabs {
    padding: 0 20px 36px;
  }
  .vgrid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .hdr-cta {
    display: none;
  }
  .timeline-section {
    padding: 0 20px 60px;
  }
}

/* ═══════════════════════════════════════════════════════
   PUBLIC SHARE / PROTECTED PLAYER ADDITIONS
   These rules are additive only and preserve the current visual system.
═══════════════════════════════════════════════════════ */
[hidden] {
  display: none !important;
}

.vgrid.is-private-grid {
  align-items: stretch;
}

.vgrid.is-private-grid .vcard:hover .vcard-thumb img {
  opacity: 1;
  transform: scale(1.03);
}

.vgrid.is-private-grid .vcard:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vgrid.is-private-grid .vcard-thumb iframe {
  display: none;
}

.vgrid.is-private-grid .inline-video-detail,
.vgrid.is-private-grid .current-state-card {
  grid-column: 1 / -1;
}

.inline-video-detail {
  width: 100%;
  max-width: 1100px;
  padding-top: 28px;
}

.current-state-card {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 70px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(232, 164, 74, 0.08), transparent 42%),
    var(--surface);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.current-state-card h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 0.96;
  color: var(--warm);
}

.current-state-card p {
  color: var(--warm2);
  line-height: 1.8;
}

.state-badge,
.player-unavailable-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(232, 164, 74, 0.32);
  background: rgba(232, 164, 74, 0.1);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.state-error {
  border-color: rgba(184, 66, 50, 0.5);
}

.state-error .state-badge,
.player-unavailable-badge {
  border-color: rgba(184, 66, 50, 0.42);
  background: rgba(184, 66, 50, 0.12);
  color: #ff9b8f;
}

.state-warning {
  border-color: rgba(232, 164, 74, 0.44);
}

.state-action {
  justify-self: start;
  margin-top: 4px;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: rgba(245, 235, 216, 0.08);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 164, 74, 0.16),
    transparent
  );
  animation: protected-shimmer 1.35s infinite;
}

.skeleton-thumb {
  padding-bottom: 56.25%;
  border-radius: 0;
}

.skeleton-title {
  height: 24px;
}

.skeleton-title.short {
  width: 70%;
}

.skeleton-meta {
  width: 54%;
  height: 14px;
}

.skeleton-action {
  width: 124px;
  height: 34px;
  border-radius: 999px;
}

@keyframes protected-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.vcard-thumb.is-placeholder span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}

.vd-embed .player-shell,
.vd-embed .protected-player-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #000;
}

.vd-embed .video-player,
.vd-embed video,
.vd-embed .player-shell iframe,
.vd-embed .player-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.protected-player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 17, 15, 0.68);
  color: var(--warm);
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.protected-player-watermark {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(245, 235, 216, 0.18);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(18, 17, 15, 0.58);
  color: rgba(245, 235, 216, 0.72);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-unavailable {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  background: #0c0b09;
  color: var(--warm2);
  text-align: center;
}

.player-unavailable p {
  max-width: 520px;
  color: var(--warm2);
}

.vd-yt-link[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .inline-video-detail {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Requested UI/UX fix — keep rendered header pinned at top */
#site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  display: block !important;
  width: 100% !important;
}

#site-header > header,
#site-header header,
body > header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10001 !important;
}

/* Requested UI/UX fix — #page-videos thumbnail-only cards */
#page-videos .vcard {
  cursor: default !important;
}

#page-videos .vcard:hover {
  transform: none !important;
  border-color: var(--border) !important;
}

#page-videos .vcard-thumb iframe,
#page-videos .vcard-thumb .play-btn,
#page-videos .play-btn,
#page-videos .vcard-info {
  display: none !important;
}

#page-videos .vcard-thumb img,
#page-videos .vcard:hover .vcard-thumb img {
  opacity: 1 !important;
  transform: none !important;
}

#page-videos .vcard-thumb::after {
  display: none !important;
}

#page-videos .vcard a[href^="http"],
#page-videos .vcard a[href^="//"] {
  pointer-events: none !important;
}

/* ═══════════════════════════════════════════════════════
   LEGAL / TRUST PAGES — additive, footer-first legal UX
═══════════════════════════════════════════════════════ */
.legal-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 36px 90px;
}
.legal-hero {
  max-width: 820px;
  margin-bottom: 44px;
}
.legal-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.legal-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.legal-hero p,
.legal-card p,
.legal-card li {
  color: var(--warm2);
  line-height: 1.85;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.legal-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.legal-stack {
  display: grid;
  gap: 18px;
}
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(232, 164, 74, 0.08), transparent 46%),
    var(--surface);
  padding: clamp(24px, 4vw, 34px);
}
.legal-card h2 {
  font-family: var(--f-display);
  color: var(--warm);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}
.legal-card a,
.footer-legal-emails a {
  color: var(--gold);
  overflow-wrap: anywhere;
}
.footer-legal-emails {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.legal-footer-col {
  border-left: 1px solid var(--border);
  padding-left: 26px;
}
.contact-page .legal-card p:last-child {
  font-family: var(--f-mono);
  font-size: 0.86rem;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .legal-grid,
  .legal-grid.two-col {
    grid-template-columns: 1fr;
  }
  .legal-page {
    padding: 60px 24px 72px;
  }
  .legal-footer-col {
    border-left: 0;
    padding-left: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   SHARE-LINK REVIEW UX FIX — title/date/player visible
═══════════════════════════════════════════════════════ */
.inline-video-detail,
#page-vdetail .video-detail,
.vd-title,
.vd-embed {
  scroll-margin-top: 96px;
}

#page-videos .vgrid.is-private-grid .vcard {
  cursor: pointer !important;
}

#page-videos .vgrid.is-private-grid .vcard:hover {
  border-color: var(--gold) !important;
  transform: translateY(-3px) !important;
}

#page-videos .vgrid.is-private-grid .vcard-info {
  display: block !important;
}

#page-videos .vgrid.is-private-grid .play-btn {
  display: flex !important;
}

.video-detail,
.inline-video-detail {
  padding-top: clamp(22px, 3vw, 38px);
}

.vd-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.vd-date-full,
.vd-date {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  white-space: normal;
}

.vd-date-full {
  padding: 7px 11px;
  border: 1px solid rgba(232, 164, 74, 0.38);
  border-radius: 999px;
  background: rgba(232, 164, 74, 0.1);
  color: var(--warm);
  font-size: clamp(0.76rem, 1.6vw, 0.92rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

#page-vdetail .vd-title,
#page-videos .inline-video-detail .vd-title {
  color: var(--warm);
  font-size: clamp(2.45rem, 5.2vw, 4.15rem);
  line-height: 1.02;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
  margin-bottom: 12px;
}

#page-vdetail .vd-logline,
#page-videos .inline-video-detail .vd-logline {
  margin-bottom: 22px;
  max-width: 860px;
}

#page-vdetail .vd-embed,
#page-videos .inline-video-detail .vd-embed {
  aspect-ratio: 16 / 9;
  padding-bottom: 0;
  min-height: 280px;
  max-height: min(70vh, 620px);
  background: #000;
}

.protected-player-watermark {
  display: none !important;
}

@media (max-width: 640px) {
  .inline-video-detail,
  #page-vdetail .video-detail,
  .vd-title,
  .vd-embed {
    scroll-margin-top: 82px;
  }

  #page-vdetail .vd-title,
  #page-videos .inline-video-detail .vd-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  #page-vdetail .vd-embed,
  #page-videos .inline-video-detail .vd-embed {
    min-height: 210px;
    max-height: 58vh;
  }
}
