/* ============================================
   TOKENS
   ============================================ */
:root {
  --bg: #0B0B0D;
  --bg-card: #141317;
  --bg-card-hover: #1B1A1F;
  --amber: #FF7A29;
  --amber-dim: #FF7A2933;
  --teal: #16C79A;
  --gold: #D4AF37;
  --text: #F2EFE9;
  --muted: #C2C2CA;
  --line: #26252B;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: var(--amber); color: #0B0B0D; }

/* ============================================
   TEXTURE / ATMOSPHERE
   ============================================ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.spotlight {
  position: fixed; top: -40%; left: 50%; width: 900px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--amber-dim) 0%, transparent 60%);
  pointer-events: none; z-index: 1; filter: blur(20px);
  animation: spotlightSweep 14s ease-in-out infinite;
}

@keyframes spotlightSweep {
  0%, 100% { transform: translateX(-65%) translateY(0); }
  50% { transform: translateX(-35%) translateY(4%); }
}

/* Ambient drifting orbs — runs the full height of the page, gives the
   whole site a slow cinematic "living" background instead of a flat black */
.ambient-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.28;
}
.orb-1 {
  width: 520px; height: 520px; top: 5%; left: -10%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  animation: driftA 22s ease-in-out infinite;
}
.orb-2 {
  width: 460px; height: 460px; top: 45%; right: -12%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  animation: driftB 26s ease-in-out infinite;
}
.orb-3 {
  width: 380px; height: 380px; bottom: 0%; left: 30%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: driftC 30s ease-in-out infinite;
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8vw, 6vh) scale(1.15); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6vw, -8vh) scale(1.1); }
}
@keyframes driftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, -5vh) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .spotlight { animation: none; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6%;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,11,13,0.85), transparent);
}

.nav-brand-wrap { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.nav-brand .dot { color: var(--amber); }
.nav-phone {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--muted); transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--teal); }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 2.2rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links a { position: relative; padding: 4px 0; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--amber); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--amber); transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--amber); padding: 8px 16px; border-radius: var(--radius);
  color: var(--amber) !important; transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--amber); color: #0B0B0D !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; z-index: 110; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 6%;
  overflow: hidden;
  isolation: isolate;
}

/* Cinematic static background image (bottom layer) — Ken Burns
   slow zoom/pan animation gives a "moving video" feel from a still photo */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -3;
  pointer-events: none;
}

@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image { animation: none; }
}

/* Animated particle-network canvas, drawn transparently on top of the image */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
  pointer-events: none;
}

/* Keep all hero content above the background image + overlay */
.hero > *:not(.hero-bg-blur):not(.hero-bg-image):not(.hero-video):not(.hero-video-overlay) {
  position: relative;
  z-index: 2;
}

.hero-reel-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px; background: linear-gradient(to bottom, transparent, var(--line));
}

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.3em;
  color: var(--amber); margin-bottom: 1.4rem; text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 15vw, 10.5rem);
  line-height: 0.9; letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 0 60px var(--amber-dim);
}
.hero-title .line {
  display: inline-block; overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: reveal 1.1s cubic-bezier(0.65, 0, 0.15, 1) 0.4s forwards;
}
@keyframes reveal { to { clip-path: inset(0 0 0 0); } }

/* ============================================
   UNIVERSAL TEXT READABILITY
   Applies a subtle shadow to all small/body text
   so it stays legible over any background image,
   without needing per-section color tuning.
   ============================================ */
.hero-tagline,
.hero-meta,
.about-copy p,
.stat-label,
.service-card p,
.reel-card p,
.blog-card p,
.contact-detail span:last-child,
.blog-empty {
  text-shadow: 0 1px 4px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: var(--font-mono); font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted); margin-top: 1.6rem; min-height: 1.6em;
  letter-spacing: 0.02em;
}
.hero-tagline .cursor { color: var(--amber); animation: blink 0.9s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-meta {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}
.hero-meta .sep { color: var(--amber); margin: 0 0.6em; }

.hero-cta {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: var(--amber);
  color: #0B0B0D;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 4;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  writing-mode: vertical-rl;
  z-index: 2;
  opacity: 0;
  animation:
    fadeUp 0.8s ease 1.8s forwards,
    floaty 2.4s ease-in-out 2.6s infinite;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ============================================
   SHARED SECTION LAYOUT
   ============================================ */
section {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 8rem 6% 6rem;
}

/* Full-bleed atmospheric background image per section —
   sits behind the centered content, spans the full viewport width */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about::before {
  background: #000;
  z-index: -3;
}
.services::before {
  background: #000;
  z-index: -3;
}
.work::before      {
  background: #000;
  z-index: -3;
}
.blog {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blurred fill layer — extends the video's own colors/texture to the
   section edges instead of flat black, same technique as .work */
.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -3;
  background: #000;
  pointer-events: none;
}

/* Real video element, shown at "contain" size (same treatment as the
   Work section's horse image) — full frame visible, no cropping */
.blog-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.blog-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.45);
  z-index: -1;
  pointer-events: none;
}
.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -3;
  background: #000;
  pointer-events: none;
}

.contact-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.contact-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.45);
  z-index: -1;
  pointer-events: none;
}

.section-head { margin-bottom: 3.5rem; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.3em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.01em; line-height: 1;
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.4);
  z-index: -1;
  pointer-events: none;
}

.about-grid { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr; gap: 3rem; align-items: start; }

.about-photo-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(160deg, var(--amber) 0%, transparent 35%, transparent 65%, var(--teal) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,0.55) 100%);
  pointer-events: none;
}
.about-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.about-photo-wrap:hover .about-photo {
  filter: grayscale(0%) contrast(1.08);
  transform: scale(1.03);
}
.about-lead { font-size: 1.4rem; font-weight: 500; margin-bottom: 1.4rem; line-height: 1.5; }
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.about-copy p:last-child { margin-bottom: 0; }
.hl { color: var(--text); font-weight: 700; }

.about-stats { display: flex; flex-direction: column; gap: 2rem; border-left: 1px solid var(--line); padding-left: 2rem; }
.stat-num { font-family: var(--font-display); font-size: 3.2rem; color: var(--amber); line-height: 1; display: block; }
.stat-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.03em; display: block; margin-top: 0.5rem; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
  pointer-events: none;
}

.services-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.08);
  z-index: -1;
  pointer-events: none;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.service-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--amber); transition: height 0.3s ease;
}
.service-card:hover { background: rgba(255,255,255,0.055); }
.service-card:hover::before { height: 100%; }
.service-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--teal); }
.service-card h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.01em; margin: 0.8rem 0 0.6rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }

/* ============================================
   WORK / REEL
   ============================================ */
.work {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.work-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.45);
  z-index: -1;
  pointer-events: none;
}

.reel-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.reel-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem; transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.reel-card:hover { transform: translateY(-6px); border-color: var(--amber); background: rgba(255,255,255,0.055); }
.reel-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.reel-tag {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); border: 1px solid var(--teal); padding: 3px 10px; border-radius: 100px;
}
.reel-year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); }
.reel-card h3 { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 0.6rem; letter-spacing: 0.01em; }
.reel-card p { color: var(--muted); font-size: 0.92rem; max-width: 46ch; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-empty {
  color: var(--text); font-family: var(--font-mono); font-size: 0.9rem; grid-column: 1 / -1;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.blog-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.8rem; transition: border-color 0.3s ease;
}
.blog-card:hover { border-color: var(--gold); }
.blog-card-date { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0.6rem 0 0.5rem; }
.blog-card p { color: var(--muted); font-size: 0.88rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-detail { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--amber); }
.contact-detail span:last-child { color: var(--muted); font-size: 0.95rem; }

.contact-form {
  display: flex; flex-direction: column; gap: 1.3rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--text); text-transform: uppercase; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  background: rgba(255,255,255,0.035);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--amber);
}
.form-row input:focus-visible, .form-row textarea:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 2px;
}
.form-row textarea { resize: vertical; }

.submit-btn {
  background: var(--amber); color: #0B0B0D; border: none; border-radius: var(--radius);
  padding: 1rem; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.submit-btn:hover { transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.form-status { font-family: var(--font-mono); font-size: 0.8rem; min-height: 1.2em; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #FF5C5C; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative; z-index: 2; border-top: 1px solid var(--line);
  padding: 2.4rem 6%; text-align: center;
}
.footer-credits {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
}
.footer-credits .sep { color: var(--amber); margin: 0 0.6em; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .about-stats { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.6rem; flex-direction: row; flex-wrap: wrap; gap: 1.6rem 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reel-track { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 72%; max-width: 320px;
    background: var(--bg-card); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem; gap: 1.8rem; transition: right 0.35s ease; z-index: 105;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { right: 0; }
}

@media (max-width: 480px) {
  section { padding: 6rem 6% 4rem; }
}

/* ============================================
   ORBIT RUNNER — original animated character
   runs a SQUARE lap path around the hero title
   ============================================ */
.orbit-wrap {
  position: relative;
  display: inline-block;
}

.orbit-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65vw;
  max-width: 800px;
  height: 65vw;
  max-height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--amber) 0%, transparent 68%);
  opacity: 0.45;
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-wrap::before { animation: none; }
}

.orbit-runner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  animation: squarePath 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.orbit-runner svg {
  display: block;
}

@keyframes squarePath {
  0% {
    transform: translate(-310px, -105px);
  }

  25% {
    transform: translate(310px, -105px);
  }

  50% {
    transform: translate(310px, 105px);
  }

  75% {
    transform: translate(-310px, 105px);
  }

  100% {
    transform: translate(-310px, -105px);
  }
}

/* Smaller square on mobile so the runner stays on screen */
@media (max-width: 860px) {
  @keyframes squarePath {
    0%   { transform: translate(-120px, -70px); }
    25%  { transform: translate(120px, -70px); }
    50%  { transform: translate(120px, 70px); }
    75%  { transform: translate(-120px, 70px); }
    100% { transform: translate(-120px, -70px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-runner { animation: none; }
}
.runner-dog {
  animation-delay: 0.5s;
}

/* =========================================
   LIQUID GLASS EFFECT
   (frosted glass pill style, inspired by
   the Lumora reference — applied to nav
   links and hero badge, no text changed)
   ========================================= */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Nav links become a floating glass pill */
.nav-links.liquid-glass {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-links.liquid-glass:hover {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 4px 24px rgba(0,0,0,0.25);
}

/* Hero eyebrow becomes a glass badge pill */
.hero-eyebrow.liquid-glass {
  display: inline-block;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
}

/* Gentle floating "bob" motion for the hero title/orbit area —
   subtle premium feel, doesn't affect layout or text */
.orbit-wrap {
  animation: heroBob 3s ease-in-out infinite;
}
@keyframes heroBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-wrap { animation: none; }
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(242, 166, 90, 0.35);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  background: rgba(242, 166, 90, 0.12);
  border-color: var(--amber);
  box-shadow: 0 6px 30px rgba(255, 122, 41, 0.15);
}

/* =========================================
   TOP NAVIGATION
   ========================================= */

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 6%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 100;
  box-sizing: border-box;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.brand-name {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.brand-phone {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.brand-phone:hover {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-links .nav-contact {
  border: 1px solid var(--amber);
  border-radius: 5px;
  padding: 0.35rem 0.55rem;
  color: var(--amber);
}

.nav-links .nav-contact:hover {
  background: var(--amber);
  color: #0B0B0D;
}


/* =========================================
   HAMBURGER TOGGLE (hidden on desktop)
   ========================================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.01);
  color: var(--text);
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.nav-toggle-icon {
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.icon-close {
  transform: rotate(-90deg) scale(0.75);
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .icon-menu {
  transform: rotate(90deg) scale(0.75);
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mobile-menu-panel {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 150ms; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 250ms; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 300ms; }
.mobile-menu-cta {
  margin-top: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.9rem !important;
  border: 1px solid var(--amber);
  color: var(--amber) !important;
}

/* =========================================
   MOBILE NAV
   ========================================= */

@media (max-width: 700px) {

  .top-nav {
    padding: 1rem 5%;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-phone {
    font-size: 0.55rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}
/* ==================================================
   PROJECT DETAIL & CASE STUDY STYLING
================================================== */
.reel-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reel-view-btn {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  color: #2dd4bf;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.reel-card:hover .reel-view-btn {
  transform: translateX(4px);
  color: #38bdf8;
}

/* Case Study Page Wrap */
.project-detail-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 7.5rem 6% 6rem;
  position: relative;
  z-index: 2;
}

.project-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3.5rem;
}

.project-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.project-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.project-summary-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2e8f0;
  max-width: 65ch;
  margin-bottom: 2rem;
}

.project-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.project-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #2dd4bf;
  color: #2dd4bf;
}

/* Case Study Grid Sections */
.project-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
}

.project-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
}

.project-section h2 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.project-section p {
  color: #94a3b8;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.project-section p:last-child {
  margin-bottom: 0;
}

/* Deliverables & Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.tag-item {
  background: rgba(45, 212, 191, 0.1);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.deliverables-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.deliverables-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #fbbf24;
}

/* Image Placeholders */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.project-img-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.5rem;
}

.project-img-box img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Footer Case Study Navigation */
.project-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
}

.project-nav-bar a {
  color: #2dd4bf;
  text-decoration: none;
  transition: color 0.2s;
}

.project-nav-bar a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .project-detail-wrap {
    padding: 6rem 5% 4rem;
  }
  .project-section {
    padding: 1.4rem;
  }
}
.work-video-overlay {
  pointer-events: none;
}

.reel-card {
  position: relative;
  z-index: 5;
}
