
/* Shared header/footer isolation */
.site-header,
.site-header * ,
.static-menu,
.static-menu *,
.menu-title,
.menu-title *,
.menu-row,
.menu-row *,
.site-footer,
.site-footer *,
.topbar,
.topbar *,
.topbar-inner,
.footer,
.footer * {
  box-sizing: border-box;
}

.site-header {
  position: relative;
  padding-top: 14px;
  z-index: 20;
  background: #fff;
}

.site-header__bar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 24px;
  position: relative;
}

.site-header__left,
.site-header__center,
.site-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__left { justify-content: flex-start; }
.site-header__center { justify-content: center; }
.site-header__right { justify-content: flex-end; }

.static-menu {
  width: 100%;
  text-align: center;
  margin: 6px 0 12px;
  padding: 0 10px;
  background: #fff;
}

.menu-title {
  width: 100%;
  margin: 0 0 10px;
  line-height: 0;
}

.menu-title svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.menu-title text {
  fill: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-row {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px !important;
  width: 100%;
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.menu-row a {
  display: inline-block;
  position: relative;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-row a:hover,
.menu-row a:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.menu-row a::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-row a:hover::after,
.menu-row a:focus-visible::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.site-footer {
  position: relative;
  padding: 6px 0 14px;
  margin-top: 6px;
  background: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.22), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.site-footer__logo {
  width: 168px;
}

.footer-meta {
  display: contents;
}

.footer-note,
.footer-credit {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  justify-self: end;
  align-self: end;
  color: rgba(0,0,0,0.45);
}

.footer-credit {
  justify-self: end;
  align-self: start;
  text-align: right;
  color: #000;
  text-decoration: none;
}

.footer-credit span {
  color: rgba(0,0,0,0.45);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.topbar-inner {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.back-link,
.brand-link {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.brand-link {
  opacity: 0.72;
}

.footer {
  padding: 0 0 28px;
  background: #fff;
}

.footer-line {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}

.footer-line a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__logo { width: min(300px, 100%); }
  .footer-credit, .footer-note { justify-self: start; text-align: left; }
  .footer-line { flex-direction: column; align-items: flex-start; }
  .topbar-inner { width: calc(100% - 20px); min-height: 64px; }
  .static-menu { margin: 10px 0 18px; padding: 0 4px; }
  .menu-row { gap: 12px 18px; padding-bottom: 10px; }
  .menu-row a { font-size: 11px; letter-spacing: 0.1em; }
}


.menu-row a.is-active {
  opacity: 1;
}

.menu-row a.is-active::after {
  opacity: 0.45;
  transform: scaleX(1);
}

/* Global title / hero spacing */
.hero {
  padding: 6px 0 8px;
}

.title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ---------- unified site rhythm ---------- */
:root {
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 36px;
  --space-7: 48px;
}

/* shared header / title treatment */
.site-header {
  padding-top: var(--space-1);
}

.static-menu {
  width: 100%;
  text-align: center;
  margin: var(--space-1) 0 var(--space-2);
  padding: 0 10px;
}

.menu-title {
  width: 100%;
  margin: 0 0 var(--space-2);
  line-height: 0;
}

.menu-title svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.menu-title text {
  fill: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-row {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px !important;
  width: 100%;
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 0 var(--space-2);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.menu-row a {
  display: inline-block;
  position: relative;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-row a:hover,
.menu-row a:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.menu-row a::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-row a:hover::after,
.menu-row a:focus-visible::after,
.menu-row a.is-active::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.menu-row a.is-active {
  opacity: 1;
}

/* global title / section rhythm */
.hero {
  padding: var(--space-1) 0 var(--space-2);
}

.title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-grid {
  gap: var(--space-3);
  padding-bottom: var(--space-3);
}

.facts {
  gap: var(--space-3);
  padding-top: var(--space-2);
}

.media {
  padding: 0 0 var(--space-5);
}

.content {
  padding: 0 0 var(--space-6);
}

.video-section {
  padding: 0 0 var(--space-6);
}

.video-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: var(--space-5) 20px !important;
}

.content-grid {
  gap: var(--space-5);
}

.sidebar {
  gap: var(--space-3);
}

.section-label {
  margin: 0 0 var(--space-3);
}

.video-meta {
  padding-top: var(--space-2);
}

.video-note {
  margin-top: var(--space-1);
}

.still-gallery {
  padding: 0 0 var(--space-6);
}

.still-grid {
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.main-logo-wrap {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.intro-block {
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-5);
}

.site-footer {
  margin-top: var(--space-3);
  padding: var(--space-1) 0 var(--space-3);
  background: #fff;
}

.site-footer__inner {
  padding-top: var(--space-3);
}

.footer {
  padding: 0 0 var(--space-4);
  background: #fff;
}

.footer-line {
  padding-top: var(--space-3);
}

@media (max-width: 640px) {
  :root {
    --space-4: 18px;
    --space-5: 24px;
    --space-6: 30px;
    --space-7: 40px;
  }

  .video-grid {
    grid-template-columns: 1fr !important;
  }

  .menu-row {
    gap: 12px 18px !important;
  }

  .menu-row a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}


/* Requested visual refinements: larger project grids, larger social icons, compact day/night toggle */
.video-grid,
#embeddedVideoGrid {
  grid-template-columns: repeat(2, minmax(340px, 1fr)) !important;
  gap: 72px 44px !important;
  align-items: start !important;
}

.video-card,
.video-card a {
  max-width: 660px !important;
}

.video-frame-wrap,
.video-card__frame,
.video-card__media {
  aspect-ratio: 16 / 9 !important;
  padding-top: 0 !important;
}

.footer-social {
  gap: 32px !important;
}

.footer-social__link {
  width: 34px !important;
  height: 34px !important;
  opacity: 0.84 !important;
}

.footer-social svg {
  width: 34px !important;
  height: 34px !important;
  stroke-width: 1.55 !important;
}

.footer-social__link--imdb {
  width: 64px !important;
}

.footer-social__link--imdb svg {
  width: 64px !important;
  height: 34px !important;
}

.footer-social svg path.footer-social__detail {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.1 !important;
  opacity: 0.55 !important;
}

.sn-theme-toggle {
  gap: 7px !important;
  padding: 6px 8px 5px !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: lowercase !important;
}

.sn-theme-toggle__day,
.sn-theme-toggle__night {
  opacity: 0.52 !important;
}

body.light-mode .sn-theme-toggle__day,
body:not(.light-mode) .sn-theme-toggle__night {
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .video-grid,
  #embeddedVideoGrid {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
    gap: 54px 30px !important;
  }
}

@media (max-width: 640px) {
  .video-grid,
  #embeddedVideoGrid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .footer-social {
    gap: 24px !important;
  }

  .footer-social__link {
    width: 30px !important;
    height: 30px !important;
  }

  .footer-social svg {
    width: 30px !important;
    height: 30px !important;
  }
}

/* Requested revision: visibly larger video grids, tighter spacing, and larger footer icons */
.video-grid,
#embeddedVideoGrid,
.home-page .video-grid,
.home-page #embeddedVideoGrid {
  grid-template-columns: repeat(2, minmax(440px, 1fr)) !important;
  column-gap: 24px !important;
  row-gap: 28px !important;
  align-items: start !important;
  justify-content: center !important;
}

.video-card,
.video-card a,
.home-page .video-card,
.home-page .video-card a {
  width: 100% !important;
  max-width: 740px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.video-frame-wrap,
.video-card__frame,
.video-card__media,
.home-page .video-frame-wrap,
.home-page .video-card__frame,
.home-page .video-card__media {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  margin-bottom: 10px !important;
}

.footer-social {
  gap: 34px !important;
}

.footer-social__link,
.footer-social svg {
  width: 44px !important;
  height: 44px !important;
  opacity: 1 !important;
}

.footer-social svg {
  stroke-width: 1.9 !important;
}

.footer-social svg path.footer-social__detail,
.footer-social svg .footer-social__detail {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.35 !important;
  opacity: 0.9 !important;
}

.footer-social__link--imdb,
.footer-social__link--imdb svg {
  width: 82px !important;
  height: 44px !important;
}

.footer-social__link--imdb svg text {
  font-size: 16px !important;
  letter-spacing: 1.7px !important;
}

@media (max-width: 980px) {
  .video-grid,
  #embeddedVideoGrid,
  .home-page .video-grid,
  .home-page #embeddedVideoGrid {
    grid-template-columns: 1fr !important;
    row-gap: 26px !important;
  }

  .video-card,
  .video-card a,
  .home-page .video-card,
  .home-page .video-card a {
    max-width: 780px !important;
  }
}

@media (max-width: 640px) {
  .video-grid,
  #embeddedVideoGrid,
  .home-page .video-grid,
  .home-page #embeddedVideoGrid {
    row-gap: 22px !important;
  }

  .footer-social {
    gap: 24px !important;
  }

  .footer-social__link,
  .footer-social svg {
    width: 34px !important;
    height: 34px !important;
  }

  .footer-social__link--imdb,
  .footer-social__link--imdb svg {
    width: 66px !important;
    height: 34px !important;
  }
}


/* Requested: plain boxed YouTube icon, editable 3s preview start, and strict 16:9 preview images */
.video-frame-wrap,
.video-card__frame,
.video-card__media {
  aspect-ratio: 16 / 9 !important;
  padding-top: 0 !important;
  height: auto !important;
}

.video-frame-wrap > .video-layer,
.video-frame-wrap > iframe,
.video-frame-wrap > video,
.video-frame-wrap > .video-poster,
.video-frame-wrap > .video-placeholder,
.video-card__frame > img,
.video-card__media > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.footer-social__youtube-box rect {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.1 !important;
  rx: 0 !important;
}

.footer-social__youtube-box .footer-social__cutout {
  fill: currentColor !important;
  stroke: none !important;
}

/* Social icon tooltips */
.footer-social__link[data-tooltip] {
  position: relative !important;
}

.footer-social__link[data-tooltip]::before {
  content: attr(data-tooltip) !important;
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 10px) !important;
  transform: translateX(-50%) translateY(4px) !important;
  z-index: 20 !important;
  display: block !important;
  width: max-content !important;
  max-width: 160px !important;
  padding: 6px 9px !important;
  border: 1px solid currentColor !important;
  background: var(--sn-black) !important;
  color: var(--sn-cream) !important;
  font-family: var(--sn-font-body, Arial, sans-serif) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 160ms ease, transform 160ms ease !important;
}

.footer-social__link[data-tooltip]::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 5px) !important;
  transform: translateX(-50%) translateY(4px) rotate(45deg) !important;
  z-index: 19 !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 1px solid currentColor !important;
  border-bottom: 1px solid currentColor !important;
  background: var(--sn-black) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 160ms ease, transform 160ms ease !important;
}

body.light-mode .footer-social__link[data-tooltip]::before,
body.light-mode .footer-social__link[data-tooltip]::after {
  background: var(--sn-cream) !important;
  color: var(--sn-black) !important;
}

.footer-social__link[data-tooltip]:hover::before,
.footer-social__link[data-tooltip]:focus-visible::before,
.footer-social__link[data-tooltip]:hover::after,
.footer-social__link[data-tooltip]:focus-visible::after {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

.footer-social__link[data-tooltip]:hover::after,
.footer-social__link[data-tooltip]:focus-visible::after {
  transform: translateX(-50%) translateY(0) rotate(45deg) !important;
}

@media (max-width: 700px) {
  .footer-social__link[data-tooltip]::before,
  .footer-social__link[data-tooltip]::after {
    display: none !important;
  }
}

/* =========================================================
   MENU + DIRECTOR TITLE SIZE PATCH
   - Increases primary menu links by ~20%
   - Increases “Director of Photography” subtitle by ~20%
   ========================================================= */
.menu-row a {
  font-size: 16px !important;
}

.menu-subtitle {
  font-size: 22px !important;
}

@media (max-width: 700px) {
  .menu-row a {
    font-size: 13px !important;
  }

  .menu-subtitle {
    font-size: 18px !important;
  }
}


/* Footer horizontal line: copyright text and icons in one centered span */
.site-footer {
  text-align: center !important;
}
.site-footer__inner {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.site-footer__line {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(14px, 2vw, 28px) !important;
  flex-wrap: wrap !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.site-footer__line .footer-note {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
}
.site-footer__line .footer-social {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
}
@media (max-width: 520px) {
  .site-footer__line {
    gap: 12px !important;
  }
  .site-footer__line .footer-social {
    flex-wrap: wrap !important;
  }
}

/* Recognizable YouTube footer icon */
.footer-social__link--youtube svg.footer-social__youtube-logo {
  width: 1.75rem !important;
  height: 1.75rem !important;
}

.footer-social__link--youtube .footer-social__youtube-red {
  fill: #ff0000 !important;
  stroke: none !important;
}

.footer-social__link--youtube .footer-social__youtube-play {
  fill: #ffffff !important;
  stroke: none !important;
}

.footer-social__link--youtube:hover .footer-social__youtube-red,
.footer-social__link--youtube:focus-visible .footer-social__youtube-red {
  filter: brightness(1.1);
}


/* Dark default: hide day/night toggle and prevent saved light mode from showing. */
.sn-theme-toggle,
.theme-switch,
.theme-toggle,
#themeToggle,
[data-theme-toggle] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body:not(.light-mode),
body:not(.light-mode) .site-shell,
body:not(.light-mode) .page-shell {
  background: #050505 !important;
  color: var(--ink, #f7f2e8) !important;
}


/* Dark is the only public theme now. Keep old cached light-mode preferences from making pages white. */
html.sn-dark-default body,
html.sn-dark-default body.light-mode,
html.sn-dark-default body.light-mode .site-shell,
html.sn-dark-default body.light-mode .page-scope,
html.sn-dark-default body.light-mode main,
html.sn-dark-default body.light-mode section,
html.sn-dark-default body.light-mode article,
html.sn-dark-default body.light-mode .container,
html.sn-dark-default body.light-mode .site-header,
html.sn-dark-default body.light-mode .site-footer,
html.sn-dark-default body.light-mode .site-footer__inner,
html.sn-dark-default body.light-mode .video-section,
html.sn-dark-default body.light-mode .project-page,
html.sn-dark-default body.light-mode #sn-about-main,
html.sn-dark-default body.light-mode #sn-about-main .sn-about-wrap {
  background: #000000 !important;
  color: #ffffe9 !important;
}

html.sn-dark-default .sn-theme-toggle,
html.sn-dark-default .theme-switch,
html.sn-dark-default .theme-toggle,
html.sn-dark-default #themeToggle,
html.sn-dark-default [data-theme-toggle] {
  display: none !important;
}

/* Mobile title correction shared fallback */
@media (max-width: 980px) {
  .menu-title {
    width: var(--sn-home-width, min(92vw, 1440px)) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .menu-title svg {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-family: var(--sn-font-head, Georgia, 'Times New Roman', serif) !important;
    letter-spacing: 0.34em !important;
  }

  .menu-subtitle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: var(--sn-home-width, min(92vw, 1440px)) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 10px auto 0 !important;
    font-family: var(--sn-font-body, Arial, sans-serif) !important;
    font-size: clamp(13px, 3.2vw, 16px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.16em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
  }

  .main-logo {
    width: 100% !important;
    max-width: 100% !important;
  }

  .main-logo a {
    width: auto !important;
  }

  .main-logo img {
    width: min(85%, 600px) !important;
    max-width: 600px !important;
  }
}

@media (max-width: 640px) {
  .menu-title {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.25em !important;
  }

  .menu-subtitle {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    font-size: clamp(12px, 3.55vw, 15px) !important;
    letter-spacing: 0.13em !important;
  }
}

@media (max-width: 420px) {
  .menu-title {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.18em !important;
  }

  .menu-subtitle {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    font-size: 12px !important;
    letter-spacing: 0.10em !important;
  }
}

/* =========================================================
   Desktop title restore shared fallback — preserve mobile rules
   ========================================================= */
@media (min-width: 981px) {
  .site-header .static-menu,
  .menu-title,
  .menu-subtitle {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .menu-title svg {
    width: 100% !important;
    max-width: none !important;
    max-height: 96px !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.55em !important;
  }
}

@media (min-width: 982px) and (max-width: 1200px) {
  .menu-title svg {
    max-height: 96px !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.55em !important;
  }
}


/* Live cleanup: hide legacy duplicate cinematic overlay footer/menu if old markup is still present. */
.overlay-menu .menu-footer,
.overlay-menu .menu-list,
.overlay-menu .menu-reel { display: none !important; }

/* Live cleanup: keep dark as default and hide old theme switch markup. */
#themeToggle,
.theme-toggle,
.day-night-toggle,
.left-rail__group { display: none !important; }


/* =========================================================
   CSS AUDIT CONSOLIDATION — shared final intended overrides
   - Dark is default, toggle hidden
   - Desktop title restored to previous larger full-width treatment
   - Mobile title remains separate and does not affect desktop
   - Footer text/icons remain horizontal and centered
   ========================================================= */
html:not(.light-mode),
html.sn-dark-default,
body:not(.light-mode) {
  background: var(--sn-black, #000000) !important;
  color: var(--sn-cream, #ffffe9) !important;
}

.sn-theme-toggle,
.theme-switch,
.theme-toggle,
#themeToggle,
[data-theme-toggle],
.day-night-toggle {
  display: none !important;
}

@media (min-width: 981px) {
  .site-header .static-menu,
  .menu-title,
  .menu-subtitle {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .menu-title svg {
    width: 100% !important;
    max-width: none !important;
    max-height: 96px !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.55em !important;
  }
}

@media (max-width: 980px) {
  .menu-title {
    width: var(--sn-home-width, min(92vw, 1440px)) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .menu-title svg {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-family: var(--sn-font-head, Georgia, 'Times New Roman', serif) !important;
    letter-spacing: 0.34em !important;
  }

  .menu-subtitle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: var(--sn-home-width, min(92vw, 1440px)) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 10px auto 0 !important;
    font-family: var(--sn-font-body, Arial, sans-serif) !important;
    font-size: clamp(13px, 3.2vw, 16px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.16em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
  }

  .main-logo {
    width: 100% !important;
    max-width: 100% !important;
  }

  .main-logo a {
    width: auto !important;
  }

  .main-logo img {
    width: min(85%, 600px) !important;
    max-width: 600px !important;
  }
}

@media (max-width: 640px) {
  .menu-title {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.25em !important;
  }

  .menu-subtitle {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    font-size: clamp(12px, 3.55vw, 15px) !important;
    letter-spacing: 0.13em !important;
  }
}

@media (max-width: 420px) {
  .menu-title {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
  }

  .menu-title svg text,
  .menu-title text {
    letter-spacing: 0.18em !important;
  }

  .menu-subtitle {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    font-size: 12px !important;
    letter-spacing: 0.10em !important;
  }
}

.site-footer__line,
.site-footer .site-footer__line {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.site-footer__line .footer-social {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Final social icon visibility fix: About section + footer */
.sn-about-social-row,
.footer-social {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 14px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.sn-about-social-row {
  justify-content: flex-start !important;
  margin: 22px 0 0 !important;
  width: 100% !important;
  clear: both !important;
}

.site-footer__line .footer-social,
.site-footer .footer-social {
  justify-content: center !important;
}

.sn-about-social-link,
.footer-social__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  flex: 0 0 42px !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--text, #ffffe9) !important;
  border: 1px solid rgba(255,255,233,.32) !important;
  background: rgba(255,255,233,.03) !important;
  text-decoration: none !important;
}

.sn-about-social-link svg,
.footer-social__link svg {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social__link--imdb,
.footer-social__link--imdb svg {
  width: 58px !important;
  min-width: 58px !important;
  flex-basis: 58px !important;
}

.footer-social__link--imdb svg text {
  fill: currentColor !important;
  stroke: none !important;
}

.sn-about-social-link--youtube .yt-box,
.footer-social__link--youtube .footer-social__youtube-red {
  fill: #ff0000 !important;
  stroke: #ff0000 !important;
}

.sn-about-social-link--youtube .yt-play,
.footer-social__link--youtube .footer-social__youtube-play {
  fill: #fff !important;
  stroke: none !important;
}

@media (max-width: 640px) {
  .sn-about-social-row,
  .footer-social {
    gap: 10px !important;
  }
  .sn-about-social-link,
  .footer-social__link {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    flex-basis: 38px !important;
  }
}


/* Final social icon placement fix: centered About row + visible centered footer row. */
.sn-about-copy-block .sn-about-social-row,
.sn-about-social-row--bio {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 24px auto 28px !important;
  padding: 0 !important;
  clear: both !important;
  flex-wrap: nowrap !important;
  text-align: center !important;
}
.sn-about-social-link {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--sn-cream, #ffffe9) !important;
  border: 1px solid rgba(255,255,233,.42) !important;
  border-radius: 999px !important;
  text-decoration: none !important;
}
.sn-about-social-link svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  overflow: visible !important;
}
.sn-about-social-link--youtube .yt-box,
.footer-social__link--youtube .footer-social__youtube-red {
  fill: #ff0000 !important;
  stroke: #ff0000 !important;
}
.sn-about-social-link--youtube .yt-play,
.footer-social__link--youtube .footer-social__youtube-play {
  fill: #fff !important;
  stroke: none !important;
}
.site-footer,
.site-footer .container,
.site-footer__inner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.site-footer__line {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  width: 100% !important;
  text-align: center !important;
  flex-wrap: wrap !important;
}
.site-footer__line .footer-social,
.site-footer .footer-social {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.footer-social__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  color: var(--sn-cream, #ffffe9) !important;
  border: 1px solid rgba(255,255,233,.32) !important;
  border-radius: 999px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.footer-social__link svg {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  overflow: visible !important;
}
.footer-social__link--imdb,
.footer-social__link--imdb svg {
  width: 54px !important;
  flex-basis: 54px !important;
}
.footer-social__link--imdb svg text {
  fill: currentColor !important;
  stroke: none !important;
}
@media (max-width: 700px) {
  .site-footer__line {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* Footer social icons: remove circular button treatment, keep icons centered/visible. */
.site-footer .footer-social__link,
.site-footer__line .footer-social__link,
.footer-social .footer-social__link {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline-offset: 4px !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  flex: 0 0 auto !important;
  padding: 0 4px !important;
}
.site-footer .footer-social__link:hover,
.site-footer .footer-social__link:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.site-footer .footer-social__link svg,
.footer-social .footer-social__link svg {
  width: 24px !important;
  height: 24px !important;
}
.site-footer .footer-social__link--imdb svg,
.footer-social .footer-social__link--imdb svg {
  width: 58px !important;
  height: 24px !important;
}

/* Final footer alignment override: copyright left, social icons centered */
.site-footer .site-footer__inner.site-footer__line {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  gap: 1rem !important;
  text-align: center !important;
}

.site-footer .site-footer__line .footer-note {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.site-footer .site-footer__line .footer-social {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  margin: 0 auto !important;
}

@media (max-width: 640px) {
  .site-footer .site-footer__inner.site-footer__line {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    row-gap: 0.65rem !important;
  }

  .site-footer .site-footer__line .footer-note {
    position: static !important;
    transform: none !important;
    width: 100% !important;
  }

  .site-footer .site-footer__line .footer-social {
    margin: 0 !important;
    justify-content: flex-start !important;
  }
}

/* Final desktop title tune: larger title, wider spacing, mobile untouched. */
@media (min-width: 901px) {
  .menu-title {
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  .menu-title svg {
    display: block !important;
    width: 100% !important;
    max-width: 1120px !important;
    height: auto !important;
    max-height: 118px !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-size: 96px !important;
    letter-spacing: 0.62em !important;
  }

  .menu-subtitle {
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    letter-spacing: 0.24em !important;
  }
}

/* =========================================================
   Desktop title actual larger fix — mobile untouched
   Fixes prior change that made the wordmark appear smaller by
   restoring full-width desktop scaling and increasing text size.
   ========================================================= */
@media (min-width: 901px) {
  .site-header .static-menu {
    width: 100% !important;
    max-width: none !important;
  }

  .menu-title {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
  }

  .menu-title svg {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: clamp(100px, 9vw, 148px) !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-size: 116px !important;
    letter-spacing: 0.50em !important;
  }

  .menu-subtitle {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    letter-spacing: 0.22em !important;
  }
}

@media (min-width: 982px) and (max-width: 1200px) {
  .menu-title svg {
    height: clamp(104px, 10vw, 132px) !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-size: 112px !important;
    letter-spacing: 0.46em !important;
  }
}

/* =========================================================
   Narrow mobile title overflow + subtitle gap fix
   - Targets the 653–667px overflow band without changing desktop
   - Tightens the title-to-subtitle spacing below 500px
   ========================================================= */
@media (min-width: 653px) and (max-width: 667px) {
  .menu-title {
    width: calc(100vw - 34px) !important;
    max-width: calc(100vw - 34px) !important;
    overflow: hidden !important;
  }

  .menu-title svg {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-size: 104px !important;
    letter-spacing: 0.28em !important;
  }

  .menu-subtitle {
    margin-top: 6px !important;
  }
}

@media (max-width: 500px) {
  .menu-title {
    margin-bottom: 0 !important;
  }

  .menu-title svg {
    margin-bottom: 0 !important;
  }

  .menu-subtitle {
    margin-top: 2px !important;
    padding-top: 0 !important;
    line-height: 1.08 !important;
  }
}

/* =========================================================
   Final title gap + sub-500 overflow fix
   - Reduces spacing between Savannah Newborn and Director of Photography sitewide
   - Adds stronger mobile containment under 500px to prevent horizontal overflow
   ========================================================= */
.menu-title {
  margin-bottom: 0 !important;
}

.menu-title svg {
  margin-bottom: 0 !important;
}

.menu-subtitle {
  margin-top: clamp(2px, 0.45vw, 8px) !important;
  padding-top: 0 !important;
}

@media (max-width: 500px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .site-header,
  .static-menu,
  .menu-title,
  .menu-subtitle {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .menu-title {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
  }

  .menu-title svg {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(58px, 17vw, 82px) !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text {
    font-size: clamp(72px, 20vw, 96px) !important;
    letter-spacing: clamp(0.12em, 3.3vw, 0.22em) !important;
  }

  .menu-subtitle {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
    line-height: 1.02 !important;
    letter-spacing: clamp(0.08em, 2.2vw, 0.14em) !important;
  }
}

/* FINAL OVERRIDE: force title/subtitle spacing to 15px sitewide */
.menu-title,
.brand-title,
.hero-title,
.site-title,
.home-title {
  margin-bottom: 0 !important;
}

.menu-subtitle,
.brand-subtitle,
.hero-subtitle,
.site-subtitle,
.home-subtitle,
.director-title,
.title-subtitle {
  margin-top: 15px !important;
}

.menu-title + .menu-subtitle,
.brand-title + .brand-subtitle,
.hero-title + .hero-subtitle,
.site-title + .site-subtitle,
.home-title + .home-subtitle,
.title-stack .menu-subtitle,
.title-stack .brand-subtitle,
.title-lockup .menu-subtitle,
.title-lockup .brand-subtitle {
  margin-top: 15px !important;
}

@media (max-width: 500px) {
  .menu-title + .menu-subtitle,
  .brand-title + .brand-subtitle,
  .hero-title + .hero-subtitle,
  .site-title + .site-subtitle,
  .home-title + .home-subtitle,
  .title-stack .menu-subtitle,
  .title-stack .brand-subtitle,
  .title-lockup .menu-subtitle,
  .title-lockup .brand-subtitle {
    margin-top: 15px !important;
  }
}

/* Force title/subtitle gap to zero sitewide */
.menu-title,
.hero-title,
.site-title,
.name-title {
  margin-bottom: 0 !important;
}
.menu-subtitle,
.hero-subtitle,
.site-subtitle,
.title-subtitle,
.director-subtitle {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.menu-title + .menu-subtitle,
.hero-title + .hero-subtitle,
.site-title + .site-subtitle,
.name-title + .director-subtitle {
  margin-top: 0 !important;
}

/* =========================================================
   SAFE CONTAINER WIDTH UPDATE
   Homepage/shared containers use 90% viewport width, capped at 1440px.
   This avoids applying width rules to nested gallery/card elements.
   ========================================================= */
:root {
  --sn-home-width: min(98vw, 1600px) !important;
  --sn-project-width: min(98vw, 1600px) !important;
}

.container,
.topbar-inner,
.project-page .container,
#sn-about-main .sn-about-wrap,
.site-footer > .container {
  width: var(--sn-home-width) !important;
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 900px) {
  :root {
    --sn-home-width: calc(100vw - 28px) !important;
    --sn-project-width: calc(100vw - 28px) !important;
  }
}

/* Targeted fix: prevent title overflow at 640-650px without changing desktop/mobile defaults */
@media (min-width: 640px) and (max-width: 650px) {
  .menu-title,
  .brand-title,
  .hero-title,
  .site-title,
  .home-title,
  .name-title,
  .title-lockup,
  .title-stack {
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
  }

  .menu-title svg,
  .brand-title svg,
  .hero-title svg,
  .site-title svg,
  .home-title svg {
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(60px, 13.5vw, 78px) !important;
    overflow: visible !important;
  }

  .menu-title svg text,
  .menu-title text,
  .brand-title svg text,
  .hero-title svg text,
  .site-title svg text,
  .home-title svg text {
    font-size: clamp(66px, 14.6vw, 86px) !important;
    letter-spacing: clamp(0.08em, 1.9vw, 0.13em) !important;
  }
}
