/* =============================================
   CSS VARIABLES — FILM PAGE (RED ACCENT)
   ============================================= */

:root {
  --red:        #e8003d;
  --red-dim:    rgba(232, 0, 61, 0.15);
  --red-glow:   0 0 24px rgba(232, 0, 61, 0.45);
  --white:      #ffffff;
  --off-white:  #e8e0d8;
  --muted:      rgba(255,255,255,0.45);
  --bg:         #050505;
  --bg-warm:    #0c0a08;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(232, 0, 61, 0.2);

  --font-display: 'Oswald', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-mono:    'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease-out);
}

/* =============================================
   RESET
   ============================================= */

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-mono);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* =============================================
   GRAIN
   ============================================= */

.grain {
  position: fixed;
  inset: -200%;
  width: 400%; height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9990;
  animation: grainShift 0.5s steps(2) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,1%); }
  50%  { transform: translate(1%,-2%); }
  75%  { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}

/* =============================================
   CURSOR
   ============================================= */

.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--red);
  transition: width .2s, height .2s;
}

.cursor-trail {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(232,0,61,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  z-index: 1000;
  transition: background .4s, border-color .4s;
}

.navbar.scrolled {
  background: rgba(5,5,5,0.9);
  border-color: var(--border-red);
}

.logo {
  position: relative;
  width: 38px; height: 38px;
  cursor: none;
}

.logo img { position: absolute; width: 100%; transition: opacity .3s; }
.logo-white { opacity: 0; }
.logo:hover .logo-green { opacity: 0; }
.logo:hover .logo-white { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-back {
  margin-left: 36px !important;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  color: rgba(255,255,255,0.3) !important;
}

.nav-back:hover { color: rgba(255,255,255,0.7) !important; }
.nav-back:hover::after { background: rgba(255,255,255,0.4) !important; }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  aspect-ratio: 16 / 8.5;
  width: 100%;
  overflow: hidden;
}

.hero video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(5,5,5,0.55) 70%,
    rgba(5,5,5,0.85) 100%
  );
  pointer-events: none;
}

/* Letterbox bars */
.letterbox {
  position: absolute;
  left: 0; right: 0;
  height: 7%;
  background: var(--bg);
  z-index: 2;
  pointer-events: none;
}
.letterbox.top { top: 0; }
.letterbox.bottom { bottom: 0; }

.hero-audio-toggle {
  position: absolute;
  top: 12%;
  right: 7%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(232,0,61,0.35);
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  cursor: none;
  transition: border-color .25s, color .25s, background .25s, box-shadow .25s;
}

.hero-audio-toggle:hover {
  color: var(--red);
  border-color: rgba(232,0,61,0.65);
  background: rgba(232,0,61,0.08);
  box-shadow: 0 0 18px rgba(232,0,61,0.14);
}

.hero-audio-toggle i {
  font-size: 0.8rem;
}

.showreel-overlay {
  position: absolute;
  bottom: 10%;
  left: 7%;
  z-index: 5;
}

.hero-tag {
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 12px;
  animation: fadeUp .8s 0.3s both;
}

.showreel-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 0.9;
  color: var(--white);
  animation: fadeUp .9s 0.5s both;
}

.showreel-overlay h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 4px;
}

.hero-roles {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  animation: fadeUp .9s 0.75s both;
  flex-wrap: wrap;
}

.dot { color: var(--red); opacity: 0.6; }

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 36px;
  animation: fadeUp .9s 1s both;
}

.hero-scroll-cue span {
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ABOUT
   ============================================= */

.filmmaker-about {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding: 100px 80px 120px;
  background: var(--bg-warm);
  position: relative;
}

.filmmaker-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-red), transparent);
}

.about-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}

.about-left h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--off-white);
  letter-spacing: 2px;
}

.about-left p {
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.red { color: var(--red); }

.divider {
  width: 40px; height: 1px;
  background: var(--red);
  margin: 28px 0;
  opacity: 0.5;
}

.section-small {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

/* Worked With */
.worked-with {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.worked-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  transition: border-color .25s, background .25s;
}

.worked-item:hover {
  border-color: var(--border-red);
  background: var(--red-dim);
}

.worked-item img {
  width: 26px; height: auto;
  filter: grayscale(1) brightness(1.5);
  opacity: .6;
  transition: filter .25s, opacity .25s;
}

.worked-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.worked-item div {
  display: flex;
  flex-direction: column;
}

.brand {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.work-type {
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 1px;
  margin-top: 1px;
}

/* Achievements */
.achievements {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-left: 2px solid var(--red);
  background: rgba(232,0,61,0.04);
}

.trophy { font-size: 1rem; line-height: 1.4; }

.ach-org {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.ach-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: .5px;
}

/* Contact block */
.contact-block { margin-bottom: 20px; }

.email-label {
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  display: block;
}

.email-tag {
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  padding: 8px 14px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: box-shadow .25s, background .25s;
}

.email-tag:hover {
  background: #ff1a55;
  box-shadow: var(--red-glow);
}

/* Socials */
.socials {
  display: flex;
  gap: 28px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: .5px;
  transition: color .25s, gap .25s;
}

.socials a:hover { color: var(--red); gap: 12px; }
.socials a i { font-size: .85rem; }

/* Profile Right */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-wrap {
  position: relative;
  overflow: hidden;
}

.profile-wrap img {
  width: 100%;
  display: block;
  filter: contrast(1.04) saturate(0.9);
  transition: transform .6s ease;
}

.profile-wrap:hover img { transform: scale(1.03); }

/* Corner brackets */
.profile-corner {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 2;
}

.profile-corner.tl { top: 8px; left: 8px;  border-top: 1.5px solid var(--red); border-left: 1.5px solid var(--red); }
.profile-corner.tr { top: 8px; right: 8px; border-top: 1.5px solid var(--red); border-right: 1.5px solid var(--red); }
.profile-corner.bl { bottom: 8px; left: 8px;  border-bottom: 1.5px solid var(--red); border-left: 1.5px solid var(--red); }
.profile-corner.br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--red); border-right: 1.5px solid var(--red); }

/* Stats row */
.profile-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
}

.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* =============================================
   PORTFOLIO SECTIONS
   ============================================= */

.portfolio-section {
  padding: 80px 80px 60px;
  background: var(--bg);
  position: relative;
}

.portfolio-section + .portfolio-section {
  padding-top: 20px;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}

.section-header > .section-rule:first-child {
  max-width: 60px;
  background: linear-gradient(to right, var(--border), transparent);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 5px;
  white-space: nowrap;
  color: rgba(255,255,255,0.8);
}

.section-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.section-num {
  font-size: 0.7rem;
  color: var(--red);
  margin-right: 10px;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 2px;
}

/* Iframe Wrapper */
.iframe-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.iframe-wrap::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 2;
  border: 0px solid var(--red);
  pointer-events: none;
  transition: border-width .3s ease;
}

.iframe-wrap:hover {
  border-color: rgba(232,0,61,0.4);
  box-shadow: 0 0 30px rgba(232,0,61,0.12);
}

.iframe-wrap:hover::before { border-width: 2px; }

.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: none;
}

.iframe-wrap.tall iframe { min-height: 340px; }

/* Portfolio Grids */
.portfolio-grid {
  display: grid;
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

.portfolio-grid.two   { grid-template-columns: repeat(2, 1fr); }
.portfolio-grid.three { grid-template-columns: repeat(3, 1fr); }
.portfolio-grid.four  { grid-template-columns: repeat(4, 1fr); }

/* Photography horizontal carousel */
.photo-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
}

.photo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: photoMarquee 36s linear infinite;
  will-change: transform;
}

.photo-carousel:hover .photo-track {
  animation-play-state: paused;
}

.photo-track .iframe-wrap {
  width: 320px;
  flex: 0 0 320px;
}

.photo-track .iframe-wrap iframe {
  min-height: 275px;
}

@keyframes photoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

/* =============================================
   YOU CAN ALSO
   ============================================= */

.also-section {
  padding: 80px 80px 100px;
  background: var(--bg-warm);
  position: relative;
}

.also-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-red), transparent);
}

.also-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.also-tile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  transition: border-color .35s ease, transform .4s var(--ease-out);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}

.also-tile:nth-child(2) { border-left: none; }
.also-tile:nth-child(3) { border-top: none; }
.also-tile:nth-child(4) { border-top: none; border-left: none; }

.also-tile:hover {
  border-color: var(--border-red) !important;
  z-index: 2;
  position: relative;
}

/* Embed */
.also-embed {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: #0a0a0a;
}

.also-embed iframe,
.also-embed img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: grayscale(20%);
}

.also-tile:hover .also-embed img,
.also-tile:hover .also-embed iframe {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Coming Embed Overlay */
.coming-embed { position: relative; }

.coming-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--red);
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(4px);
}

/* Content */
.also-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.also-icon {
  font-size: 1.1rem;
  color: var(--red);
  opacity: 0.7;
}

.also-content h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.also-content p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.also-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  transition: color .25s, gap .25s;
}

.also-link span { transition: transform .25s; }
.also-link:hover { color: var(--red); gap: 12px; }
.also-link:hover span { transform: translateX(4px); }

.coming-text {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-style: italic;
}

/* =============================================
   GEAR & SOFTWARE
   ============================================= */

.gear-section {
  padding: 80px 80px 90px;
  background: var(--bg);
  position: relative;
}

.gear-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-red), transparent);
}

.gear-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gear-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 28px 24px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease-out);
}

.gear-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 26px rgba(232,0,61,0.1);
  transform: translateY(-2px);
}

.gear-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gear-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  padding-bottom: 8px;
}

.gear-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gear-list i {
  color: var(--red);
  width: 16px;
  text-align: center;
  opacity: 0.85;
}

/* =============================================
   FOOTER
   ============================================= */

.film-footer {
  background: var(--bg);
  padding: 80px 80px 60px;
  text-align: center;
  position: relative;
}

.film-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,0,61,0.35), transparent);
}

.footer-inner { max-width: 900px; margin: auto; }

.footer-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 20px;
}

.film-footer h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--off-white);
}

.film-footer h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

.footer-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 36px auto 24px;
}

.footer-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.reach {
  color: var(--red);
  text-decoration: none;
  transition: color .25s;
}

.reach:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .filmmaker-about {
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 80px 40px;
  }
  .portfolio-section { padding: 60px 40px 40px; }
  .also-section { padding: 60px 40px 80px; }
  .gear-section { padding: 60px 40px 80px; }
}

@media (max-width: 900px) {

  .navbar { padding: 12px 24px; width: calc(100% - 24px); }
  .nav-links a { margin-left: 16px; }

  .filmmaker-about {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .about-right { order: -1; }

  .profile-stat-row { justify-content: space-around; }

  .hero { aspect-ratio: 4/3; }
  .showreel-overlay { left: 5%; }
  .hero-audio-toggle {
    top: auto;
    right: 24px;
    bottom: 14%;
  }

  .portfolio-section,
  .also-section,
  .gear-section { padding: 50px 24px; }

  .portfolio-grid.two,
  .portfolio-grid.three,
  .portfolio-grid.four { grid-template-columns: 1fr; }

  .photo-track .iframe-wrap {
    width: 280px;
    flex-basis: 280px;
  }

  .also-grid { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }

  .also-tile,
  .also-tile:nth-child(2),
  .also-tile:nth-child(3),
  .also-tile:nth-child(4) {
    border: 1px solid var(--border);
    grid-template-columns: 1fr;
  }

  .also-embed { height: 200px; min-height: 200px; }

  .film-footer { padding: 60px 24px 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  .worked-with { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-roles { gap: 6px; font-size: .6rem; }
  .showreel-overlay h1 { font-size: 3.5rem; }
  .hero-audio-toggle {
    right: 16px;
    bottom: 12%;
    padding: 8px 12px;
    font-size: 0.62rem;
  }
  .nav-links a[href="#short-films"],
  .nav-links a[href="#music-videos"],
  .nav-links a[href="#photography"],
  .nav-links a[href="#gear-software"] { display: none; }
}

/* Contact pill in film navbar */
.nav-contact-film {
  padding: 5px 14px !important;
  border: 1px solid rgba(232,0,61,0.3) !important;
  border-radius: 4px !important;
  color: rgba(255,255,255,0.65) !important;
  transition: border-color 0.25s, color 0.25s, background 0.25s !important;
}
.nav-contact-film:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
  background: rgba(232,0,61,0.06) !important;
}

/* Footer copyright */
.film-footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.22);
}
.film-footer .peace,
.film-footer .footer-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.22);
}