/*
Theme Name:  Santosh Dawadi Portfolio
Theme URI:   https://santoshdawadi.com
Author:      Narayan Bajagain
Author URI:  https://bajagainnarayan.com.np
Description: Custom portfolio theme for video editor. Cinematic, editorial, light/dark modes.
Version:     3.3.8
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: santosh-dawaadi
Tags:         portfolio, custom-menu, featured-images, translation-ready
*/

/* Theme engineered by Narayan Bajagain - https://bajagainnarayan.com.np */

/* ─── Design Tokens ────────────────────────────────────────────────────── */
:root,
[data-theme="light"] {
  /* Light mode (default) - neutral palette */
  --clr-bg:         #FAFAF8;
  --clr-bg-soft:    #F3F2EF;
  --clr-bg-card:    #FFFFFF;
  --clr-border:     rgba(0,0,0,0.08);
  --clr-border-md:  rgba(0,0,0,0.14);

  --clr-text:       #1C1B18;
  --clr-text-muted: #6B6960;
  --clr-text-dim:   #A8A69E;

  --clr-accent:     #3D3B36;
  --clr-accent-hov: #2A2824;
  --clr-accent-glow:rgba(61,59,54,0.12);

  --clr-btn-primary: #E8E6E1;
  --clr-btn-primary-hov: #DEDCD6;
  --clr-btn-primary-text: var(--clr-text);
  --clr-btn-primary-border: var(--clr-border-md);
  --clr-btn-primary-glow: rgba(61, 59, 54, 0.1);

  --clr-gold:       #8A8578;
  --clr-header-bg:  rgba(250,250,248,0.88);
  --clr-success:    #2D6A4F;
  --clr-error:      #9B2C2C;

  --clr-nav-link:       #FFFFFF;
  --clr-nav-link-hover: rgba(255,255,255,0.8);
  --clr-nav-link-scrolled: var(--clr-text-muted);
  --clr-nav-link-scrolled-hover: var(--clr-text);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 12rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Animation */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast:  200ms;
  --dur-base:  400ms;
  --dur-slow:  700ms;

  --header-offset: 4.5rem;
}

[data-theme="dark"] {
  --clr-bg:         #0A0A0A;
  --clr-bg-soft:    #111111;
  --clr-bg-card:    #161616;
  --clr-border:     rgba(255,255,255,0.08);
  --clr-border-md:  rgba(255,255,255,0.14);

  --clr-text:       #F0EDE6;
  --clr-text-muted: #8A887F;
  --clr-text-dim:   #4A4845;

  --clr-accent:     #8FA4BE;
  --clr-accent-hov: #A8BBD4;
  --clr-accent-glow:rgba(143,164,190,0.18);

  --clr-btn-primary: #2A2824;
  --clr-btn-primary-hov: #3D3B36;
  --clr-btn-primary-text: #F0EDE6;
  --clr-btn-primary-border: transparent;
  --clr-btn-primary-glow: rgba(0, 0, 0, 0.35);

  --clr-gold:       #9AABB8;
  --clr-header-bg:  rgba(10,10,10,0.85);
  --clr-success:    #6ee7b7;
  --clr-error:      #fca5a5;

  --clr-nav-link:       #FFFFFF;
  --clr-nav-link-hover: rgba(255,255,255,0.75);
}

/* ─── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ─── Typography Scale ──────────────────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h1, .h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2, .h2 { font-size: clamp(2rem,   4vw, 3.5rem); }
h3, .h3 { font-size: clamp(1.25rem,2vw, 1.75rem); }
h4, .h4 { font-size: 1.125rem; }

.label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--clr-text-muted);
}
.label::before { display: none; }

/* ─── Layout Utilities ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

.section { padding-block: var(--space-xl); }
.section--alt { background: var(--clr-bg-soft); }

section[id],
.hero[id],
[id^="category-"] {
  scroll-margin-top: var(--header-offset);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast);
}

.btn--primary {
  background: var(--clr-btn-primary);
  color: var(--clr-btn-primary-text);
  border: 1px solid var(--clr-btn-primary-border, transparent);
  box-shadow: 0 0 0 0 var(--clr-btn-primary-glow);
}
.btn--primary:hover {
  background: var(--clr-btn-primary-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--clr-btn-primary-glow);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-md);
}
.btn--outline:hover {
  border-color: var(--clr-text);
  transform: translateY(-2px);
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--dur-base), backdrop-filter var(--dur-base);
}
#site-header.scrolled {
  background: var(--clr-header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}

/* Inner pages - no hero behind header; use readable nav from load */
[data-theme="light"] body:not(.home) #site-header {
  background: var(--clr-header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}
[data-theme="light"] body:not(.home) #site-header .nav-logo {
  color: var(--clr-text);
}
[data-theme="light"] body:not(.home) .nav-links a:not(.btn),
[data-theme="light"] body:not(.home) .nav-menu a {
  color: var(--clr-nav-link-scrolled);
}
[data-theme="light"] body:not(.home) .nav-links a:not(.btn):hover,
[data-theme="light"] body:not(.home) .nav-menu a:hover {
  color: var(--clr-nav-link-scrolled-hover);
}
[data-theme="light"] body:not(.home) #site-header .nav-toggle__bar {
  background: var(--clr-text);
}

[data-theme="dark"] body:not(.home) #site-header {
  background: var(--clr-header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--clr-nav-link);
  transition: color var(--dur-fast);
}
#site-header.scrolled .nav-logo {
  color: var(--clr-text);
}
.nav-logo span { color: var(--clr-accent); }

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-menu,
.nav-links .nav-menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin: 0;
}
.nav-links a:not(.btn),
.nav-menu a {
  font-size: 0.875rem;
  color: var(--clr-nav-link);
  transition: color var(--dur-fast);
}
.nav-links a:not(.btn):hover,
.nav-menu a:hover {
  color: var(--clr-nav-link-hover);
}
#site-header.scrolled ~ .nav-links a:not(.btn),
#site-header.scrolled ~ .nav-links .nav-menu a {
  color: var(--clr-nav-link-scrolled);
}
#site-header.scrolled ~ .nav-links a:not(.btn):hover,
#site-header.scrolled ~ .nav-links .nav-menu a:hover {
  color: var(--clr-nav-link-scrolled-hover);
}
[data-theme="dark"] #site-header.scrolled ~ .nav-links a:not(.btn),
[data-theme="dark"] #site-header.scrolled ~ .nav-links .nav-menu a {
  color: var(--clr-nav-link);
}
[data-theme="dark"] #site-header.scrolled ~ .nav-links a:not(.btn):hover,
[data-theme="dark"] #site-header.scrolled ~ .nav-links .nav-menu a:hover {
  color: var(--clr-nav-link-hover);
}
[data-theme="dark"] .nav-logo,
[data-theme="dark"] #site-header.scrolled .nav-logo {
  color: var(--clr-nav-link);
}
.nav-links .btn--primary { padding: 0.625rem 1.25rem; font-size: 0.8rem; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.theme-toggle:hover {
  color: var(--clr-text);
  border-color: var(--clr-border-md);
  transform: scale(1.05);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
#site-header.scrolled .nav-toggle:hover,
[data-theme="light"] body:not(.home) #site-header .nav-toggle:hover {
  background: var(--clr-bg-soft);
  border-color: var(--clr-border);
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--clr-nav-link);
  transition: transform var(--dur-fast), opacity var(--dur-fast), background var(--dur-fast);
}
#site-header.scrolled .nav-toggle__bar {
  background: var(--clr-text);
}
[data-theme="dark"] .nav-toggle__bar,
[data-theme="dark"] #site-header.scrolled .nav-toggle__bar {
  background: var(--clr-nav-link);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
[data-theme="light"] .nav-toggle.is-active .nav-toggle__bar {
  background: var(--clr-text);
}

.nav-overlay {
  display: none;
}

.nav-drawer__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 769px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1280px, 100%);
    max-width: 1280px;
    padding: 1.25rem clamp(1.25rem, 5vw, 4rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-md);
    background: transparent;
    border: 0;
    box-shadow: none;
    visibility: visible;
    overflow: visible;
    z-index: 101;
    pointer-events: auto;
  }

  .nav-drawer__menu {
    flex: 0 1 auto;
  }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--space-xl) + 80px) var(--space-xl);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 60%, var(--clr-bg) 100%);
  z-index: 1;
}
[data-theme="dark"] .hero__bg {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--clr-bg) 100%);
}
.hero__bg-media {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #2a2a2a 0%, var(--clr-bg) 100%);
}
[data-theme="light"] .hero__bg-fallback {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #e8e6e1 0%, var(--clr-bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero__eyebrow,
.hero__title,
.hero__subtitle {
  color: #FFFFFF;
  text-shadow: 0 1px 24px rgba(0,0,0,0.35);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero__title { margin-bottom: var(--space-sm); }
.hero__title em { font-style: normal; color: rgba(255,255,255,0.95); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--space-md);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn {
  background: #fff;
  color: #1C1B18;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}
.hero__cta .btn:hover {
  background: rgba(255, 255, 255, 0.94);
  color: #1C1B18;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.hero__clients {
  position: relative;
  z-index: 2;
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero__clients-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .hero {
    min-height: 90dvh;
    min-height: 90svh;
    padding-block: calc(var(--space-lg) + 72px) var(--space-lg);
  }

  .hero__content {
    max-width: 100%;
    padding-inline: 0.5rem;
  }

  .hero__title.h1,
  .hero__title.display {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .hero__subtitle {
    font-size: clamp(0.95rem, 3.6vw, 1.125rem);
    max-width: 100%;
    padding-inline: 0.25rem;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    gap: 0.35rem;
    margin-bottom: var(--space-sm);
  }

  .hero__eyebrow::before,
  .hero__eyebrow::after {
    width: 20px;
  }

  .hero__cta {
    gap: 0.75rem;
  }

  .hero__cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
  }

  .hero__clients {
    gap: var(--space-sm);
    font-size: 0.65rem;
    margin-top: var(--space-md);
    padding-inline: var(--space-sm);
  }

  .hero__clients-divider {
    height: 18px;
  }
}

/* ─── Custom Sections ────────────────────────────────────────────────────── */
.custom-section.section {
  padding-block: var(--space-lg);
}
.custom-section__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.custom-section__split--reverse {
  grid-template-columns: 1fr 1.4fr;
}
.custom-section__split .custom-section__media {
  order: 1;
}
.custom-section__split .custom-section__body {
  order: 2;
}
.custom-section__split--reverse .custom-section__body {
  order: 1;
}
.custom-section__split--reverse .custom-section__media {
  order: 2;
}
.custom-section__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.custom-section__stack--wide .custom-section__media--wide {
  margin-inline: calc(-1 * var(--space-md));
  max-width: none;
}
.custom-section__media {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  line-height: 0;
}
.custom-section__media--center { max-width: 100%; margin-inline: auto; }
.custom-section__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  vertical-align: top;
}
.custom-section__content { color: var(--clr-text-muted); }
.custom-section__content p + p { margin-top: 1rem; }
.custom-section__cta {
  text-align: center;
  padding: var(--space-md) 0;
}
.custom-section__quote {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}
.custom-section__quote-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.45;
  color: var(--clr-text);
}
.custom-section__quote-cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--clr-text-muted);
}
.custom-section__stats-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.custom-section__stats-grid li {
  background: var(--clr-bg-card);
  padding: 1.25rem 1rem;
  text-align: center;
}

/* Background image sections: full image in 16:9 frame (no crop) */
.custom-section--bg-image {
  position: relative;
  background-color: var(--clr-bg);
}
.custom-section__bg-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: transparent;
  line-height: 0;
}
.custom-section__bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.custom-section__bg-overlay {
  display: none;
}
.custom-section--bg-image .custom-section__inner {
  padding-bottom: var(--space-sm);
}
.custom-section--bg-image .custom-section__bg-media {
  margin-top: 0;
}
.custom-section--text-on-image .section-header,
.custom-section--text-on-image .section-header .label,
.custom-section--text-on-image .section-header .h2,
.custom-section--text-on-image .section-header h2,
.custom-section--text-on-image .section-header__sub,
.custom-section--text-on-image .custom-section__content,
.custom-section--text-on-image .custom-section__content a,
.custom-section--text-on-image .custom-section__quote-text {
  color: #f8fafc;
}
.custom-section--text-on-image .custom-section__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.custom-section--text-on-image .btn--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.custom-section--text-on-image .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.custom-section--text-on-image .custom-section__text-link {
  color: #e2e8f0;
}

/* Photo gallery */
.custom-section__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-md);
}
.custom-section__gallery--featured {
  margin-top: var(--space-lg);
}
.custom-section__gallery--masonry {
  display: block;
  columns: 3;
  column-gap: var(--space-3);
}
.custom-section__gallery--masonry .custom-section__gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
}
.custom-section__gallery--strip {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.custom-section__gallery--strip .custom-section__gallery-item {
  flex: 0 0 min(280px, 70vw);
  scroll-snap-align: start;
}
.custom-section__gallery--collage {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: var(--space-3);
}
.custom-section__gallery--collage .custom-section__gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.custom-section__gallery--collage .custom-section__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-section__gallery-item {
  display: block;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}
.custom-section__gallery-item:hover {
  border-color: var(--clr-accent);
}
.custom-section__gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  vertical-align: top;
}
.custom-section__gallery--collage .custom-section__gallery-item:not(:first-child) .custom-section__gallery-img {
  height: 100%;
  object-fit: cover;
}
.custom-section__gallery-caption {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.custom-section__gallery-focus .custom-section__content--intro {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  color: var(--clr-text-muted);
}
.custom-section--gallery .section-header {
  text-align: center;
}

/* Preset-specific spacing (split/stack + gallery below) */
.custom-section--preset-split-gallery-left .custom-section__gallery,
.custom-section--preset-split-gallery-right .custom-section__gallery,
.custom-section--preset-bts-gallery .custom-section__gallery,
.custom-section--preset-wide-gallery-strip .custom-section__gallery,
.custom-section--preset-centered-collage .custom-section__gallery,
.custom-section--preset-portfolio-cta .custom-section__gallery {
  margin-top: var(--space-lg);
}
.custom-section--preset-wide-gallery-strip .custom-section__stack--wide {
  margin-bottom: var(--space-sm);
}
.custom-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}
.custom-section__actions--center {
  justify-content: center;
}
.custom-section__text-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.custom-section__text-link:hover {
  color: var(--clr-text);
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about__intro {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.about__image-wrap {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}
.about__grid--image-right .about__intro {
  grid-column: 1;
}
.about__grid--image-right .about__image-wrap {
  grid-column: 2;
}
.about__grid:not(:has(.about__image-wrap)) .about__intro {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-inline: auto;
}
.about__stats {
  grid-column: 1 / -1;
}
.about__cta {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border-md);
  border-radius: inherit;
  pointer-events: none;
}
.about__image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0;
  width: 100%;
}
.about__stat {
  background: var(--clr-bg-card);
  padding: 1.5rem;
  text-align: center;
  min-width: 0;
}
.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  display: block;
}
.about__stat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}
.about__body { color: var(--clr-text-muted); }
.about__body p + p { margin-top: 1rem; }

/* ─── Project Production Details ─────────────────────────────────────────── */
.production-section {
  margin-top: var(--space-lg);
  padding: 2rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.production-section__title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: 1.5rem;
}
.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.production-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}
.production-item__value { font-weight: 600; font-size: 0.95rem; }
.production-block { margin-top: 1.25rem; }
.production-block__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}
.production-block__text {
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.production-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}
.production-tag {
  font-size: 0.75rem;
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ─── Project Video ──────────────────────────────────────────────────────── */
.project-video-wrap {
  margin-bottom: var(--space-md);
  max-width: 1080px;
}
.project-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--clr-border);
}
.project-video__embed,
.project-video__embed .wp-block-embed__wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.project-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.project-video__poster {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.project-video__poster img,
.project-video__thumb-only {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-video__playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast), background var(--dur-fast);
}
.project-video__poster:hover .project-video__playbtn {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0, 0, 0, 0.72);
}
.project-video__playbtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}
.project-video__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #2a2a2a, #111);
}
.project-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

/* ─── Works Grid ─────────────────────────────────────────────────────────── */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto var(--space-md);
  max-width: 960px;
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.work-filters__btn {
  flex: 1 1 auto;
  min-width: max-content;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-right: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.work-filters__btn:last-child { border-right: 0; }
.work-filters__btn:hover,
.work-filters__btn.is-active {
  background: var(--clr-bg-soft);
  color: var(--clr-text);
}
.work-filters__btn.is-active { font-weight: 600; }

#work .work-filters {
  background: transparent;
  border: 0;
  gap: 0.4rem;
  padding: 0;
}
#work .work-filters__btn {
  border: 0;
  border-right: 0;
  background: transparent;
  color: var(--clr-text-muted);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
}
#work .work-filters__btn:hover {
  color: var(--clr-text);
  background: transparent;
}
#work .work-filters__btn.is-active {
  background: var(--clr-bg-card);
  color: var(--clr-text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.projects-by-category {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.project-category-block.is-hidden { display: none; }
.project-category-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
}
.project-category-block__title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.project-category-block__link {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast);
}
.project-category-block__link:hover { color: var(--clr-text); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-sm);
}
.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--clr-bg-card);
}
.work-card.is-hidden { display: none; }
.work-card__link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-card__thumb--empty {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-card);
}
.work-card__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-card:hover .work-card__thumb { transform: scale(1.05); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
  opacity: 1;
  pointer-events: none;
}
.work-card:hover .work-card__overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}
.work-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 1;
  transform: translateY(0);
}
.work-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 0.25rem;
}
.work-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* ─── Services ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}
.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.service-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-glow);
  border: 1px solid var(--clr-border-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
  font-size: 1.25rem;
}
.service-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card__desc  { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ─── Process Steps ──────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--clr-bg-card);
  padding: 2.5rem 2rem;
  position: relative;
}
.process-step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-border-md);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  -webkit-text-stroke: 1px var(--clr-border-md);
}
.process-step__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-step__desc  { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.section--testimonials {
  background: var(--clr-bg-soft);
}
.section--testimonials .section-header {
  margin-bottom: 4rem;
}
.testimonial-carousel {
  width: 100%;
  box-sizing: border-box;
}
.testimonial-swiper-clip {
  overflow: hidden;
  padding: 1rem 0.5rem 1.5rem;
  margin-inline: -0.5rem;
}
.testimonial-swiper {
  width: 100%;
  overflow: visible;
}
.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
  box-sizing: border-box;
}
.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
  padding: 0.75rem 0.5rem;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  flex: 1 1 auto;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-md);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-sizing: border-box;
  transition:
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.swiper-slide-active .testimonial-card {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.swiper-slide-active .testimonial-quote {
  color: var(--clr-text);
}
.testimonial-card__body {
  flex: 1 1 auto;
  min-width: 0;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  color: #f59e0b;
}
.testimonial-rating__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.testimonial-rating__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-accent);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
  margin: 0 0 2rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  transition: color 0.5s var(--ease-out);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-soft);
  color: var(--clr-text-muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-meta {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--clr-text);
}
.testimonial-role {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--clr-text-muted);
}
.testimonial-empty {
  text-align: center;
  color: var(--clr-text-muted);
}
.testimonial-swiper__pagination {
  position: static !important;
  width: 100% !important;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: none !important;
}
.testimonial-swiper__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 5px;
  margin: 0 6px !important;
  background: var(--clr-border-md);
  opacity: 1;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.testimonial-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--clr-accent);
  transform: scaleX(1.05);
}
.section--testimonials .container {
  overflow: visible;
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-quote,
  .testimonial-swiper__pagination .swiper-pagination-bullet {
    transition: none;
  }
}

/* ─── Contact + CTA Split ─────────────────────────────────────────────────── */
.section-contact {
  border-top: 1px solid var(--clr-border);
}
.container--contact-split {
  max-width: 1280px;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
  }
}
.contact-split__cta {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  min-height: 100%;
}
.contact-cta-fill {
  flex: 1 1 auto;
  display: flex;
  min-height: clamp(8rem, 18vw, 14rem);
  color: var(--clr-text-muted);
}
.contact-cta-fill__stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vh, 1.75rem);
  width: 100%;
  opacity: 0.58;
}
.contact-cta-fill__stack svg {
  display: block;
  width: 100%;
  height: auto;
}
.contact-cta-fill__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: end;
  gap: 1rem;
}
.contact-cta-fill__clapper {
  width: 72px;
}
.contact-cta-fill__preview {
  max-width: 140px;
  justify-self: end;
  opacity: 0.85;
}
@media (max-width: 1023px) {
  .contact-cta-fill {
    min-height: auto;
  }
  .contact-cta-fill__stack {
    gap: 1.25rem;
  }
}
.section-cta__hero {
  text-align: left;
}
.section-cta__label {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
}
.section-cta__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 6.35vw, 6.75rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-border-md);
}
.section-cta__intro {
  margin: 0;
  max-width: 22rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text-muted);
}
.section-cta__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: auto;
}
.section-cta__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.section-cta__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--clr-text);
  border-radius: 999px;
  background: transparent;
  color: var(--clr-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    border-color var(--dur-fast);
}
.section-cta__pill:hover {
  background: var(--clr-text);
  color: var(--clr-bg);
}
.section-cta__credit {
  margin: 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--clr-text-muted);
}
.contact-split__form {
  width: 100%;
}
.contact-form__intro {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  word-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text);
}
.contact-form {
  width: 100%;
  max-width: 100%;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-form__field {
  margin-bottom: 1.25rem;
}
.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-md);
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.contact-form__input {
  height: 2.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
}
.contact-form__textarea {
  min-height: 9.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  resize: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--clr-text-dim);
  opacity: 1;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
@media (min-width: 1024px) {
  .contact-form__actions {
    justify-content: flex-start;
  }
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  height: 3rem;
  border: 1px solid var(--clr-btn-primary-border, transparent);
  border-radius: 999px;
  background: var(--clr-btn-primary);
  color: var(--clr-btn-primary-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.contact-form__submit:hover {
  background: var(--clr-btn-primary-hov);
  transform: translateY(-1px);
}
.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.cf-feedback {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  line-height: 1.5;
}
.cf-feedback--success {
  background: rgba(63, 122, 102, 0.1);
  border: 1px solid rgba(63, 122, 102, 0.22);
  color: var(--clr-success, #3f7a66);
}
.cf-feedback--error {
  background: rgba(155, 77, 77, 0.1);
  border: 1px solid rgba(155, 77, 77, 0.22);
  color: var(--clr-error, #9b4d4d);
}

/* ─── Showreels / Reels Modal ────────────────────────────────────────────── */
.reels-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reels-modal[hidden] { display: none; }
.reels-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.reels-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.reels-modal__sound {
  position: absolute;
  top: 1rem;
  right: 4.25rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.reels-modal__sound-off { display: none; }
.reels-modal__sound:not(.is-on) .reels-modal__sound-on { display: none; }
.reels-modal__sound:not(.is-on) .reels-modal__sound-off { display: block; }
.reels-modal__hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.reels-viewer {
  position: relative;
  z-index: 1;
  width: min(100vw, 430px);
  height: 100vh;
  height: 100dvh;
}
.reels-track {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.reels-track::-webkit-scrollbar { display: none; }
.reel-slide {
  min-height: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4.5rem 1rem 3.5rem;
  box-sizing: border-box;
}
.reel-slide__frame {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.reel-slide__iframe,
.reel-slide__poster,
.reel-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reel-slide__video {
  object-fit: cover;
  background: #000;
}
.reel-slide--native .reel-slide__frame {
  background: #000;
}
.reel-slide__iframe {
  top: 50%;
  left: 50%;
  width: 177.78%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.reel-slide--tiktok .reel-slide__iframe,
.reel-slide--vimeo .reel-slide__iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
.reel-slide__poster-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.reel-slide__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-slide__play svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}
.reel-slide__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.reel-slide__poster { object-fit: cover; }
.reel-slide__info {
  width: min(100%, 390px);
  text-align: left;
  color: #fff;
}
.reel-slide__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.reel-slide__caption {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}
body.reels-open {
  overflow: hidden;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--clr-border);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) var(--space-md);
  background: var(--clr-bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--clr-border);
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
  }
  .footer-nav {
    justify-self: center;
    align-self: center;
  }
  .footer-aside {
    justify-self: end;
  }
}
.footer-nav {
  width: 100%;
}
.footer-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.footer-nav__list li {
  flex: 0 0 auto;
}
@media (max-width: 899px) {
  .footer-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .footer-nav::-webkit-scrollbar {
    display: none;
  }
  .footer-nav__list {
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 22rem;
}
.footer-logo {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--clr-text);
  text-decoration: none;
}
.footer-logo span {
  color: var(--clr-accent);
}
.footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
}
.footer-nav__list a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-nav__list a:hover {
  color: var(--clr-text);
}
.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-socials__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--clr-text);
  border-radius: 999px;
  background: transparent;
  color: var(--clr-text);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    border-color var(--dur-fast);
}
.footer-socials__pill:hover {
  background: var(--clr-text);
  color: var(--clr-bg);
}
.footer-cta {
  min-height: 2.5rem;
  padding-inline: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--space-md);
}
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
}
.footer-author {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--clr-text-dim);
}
.footer-author a {
  color: var(--clr-text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-author a:hover {
  color: var(--clr-text);
}
@media (max-width: 899px) {
  .footer-aside {
    width: 100%;
  }
}

/* ─── Scroll Reveal & Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-loaded .hero__content > * {
  animation: heroEnter var(--dur-slow) var(--ease-out) both;
}
.page-loaded .hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.page-loaded .hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.page-loaded .hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.page-loaded .hero__content > *:nth-child(4) { animation-delay: 0.4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="scale"] {
  transform: scale(0.96);
}
[data-reveal="scale"].is-visible {
  transform: scale(1);
}
[data-reveal="fade"] {
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }

.about__stat-number[data-count] {
  transition: opacity var(--dur-base);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── Section Header Utility ─────────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-lg);
}
.section-header--center { text-align: center; }
.section-header__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-top: 1rem;
}
.section-header--center .section-header__sub { margin-inline: auto; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .work-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-filters::-webkit-scrollbar { display: none; }
  .work-filters__btn {
    flex: 0 0 auto;
  }
}

/* ─── Editor Artifacts (video-editor motifs) ─────────────────────────────── */
.hero,
.section:has(.editor-artifacts) {
  position: relative;
  overflow: hidden;
}

.section:has(.editor-artifacts) .container {
  position: relative;
  z-index: 1;
}

.editor-artifacts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  color: var(--clr-text-muted);
  opacity: 0.5;
}

.hero .editor-artifacts {
  z-index: 1;
  color: rgba(255, 255, 255, 0.38);
  opacity: 1;
}

[data-theme="dark"] .editor-artifacts {
  opacity: 0.42;
}

.editor-artifact {
  position: absolute;
}

.editor-artifact svg {
  display: block;
  width: 100%;
  height: auto;
}

.editor-artifact__timecode-label {
  display: inline-block;
  font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  text-transform: uppercase;
}

.editor-artifact--record {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.editor-artifact__record-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.45);
}

/* Hero */
.editor-artifacts--hero .editor-artifact--viewfinder {
  top: 14%;
  right: 5%;
  width: clamp(56px, 9vw, 110px);
}

.editor-artifacts--hero .editor-artifact--film-strip {
  top: 10%;
  left: -1%;
  width: clamp(160px, 26vw, 300px);
  transform: rotate(-6deg);
  opacity: 0.55;
}

.editor-artifacts--hero .editor-artifact--timecode {
  bottom: 20%;
  left: 3%;
}

.editor-artifacts--hero .editor-artifact--waveform {
  bottom: 24%;
  right: 4%;
  width: clamp(100px, 16vw, 180px);
}

/* Work */
.editor-artifacts--work .editor-artifact--timeline {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 440px);
  opacity: 0.55;
}

.editor-artifacts--work .editor-artifact--clapper {
  top: 8%;
  right: 3%;
  width: clamp(52px, 7vw, 84px);
}

.editor-artifacts--work .editor-artifact--playhead {
  top: 42%;
  left: 2%;
  width: 44px;
  opacity: 0.4;
}

/* Process */
.editor-artifacts--process .editor-artifact--perforations {
  top: 12%;
  left: 1%;
  width: 28px;
  height: 55%;
  opacity: 0.45;
}

.editor-artifacts--process .editor-artifact--perforations svg {
  height: 100%;
}

.editor-artifacts--process .editor-artifact--record {
  top: 10%;
  right: 6%;
}

.editor-artifacts--process .editor-artifact--scrubber {
  bottom: 12%;
  right: 5%;
  width: clamp(100px, 14vw, 160px);
}

/* Testimonials */
.editor-artifacts--testimonials .editor-artifact--play-circle {
  top: 14%;
  left: 4%;
  width: clamp(48px, 7vw, 72px);
  opacity: 0.45;
}

.editor-artifacts--testimonials .editor-artifact--timecode {
  bottom: 10%;
  right: 4%;
}

@media (prefers-reduced-motion: no-preference) {
  .editor-artifact__record-dot {
    animation: sd-rec-blink 1.5s ease-in-out infinite;
  }

  .editor-artifacts--hero .editor-artifact--waveform {
    animation: sd-artifact-float 10s ease-in-out infinite alternate;
  }
}

@keyframes sd-rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes sd-artifact-float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .editor-artifact__record-dot,
  .editor-artifacts--hero .editor-artifact--waveform {
    animation: none;
  }
}

@media (max-width: 768px) {
  .editor-artifacts--work .editor-artifact--timeline,
  .editor-artifacts--process .editor-artifact--perforations {
    display: none;
  }

  .editor-artifacts--hero .editor-artifact--viewfinder {
    width: 52px;
    opacity: 0.35;
  }
}

@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section {
    padding-block: 2.5rem;
  }

  .custom-section.section {
    padding-block: 1.75rem;
  }

  .section-header {
    margin-bottom: 1.25rem;
  }

  .section-header__sub {
    margin-top: 0.75rem;
  }

  .section--testimonials .section-header {
    margin-bottom: 1.5rem;
  }

  .about__grid {
    gap: 1.75rem;
  }

  .about__stats {
    margin-top: 1.25rem;
  }

  #about .about__cta {
    display: none;
  }

  .work-filters {
    margin-bottom: 1rem;
  }

  .projects-by-category {
    gap: 1.75rem;
  }

  .custom-section__split {
    gap: 1.75rem;
  }

  .custom-section__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-section__gallery--masonry {
    columns: 2;
  }
  .custom-section__gallery--collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  .custom-section__gallery--collage .custom-section__gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .process-step {
    padding: 1.75rem 1.25rem;
  }

  .process-step__number {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .section-contact {
    padding-block: 2.5rem;
  }

  .site-footer {
    padding-block: 2rem var(--space-md);
  }

  .about__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
    gap: var(--space-md);
  }
  .about__intro,
  .about__image-wrap,
  .about__stats,
  .about__cta,
  .about__grid--image-right .about__intro,
  .about__grid--image-right .about__image-wrap {
    grid-column: auto;
    grid-row: auto;
  }
  .about__grid:not(:has(.about__image-wrap)) .about__intro {
    max-width: none;
  }
  .about__image-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
  .grid-2, .grid-3  { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .works-grid       { grid-template-columns: 1fr; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-base), visibility var(--dur-base);
    z-index: 98;
  }
  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 101;
  }

  body.home #site-header:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }

  body.home #site-header.scrolled {
    background: var(--clr-header-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
  }

  [data-theme="light"] body.home #site-header:not(.scrolled) .nav-logo {
    color: var(--clr-nav-link);
  }

  [data-theme="light"] body.home #site-header:not(.scrolled) .nav-toggle__bar {
    background: var(--clr-nav-link);
  }

  [data-theme="light"] body.home #site-header:not(.scrolled) .nav-toggle.is-active .nav-toggle__bar,
  [data-theme="light"] body.nav-open #site-header .nav-toggle__bar {
    background: var(--clr-text);
  }

  [data-theme="light"] body.home #site-header:not(.scrolled) .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }

  [data-theme="light"] body.nav-open #site-header:not(.scrolled) .nav-toggle:hover,
  [data-theme="light"] body.home #site-header:not(.scrolled) .nav-toggle.is-active:hover {
    background: var(--clr-bg-soft);
    border-color: var(--clr-border);
  }

  [data-theme="light"] body.home #site-header.scrolled .nav-logo {
    color: var(--clr-text);
  }

  [data-theme="light"] body.home #site-header.scrolled .nav-toggle__bar {
    background: var(--clr-text);
  }

  [data-theme="light"] body.home #site-header.scrolled .nav-toggle:hover {
    background: var(--clr-bg-soft);
    border-color: var(--clr-border);
  }

  [data-theme="dark"] body.home #site-header:not(.scrolled) .nav-logo,
  [data-theme="dark"] body.home #site-header.scrolled .nav-logo {
    color: var(--clr-nav-link);
  }

  [data-theme="dark"] body.home #site-header:not(.scrolled) .nav-toggle__bar,
  [data-theme="dark"] body.home #site-header.scrolled .nav-toggle__bar {
    background: var(--clr-nav-link);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 1.5rem;
    background: var(--clr-bg);
    border-left: 1px solid var(--clr-border);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
    z-index: 99;
    overflow-y: auto;
    pointer-events: auto;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-drawer__menu {
    flex: 0 0 auto;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text) !important;
    border-bottom: 1px solid var(--clr-border);
  }
  .nav-menu a:hover {
    color: var(--clr-accent) !important;
  }

  .nav-drawer__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0;
    border-top: 0;
  }
  .nav-drawer__actions .theme-toggle {
    flex-shrink: 0;
  }
  .nav-drawer__cta {
    flex: 1;
    justify-content: center;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .about__stat {
    padding: 1rem 0.5rem;
  }
  .about__stat-number {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .about__stat-label {
    font-size: 0.65rem;
    line-height: 1.3;
  }
  .production-grid { grid-template-columns: 1fr; }
  .custom-section__split,
  .custom-section__split--reverse { grid-template-columns: 1fr; direction: ltr; }

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

/* ─── SEO & accessibility utilities ─────────────────────────────────────── */
.skip-link.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--clr-bg-card);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  text-decoration: none;
  font-weight: 600;
}
.skip-link.screen-reader-text:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.sd-breadcrumbs {
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.sd-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sd-breadcrumbs__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--clr-text-dim);
}
.sd-breadcrumbs a {
  color: var(--clr-accent);
  text-decoration: none;
}
.sd-breadcrumbs a:hover {
  text-decoration: underline;
}

.project-video__facade {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.project-video__facade .project-video__poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-video__poster-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.project-video__facade .project-video__playbtn {
  border: none;
  cursor: pointer;
  padding: 0;
}
.project-video__facade .project-video__playbtn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.project-video__embed--loaded iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 0;
  display: block;
}
