/* =====================================================================
   VELVET RIOT FILMS - Shared stylesheet
   Element Pictures-inspired: dark, minimal, prestige cinema
   ===================================================================== */

:root {
  --bg:        #26201A;   /* warm ink, lifted a few shades */
  --bg-card:   #2E281F;   /* card bg lifted to match */
  --bg-alt:    #362F25;   /* deeper alt */
  --text:      #F2E8D4;   /* cream text */
  --text-mute: #8A7F66;   /* warm brown grey */
  --oxblood:   #C26B6B;   /* lifted oxblood - readable on dark bg */
  --olive:     #8A9468;   /* lifted olive - readable on dark bg */
  --line:      #3A332C;   /* dark divider */
  --bone:      #F2E8D4;   /* alias for text on dark */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Film grain — screen blend lightens speckles on dark, much more visible */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='nb'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nb)' opacity='0.9'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: screen;
}
/* Warm vignettes for atmospheric depth */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 199;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(194, 107, 107, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(138, 148, 104, 0.06) 0%, transparent 50%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ===== TYPE UTILITIES ===== */
.heavy { font-weight: 900; letter-spacing: -0.025em; }
.light { font-weight: 300; }
.oxblood { color: var(--oxblood); }
.olive   { color: var(--olive); }
.mute    { color: var(--text-mute); }
.label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-mute); font-weight: 500;
}

/* ===== NAV - minimal, dark, sticky ===== */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0 22px;
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav .mark-link {
  display: flex; align-items: center; gap: 12px;
  color: var(--text);
}
.nav .mark {
  position: relative;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900; font-size: 18px; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1;
  display: inline-block;
}
/* "- Films -" subline, right-aligned under RIOT */
.nav .mark::after {
  content: "- Films -";
  display: block;
  text-align: right;
  font-size: 7px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 4px;
  font-family: "Inter", Arial, sans-serif;
}
.nav .mark .vel {
  font-family: "Times New Roman", Times, serif;
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0.005em;
  margin-right: 8px; font-size: 18px;
  color: var(--text);
}
.nav .mark .riot { display: inline-block; position: relative; color: var(--oxblood); }
.nav .mark .riot .bridge {
  position: absolute; left: -2px; right: -2px; height: 1.5px;
  background: var(--bg);
}
.nav .mark .riot .b1 { top: 5px; }
.nav .mark .riot .b2 { top: 11px; }
.nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav li a {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
  font-weight: 500;
  opacity: 0.85;
}
.nav li a:hover { opacity: 1; border-bottom-color: var(--oxblood); }
.nav li a.active { opacity: 1; border-bottom-color: var(--oxblood); }
.nav .cta {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 22px; background: var(--text); color: var(--bg);
  border-radius: 28px; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav .cta:hover { background: var(--oxblood); color: var(--text); }

/* ===== PAGE HEADER - big bold sans, shared ===== */
.page-header {
  padding: 80px 0 64px;
}
.page-header .eyebrow {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--oxblood); font-weight: 600;
  margin-bottom: 28px;
}
.page-header h1 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 1100px;
}
.page-header h1 .light { font-weight: 300; letter-spacing: -0.025em; }
.page-header h1 .oxblood { color: var(--oxblood); }
.page-header .lede {
  font-size: 18px; line-height: 1.6; color: var(--text);
  max-width: 660px; margin-top: 32px; opacity: 0.85;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
  padding: 18px 32px;
  background: var(--text); color: var(--bg);
  border-radius: 32px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { background: var(--oxblood); color: var(--text); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--sm {
  font-size: 11px; letter-spacing: 0.18em;
  padding: 13px 24px;
}

/* ===== SLATE TILES - In Development grid ===== */
.slate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding-bottom: 96px;
}
.tile {
  background: var(--bg-card);
  padding: 36px 36px 32px;
  aspect-ratio: 16/11;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  border: 1px solid var(--line);
}
.tile:hover { background: var(--bg-alt); }
.tile.tile--featured { grid-column: span 2; aspect-ratio: 21/9; }
.tile .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}
.tile .status { color: var(--oxblood); font-weight: 700; }
.tile .year { color: var(--text-mute); font-weight: 500; }
.tile h3 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--text);
}
.tile h3 .light { font-weight: 300; opacity: 0.75; }
.tile.tile--featured h3 {
  font-size: clamp(48px, 6vw, 88px);
}
.tile .info {
  display: flex; gap: 24px; align-items: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 500;
}
.tile .info span:not(:last-child)::after {
  content: " ·"; margin-left: 24px; color: var(--text-mute);
}

/* Variant accent tiles */
.tile--accent {
  background: var(--bg-card);
  border-color: var(--oxblood);
}
.tile--olive {
  background: var(--bg-card);
  border-color: var(--olive);
}
.tile--olive .status { color: var(--olive); }

/* ===== END STAMP - small left-aligned logo only ===== */
.end-stamp {
  margin-top: 16px;
  padding: 14px 0 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  position: relative;
}
/* hide the metadata bars - just the logo remains */
.end-stamp .meta-top,
.end-stamp .meta-bot { display: none; }

/* Big version of the lockup - same engine as nav but at scale */
.lockup-big {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.lockup-big .vel {
  font-family: "Times New Roman", Times, serif;
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0.005em;
  margin-right: 0.25em;
  color: var(--text);
  font-size: 0.86em;
}
.lockup-big .riot {
  display: inline-block; position: relative;
  color: var(--oxblood);
}
.lockup-big .riot .bridge {
  position: absolute; left: -3px; right: -3px;
  height: 0.085em; background: var(--bg);
  pointer-events: none;
}
.lockup-big .riot .b1 { top: 32%; }
.lockup-big .riot .b2 { top: 56%; }
.lockup-big::after {
  content: "- Films -";
  display: block;
  text-align: right;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 7px;
  font-family: "Inter", Arial, sans-serif;
}

/* ===== FOOTER + AOC ===== */
.acknowledgement {
  padding: 24px 0 20px;
  border-top: 1px solid var(--line);
  max-width: 900px;
  margin-top: 16px;
}
.acknowledgement p {
  font-size: 14px; line-height: 1.75; color: var(--text); opacity: 0.8;
}
.legal-foot {
  display: flex; justify-content: space-between;
  padding: 20px 0 32px; border-top: 1px solid var(--line);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-mute);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 18px 0 14px; }
  .nav ul { display: none; }
  .page-header { padding: 48px 0 40px; }
  .slate { grid-template-columns: 1fr; }
  .tile.tile--featured { grid-column: span 1; aspect-ratio: 4/3; }
  .legal-foot { flex-direction: column; gap: 8px; }
  .end-stamp { margin-top: 64px; padding: 56px 0 40px; }
  .end-stamp .meta-top, .end-stamp .meta-bot {
    flex-direction: column; gap: 8px; text-align: center;
  }
  .end-stamp .meta-top { margin-bottom: 40px; }
  .end-stamp .meta-bot { margin-top: 40px; }
}
