@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --bg: #06060C;
  --bg2: #0A0A14;
  --gold: #C8A96E;
  --gold2: #F0D5A0;
  --cyan: #00C9FF;
  --cyan2: #00F5FF;
  --white: #F2EEE8;
  --muted: #5A5A6E;
  --glass: rgba(12, 12, 22, 0.72);
  --glass2: rgba(200, 169, 110, 0.08);
  --border: rgba(200, 169, 110, 0.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-editorial);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Only hide cursor on pointer (mouse) devices — never on touch */
@media (pointer: fine) {
  body.using-custom-cursor {
    cursor: none;
  }
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ── GRAIN ── */
@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0)
  }

  10% {
    transform: translate(-2%, -3%)
  }

  20% {
    transform: translate(-4%, 2%)
  }

  30% {
    transform: translate(3%, -1%)
  }

  40% {
    transform: translate(-1%, 4%)
  }

  50% {
    transform: translate(2%, -3%)
  }

  60% {
    transform: translate(-3%, 1%)
  }

  70% {
    transform: translate(4%, 2%)
  }

  80% {
    transform: translate(-2%, -4%)
  }

  90% {
    transform: translate(3%, 3%)
  }
}

.grain-overlay {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(1) infinite;
  mix-blend-mode: overlay;
}

/* ── AURORA ── */
@keyframes aurora1 {

  0%,
  100% {
    transform: translate(-20%, -20%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(10%, 10%) rotate(180deg) scale(1.2);
  }
}

@keyframes aurora2 {

  0%,
  100% {
    transform: translate(20%, 10%) rotate(0deg) scale(1.1);
  }

  50% {
    transform: translate(-10%, -20%) rotate(-120deg) scale(0.9);
  }
}

@keyframes aurora3 {

  0%,
  100% {
    transform: translate(0%, -30%) rotate(45deg) scale(0.9);
  }

  50% {
    transform: translate(-15%, 15%) rotate(225deg) scale(1.15);
  }
}

/* ── LOADING ── */
@keyframes frameFlicker {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.85
  }
}

/* ── CINEMATIC PLAYHEAD LOADER ── */
.loader-shell {
  position: fixed;
  inset: 0;
  background: var(--bg); /* Deep black background */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-shell-lite .loader-rec,
.loader-shell-lite .timeline-playhead {
  animation-duration: 1.4s;
}

.loader-shell-lite .timeline-track {
  width: 220px;
}

/* Pulsing REC Indicator */
.loader-rec {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ff4d4d;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulseOpacity 1.2s infinite;
  margin-bottom: 40px;
}

.loader-rec::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff4d4d;
}

/* The Timeline Track */
.timeline-track {
  width: 260px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}

/* The Glowing Gold Playhead */
.timeline-playhead {
  position: absolute;
  top: -12px;
  left: 0;
  width: 2px;
  height: 25px;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  /* Scrubs back and forth like you are editing */
  animation: scrubTimeline 2s cubic-bezier(0.65, 0, 0.35, 1) infinite; 
}

/* The triangle at the top of the playhead */
.timeline-playhead::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -5px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--gold);
}

@keyframes scrubTimeline {
  0% { left: 0%; }
  50% { left: 100%; }
  100% { left: 0%; }
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealLeft {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

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

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.3), 0 0 60px rgba(200, 169, 110, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(200, 169, 110, 0.6), 0 0 100px rgba(200, 169, 110, 0.2);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(2deg);
  }

  66% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-24px) rotate(-3deg);
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes scanline {
  0% {
    top: -5%;
  }

  100% {
    top: 105%;
  }
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroKickerIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.96);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroTitleSweep {
  from {
    opacity: 0;
    transform: translate3d(0, 72px, 0) scale(0.94);
    letter-spacing: 0.08em;
    filter: blur(18px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: normal;
    filter: blur(0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroHaloIn {
  from {
    opacity: 0;
    transform: scale(0.82);
    filter: blur(40px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.reveal-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.cine-reveal {
  --delay: 0s;
  --reveal-x: 0px;
  --reveal-y: 36px;
  --reveal-scale: 0.985;
  --reveal-rotate: 0deg;
  --reveal-blur: 10px;
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--delay),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--delay),
    filter 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--delay);
  will-change: transform, opacity, filter;
}

.cine-reveal.visible,
.visible > .cine-reveal,
.visible .cine-reveal {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.cine-left {
  --reveal-x: -42px;
  --reveal-y: 0px;
}

.cine-right {
  --reveal-x: 42px;
  --reveal-y: 0px;
}

.cine-rise {
  --reveal-y: 46px;
}

.cine-zoom {
  --reveal-y: 22px;
  --reveal-scale: 0.94;
}

.cine-tilt-left {
  --reveal-y: 30px;
  --reveal-x: -12px;
  --reveal-rotate: -1.4deg;
}

.cine-tilt-right {
  --reveal-y: 30px;
  --reveal-x: 12px;
  --reveal-rotate: 1.4deg;
}

.cine-line {
  --reveal-y: 0px;
  transform-origin: center left;
  transform: scaleX(0.72);
}

.cine-line.visible,
.visible > .cine-line,
.visible .cine-line {
  transform: scaleX(1);
}

.hero-cinematic {
  position: relative;
}

.hero-cinematic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 920px);
  height: min(42vw, 420px);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center, rgba(200, 169, 110, 0.22) 0%, rgba(200, 169, 110, 0.08) 28%, transparent 72%),
    radial-gradient(circle at 50% 56%, rgba(0, 201, 255, 0.12) 0%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroHaloIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.16s forwards;
}

.hero-kicker,
.hero-copy-shell,
.hero-cta-row,
.hero-scroll-indicator-shell {
  opacity: 0;
  animation: heroCopyIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-kicker {
  animation-name: heroKickerIn;
  animation-delay: 0.1s;
}

.hero-title-block {
  position: relative;
  display: inline-block;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: heroTitleSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.18s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.34s;
}

.hero-title-line.gold-text {
  animation:
    heroTitleSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.34s forwards,
    shimmer 4s linear infinite 1.54s;
}

.hero-role {
  opacity: 0;
  animation: heroCopyIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.56s forwards;
}

.hero-copy-shell {
  animation-delay: 0.72s;
}

.hero-cta-row {
  animation-delay: 0.92s;
}

.hero-scroll-indicator-shell {
  animation-delay: 1.16s;
}

.hero-copy {
  will-change: transform, opacity, filter;
}

@media (max-width: 768px) {
  .loader-shell-lite .loader-rec {
    letter-spacing: 3px;
    margin-bottom: 28px;
  }

  .loader-shell-lite .timeline-playhead {
    box-shadow: 0 0 8px var(--gold);
  }

  .hero-cinematic::before,
  .grain-overlay {
    display: none;
  }

  .cine-reveal {
    --reveal-blur: 0px;
  }

  .cine-cta,
  .cine-cta-secondary,
  .cine-cta-ghost,
  .glass-card,
  .contact-dock a {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-title-line {
    animation-duration: 0.95s;
  }

  .format-track {
    gap: 36px;
    animation-duration: 36s;
  }

  .services-grid {
    gap: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .aurora-bg,
  .hero-cinematic::before,
  .grain-overlay {
    display: none !important;
  }
}

.cine-glow {
  position: relative;
}

.cine-glow::after {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at center, rgba(200, 169, 110, 0.16), transparent 68%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s ease var(--delay), transform 1.2s ease var(--delay);
  pointer-events: none;
  z-index: -1;
}

.cine-glow.visible::after,
.visible > .cine-glow::after,
.visible .cine-glow::after {
  opacity: 1;
  transform: scale(1);
}

.cine-cta,
.cine-cta-secondary,
.cine-cta-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
  overflow: hidden;
}

.cine-cta::before,
.cine-cta-secondary::before,
.cine-cta-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cine-cta:hover,
.cine-cta-secondary:hover,
.cine-cta-ghost:hover {
  transform: translateY(-2px);
}

.cine-cta:hover::before,
.cine-cta-secondary:hover::before,
.cine-cta-ghost:hover::before {
  transform: translateX(130%);
}

.cine-cta {
  color: #050505;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border: 1px solid rgba(240, 213, 160, 0.75);
  box-shadow: 0 18px 40px rgba(200, 169, 110, 0.22);
}

.cine-cta:hover {
  box-shadow: 0 24px 50px rgba(200, 169, 110, 0.32);
}

.cine-cta-secondary {
  color: var(--white);
  background: rgba(12, 12, 22, 0.72);
  border: 1px solid rgba(200, 169, 110, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cine-cta-secondary:hover {
  border-color: rgba(240, 213, 160, 0.6);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.cine-cta-ghost {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.28);
}

.cine-cta-ghost:hover {
  color: var(--white);
  border-color: rgba(200, 169, 110, 0.5);
  box-shadow: 0 18px 40px rgba(200, 169, 110, 0.18);
}

.cine-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cine-cta-arrow {
  font-size: 13px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cine-cta:hover .cine-cta-arrow,
.cine-cta-secondary:hover .cine-cta-arrow,
.cine-cta-ghost:hover .cine-cta-arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .cine-reveal,
  .cine-glow::after {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.gold-text {
  background: linear-gradient(135deg, #C8A96E 0%, #F0D5A0 40%, #C8A96E 70%, #E8C87A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

.cyan-text {
  background: linear-gradient(135deg, #00C9FF, #00F5FF, #00C9FF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  display: inline-block;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.glass-card-cyan {
  background: rgba(0, 201, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 201, 255, 0.2);
  border-radius: 16px;
}

.glow-border {
  animation: glow-pulse 3s ease-in-out infinite;
}
/* -- MARQUEE -- */
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.format-strip {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.format-track {
  display: flex;
  white-space: nowrap;
  gap: 60px;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.format-track > div {
  flex-shrink: 0;
}

@keyframes marqueePulse {
  0% { opacity: 0.1; transform: translateY(0); }
  100% { opacity: 0.15; transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════
   FEED PAGE — "From the Edit Bay"
══════════════════════════════════════════════ */

.feed-page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 68px);
  line-height: 0.95;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(242,238,232,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feed-page-subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(242,238,232,0.4);
  font-style: italic;
  margin: 0;
}

/* ── Filter Pills ── */
.feed-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feed-filter-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(242,238,232,0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.feed-filter-pill:hover {
  border-color: rgba(200,169,110,0.35);
  color: rgba(242,238,232,0.7);
  background: rgba(200,169,110,0.06);
}

.feed-filter-pill--active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  box-shadow: 0 0 20px rgba(200,169,110,0.08);
}

/* ── Section Divider ── */
.feed-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,238,232,0.3);
}

.feed-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.08), transparent);
}

/* ── Card Grid ── */
.feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Feed Card ── */
.feed-card {
  background: rgba(12,12,22,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feed-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.feed-card:hover {
  border-color: rgba(200,169,110,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(200,169,110,0.04);
}

.feed-card:hover::before {
  opacity: 1;
}

/* Featured card */
.feed-card--featured {
  border-color: rgba(200,169,110,0.12);
  background: rgba(12,12,22,0.72);
}

.feed-card--featured:hover {
  border-color: rgba(200,169,110,0.25);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(200,169,110,0.06);
}

/* ── Video Thumbnail ── */
.feed-video-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a12;
}

.feed-video-thumb img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.7) saturate(0.8);
}

.feed-card:hover .feed-video-thumb img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}

.feed-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(200,169,110,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.feed-play-btn svg {
  margin-left: 3px;
}

.feed-card:hover .feed-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
  box-shadow: 0 12px 40px rgba(200,169,110,0.4);
}

.feed-card--featured .feed-play-btn {
  width: 72px;
  height: 72px;
}

.feed-card--featured .feed-play-btn svg {
  width: 28px;
  height: 28px;
}

/* ── Quote Block ── */
.feed-quote-block {
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  min-height: 160px;
}

.feed-quote-block p {
  font-family: var(--font-editorial);
  font-size: clamp(15px, 1.8vw, 19px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(242,238,232,0.85);
  margin: 0;
}

/* ── Card Body ── */
.feed-card__body {
  padding: 20px 22px 22px;
  position: relative;
  z-index: 2;
}

.feed-card--featured .feed-card__body {
  padding: 24px 28px 28px;
}

.feed-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Badge */
.feed-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.feed-card__date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(242,238,232,0.3);
}

/* Title */
.feed-card__title {
  font-family: var(--font-editorial);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin: 0 0 10px;
}

.feed-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.feed-card__title a:hover {
  color: var(--gold);
}

.feed-card__title--featured {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 14px;
}

/* Excerpt */
.feed-card__excerpt {
  font-family: var(--font-editorial);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;
  color: rgba(242,238,232,0.5);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-card--featured .feed-card__excerpt {
  -webkit-line-clamp: 4;
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(242,238,232,0.55);
}

/* Footer / CTA */
.feed-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-card__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feed-card__cta:hover {
  color: var(--gold2);
}

.feed-card__cta:hover .feed-card__cta-arrow {
  transform: translateX(4px);
}

.feed-card__cta--draft {
  color: rgba(242,238,232,0.3);
  cursor: default;
}

.feed-card__cta-arrow {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feed-card__readtime {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(242,238,232,0.2);
}

/* ── Footer CTA Section ── */
.feed-footer-cta {
  margin-top: 72px;
  text-align: center;
}

.feed-footer-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0 auto 28px;
}

.feed-footer-text {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: rgba(242,238,232,0.5);
  margin: 0 0 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .feed-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feed-filters {
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .feed-filters::-webkit-scrollbar {
    display: none;
  }

  .feed-filter-pill {
    font-size: 9px;
    padding: 7px 14px;
    flex-shrink: 0;
  }

  .feed-card__body {
    padding: 16px 16px 18px;
  }

  .feed-card--featured .feed-card__body {
    padding: 18px 18px 20px;
  }

  .feed-card:hover {
    transform: none;
  }

  .feed-quote-block {
    padding: 24px 20px;
    min-height: 120px;
  }

  .feed-play-btn {
    width: 48px;
    height: 48px;
  }

  .feed-card--featured .feed-play-btn {
    width: 60px;
    height: 60px;
  }

  .feed-footer-cta {
    margin-top: 48px;
  }
}

@media (max-width: 480px) {
  .feed-card__title {
    font-size: 16px;
  }

  .feed-card__title--featured {
    font-size: 19px;
  }

  .feed-badge {
    font-size: 8px;
    padding: 3px 8px;
  }
}
