:root {
  --bg: #0a0b0d;
  --bg-elev: #12151a;
  --panel: #14181e;
  --text: #f2f0ec;
  --muted: #9a9ea6;
  --line: rgba(242, 240, 236, 0.1);
  --accent: #B388FF;
  --accent-dim: #9B6BFF;
  --accent-glow: rgba(155, 107, 255, 0.22);
  --gold: #c9a86a;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.site-header, main, .site-footer { position: relative; z-index: 1; }

/* —— Header / Nav —— */

/* —— Photo header (Nagra / Imagine banner) —— */
.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 0;
  background: #0a0b0d;
}

.header-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.header-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Frame the tape labels + deck — not too high / not too tight */
  object-position: 33% 24%;
  display: block;
  filter: grayscale(1) contrast(1.03) brightness(0.82);
}

.header-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,0.2) 0%, rgba(10,11,13,0.28) 35%, rgba(10,11,13,0.9) 100%);
  pointer-events: none;
}

.site-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start; /* menu on the left, same on every page */
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: transparent;
  backdrop-filter: none;
}

.site-header {
  min-height: clamp(200px, 36vw, 340px);
}


.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.logo-img {
  height: 126px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
}

.nav {
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 0.35rem; /* optical align with logo wordmark */
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--accent); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* —— Layout —— */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-hero {
  padding: 1.5rem 0 2rem;
}

/* Match gap above first panel to panel-to-panel gap */
.page-hero--tight {
  padding-bottom: 0;
}

.page-hero--tight h1 {
  margin-bottom: 0;
}
.page-hero--tight:has(.lede) h1 {
  margin-bottom: 0.5rem;
}


.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.page-hero .lede {
  max-width: 40rem;
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.page-hero .lede + .lede {
  margin-top: 0.65rem;
}



.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--accent-dim);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

/* —— Home hero —— */
.home-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 2.5rem;
}

.home-hero .brand-mark { display: none !important; }

/* —— Homepage client logos —— */
.client-logos {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.25rem 0 0;
}
.client-logos-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 0.75rem;
}

.client-logo-grid--commercial {
  /* same cell style as homepage; slightly denser for 12 marks */
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 0.75rem;
  margin-top: 0.35rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
}
.client-logo img {
  max-width: 100%;
  max-height: 2.8rem; /* clearer wordmarks */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.client-logo--white img {
  filter: brightness(0) invert(1);
}
.client-logo--lg img {
  max-height: 3.64rem; /* 30% larger */
}
.client-logo--xl img {
  max-height: 4.368rem; /* NFL Films +20% over lg */
}
.client-logo--nba img {
  max-height: 3.92rem; /* 40% larger */
}


.name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 0.35rem;
}
.name-row h1 {
  margin: 0;
}
.name-row .imdb-btn,
.name-row .badge-484 {
  flex-shrink: 0;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.name-row .imdb-btn img {
  height: 3.5rem; /* +25% */
  width: auto;
}
.name-row .badge-484 img {
  height: 2.8rem;
  width: auto;
}
.home-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 0.5rem;
}

.role {
  font-size: 1.15rem;
  color: var(--accent);
  margin: 0 0 1.1rem;
  font-weight: 500;
}

.lede {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.hero-portrait {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--panel);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 24px 60px rgba(0,0,0,0.45);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}

.hero-nagra {
  margin: 0 0 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 280px;
}

.hero-nagra img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
}

/* —— Buttons —— */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.imdb-btn,
a.imdb-btn,
.cta-row a.imdb-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  line-height: 0;
  text-decoration: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin-left: 0.35rem; /* nudge over a hair from Email */
  -webkit-tap-highlight-color: transparent;
}
.imdb-btn:hover,
.imdb-btn:focus,
.imdb-btn:focus-visible {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none;
}
.imdb-btn img {
  display: block;
  height: 3.15rem; /* 50% larger than 2.1rem */
  width: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-dim), var(--accent));
  color: #0a0b0d;
}

.btn.primary:hover { filter: brightness(1.08); }

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* —— Panels —— */
.panel {
  margin-top: 1.35rem;
  padding: 1.75rem 1.85rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.panel h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  margin: 0 0 1rem;
}

.panel h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  font-weight: 600;
}

.panel h3:first-of-type { margin-top: 0.25rem; }

.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

.panel a { color: var(--accent); }
.panel a:hover { color: var(--text); }

/* —— Credits —— */
.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.credit-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.credit-grid ul,
.credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.credit-grid li,
.credit-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--line);
}

.credit-list li { padding: 0.4rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* —— Rates —— */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rate-cards article {
  padding: 1.35rem;
  border-radius: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
}

.rate-cards .label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.rate-cards .price {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
}

.rate-cards .price span {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 0.4rem;
  font-weight: 400;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.equip-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
}

.equip-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.equip-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.equip-card li {
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--line);
}

.equip-card li:last-child { border-bottom: none; }

.kit-note, .small {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.5rem 0 0;
}

/* —— Links page —— */
.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-list li {
  border-bottom: 1px solid var(--line);
}

.links-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.15rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}

.links-list a:hover { color: var(--accent); }

.links-list .url {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  word-break: break-all;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

/* —— Bio photo (resume) —— */
.bio-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(300px, 52vw, 560px);
  background: #989796;
}
.bio-photo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  border: none;
  border-radius: 0;
}

.contact-portrait {
  width: 200px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.contact-name {
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.contact-role {
  color: var(--accent);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.contact-block p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.contact-block strong {
  color: var(--text);
  font-weight: 600;
}

.payments {
  margin-top: 2.1rem; /* a little lower under Call / Text / Email */
  padding-top: 0;
  border-top: none;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— Footer —— */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  max-width: none;
}

.site-footer a { color: var(--accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* —— Responsive —— */
@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .client-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-portrait {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .credit-grid,
  .equip-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-portrait {
    width: 160px;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-header { position: relative; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    background: #12151a;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.85rem 1.1rem;
    min-width: 12.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    gap: 0.15rem;
    z-index: 60;
  }
  .nav a { padding: 0.45rem 0.25rem; }
  .nav.open { display: flex; }
  .rate-cards { grid-template-columns: 1fr; }
  .logo-img { height: 120px; }
  .home-hero .brand-mark { max-width: 240px; }
  .links-list a { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

@media (max-width: 480px) {
  main { padding: 1.25rem 1.1rem 3rem; }
  .panel { padding: 1.35rem; }
  .home-hero h1 { font-size: 2.1rem; }
}

@media (max-width: 780px) {
  .site-header { min-height: clamp(160px, 48vw, 260px); }
  .site-header-inner { padding: 0.85rem 1rem; }
  .logo-img { height: 108px; }
}

.name-row .badge-484--lg img {
  height: 4.368rem; /* +20% over prior 3.64rem */
  width: auto;
}

/* —— IMDb-style credits box —— */
.imdb-credits-box {
  background: #fff;
  color: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.imdb-credits-group > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  color: #121212;
}
.imdb-credits-group > summary::-webkit-details-marker { display: none; }
.imdb-credits-group > summary::after {
  content: "▾";
  color: #666;
  font-size: 0.85rem;
}
.imdb-credits-group:not([open]) > summary::after { content: "▸"; }
.imdb-count {
  margin-left: auto;
  margin-right: 0.5rem;
  color: #666;
  font-weight: 600;
  font-size: 0.85rem;
}
.imdb-credits-scroll {
  max-height: 28rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.imdb-credits-list { }
.imdb-credit-row {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  color: inherit;
}
.imdb-credit-row:hover { background: #fafafa; }
.imdb-credit-poster {
  width: 45px;
  height: 67px;
  object-fit: cover;
  border-radius: 3px;
  background: #ddd;
}
.imdb-credit-poster--empty {
  width: 45px;
  height: 67px;
  border-radius: 3px;
  background: #e8e8e8;
}
.imdb-credit-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.imdb-credit-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #121212;
}
.imdb-credit-meta {
  font-size: 0.82rem;
  color: #666;
}
.imdb-credit-rating { color: #666; }
.imdb-star { color: #f5c518; }
.imdb-credit-role {
  font-size: 0.9rem;
  color: #121212;
}
.imdb-credit-eps {
  font-size: 0.85rem;
  color: #136cb2;
  font-weight: 600;
}
.imdb-credit-year {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
  padding-top: 0.15rem;
}

/* —— About me —— */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.about-photo {
  margin: 0;
  width: 100%;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #989796;
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 700px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 100%;
  }
}


