:root {
  --bg: #07141b;
  --bg-hero: #091219;
  --bg-panel: #102632;
  --bg-panel-deep: #0b1d28;
  --bg-soft: #0e171d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f6f7;
  --text-muted: rgba(245, 246, 247, 0.72);
  --text-soft: rgba(245, 246, 247, 0.54);
  --container: min(1240px, calc(100vw - 64px));
  --container-narrow: min(980px, calc(100vw - 64px));
  --header-height: 82px;
  --shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
video,
iframe,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 16, 22, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.9rem, 3vw, 3.75rem);
}

.brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2vw, 2.4rem);
  padding-inline: clamp(0.95rem, 1.8vw, 1.65rem);
}

.site-nav a,
.nav-dropdown__toggle {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown:focus-within .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown__caret {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 230px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  background: rgba(7, 20, 27, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-submenu a {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--text);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.cart-link,
.cart-link:link,
.cart-link:visited,
.cart-link:hover,
.cart-link:focus-visible,
.cart-link:active {
  width: 26px;
  color: #fff !important;
  text-decoration: none !important;
}

.cart-link svg {
  width: 100%;
  height: auto;
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link svg rect,
.cart-link svg circle,
.cart-link svg path {
  fill: none !important;
  stroke: #fff !important;
}

.menu-toggle {
  justify-self: start;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg-hero);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video--mobile {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 20, 27, 0.28) 0%, rgba(7, 20, 27, 0.38) 46%, rgba(7, 20, 27, 0.82) 100%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: min(840px, calc(100vw - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + 72px) 0 128px;
}

.hero h1,
.section-intro h2,
.about-copy h1,
.quote-copy h2,
.video-modal__caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 2.7rem);
  text-wrap: balance;
}

.hero-subtitle,
.hero-link,
.section-label,
.portfolio-card__caption,
.working-card__eyebrow,
.site-footer__meta,
.contact-links a,
.about-copy p,
.quote-copy p,
.section-intro p,
.working-card p,
.about-process__item p,
.quote-form__note,
.video-modal__caption p {
  letter-spacing: 0.12em;
}

.hero-subtitle,
.hero-link {
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0.65rem 0 1.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 2.2rem);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.82);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.hero-link--primary {
  min-height: 46px;
  padding: 0.78rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-link:hover,
.hero-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-link--primary:hover,
.hero-link--primary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 1;
  transform: translateX(-50%);
  width: 41px;
}

.logo-strip,
.portfolio-section {
  background: var(--bg-panel);
}

.logo-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.logo-strip__inner {
  --logo-height: 28px;
  --logo-ccn-width: 150px;
  --logo-sony-width: 96px;
  --logo-dji-width: 70px;
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  padding: 0.85rem 0;
}

.logo-strip__link {
  min-width: 0;
  min-height: var(--logo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}

.logo-strip__inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--logo-height);
  object-fit: contain;
}

.logo-strip__logo--ccn {
  max-width: var(--logo-ccn-width);
}

.logo-strip__logo--sony {
  max-width: var(--logo-sony-width);
}

.logo-strip__logo--dji {
  max-width: var(--logo-dji-width);
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.section-shell--narrow {
  width: var(--container-narrow);
}

.section-label {
  margin: 0;
  padding: 2.1rem 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.portfolio-card {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  display: grid;
}

.portfolio-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 27, 0.02) 0%, rgba(7, 20, 27, 0.12) 54%, rgba(7, 20, 27, 0.42) 100%);
  pointer-events: none;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:focus-visible .portfolio-card__media img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.portfolio-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 0.42rem 0.62rem;
  background: rgba(7, 20, 27, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-card__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  background: var(--bg-panel);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.71rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.featured-projects {
  padding: 5.5rem 0 6rem;
  background:
    linear-gradient(180deg, rgba(7, 20, 27, 0.96) 0%, rgba(9, 24, 32, 0.98) 100%);
}

.featured-projects .section-intro {
  margin-bottom: 3rem;
}

.featured-projects .section-intro p {
  max-width: 38rem;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.feature-card + .feature-card {
  margin-top: 5rem;
}

.feature-card--reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
}

.feature-media {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.feature-video,
.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.feature-media--poster {
  display: block;
}

.feature-media--poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 27, 0.1) 0%, rgba(7, 20, 27, 0.35) 100%);
}

.feature-play {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-kicker,
.feature-facts dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-facts div {
  display: grid;
  gap: 0.45rem;
}

.feature-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-copy__stack {
  display: grid;
  gap: 1rem;
}

.feature-copy__stack h4 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-copy__stack p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.feature-button:hover,
.feature-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-button--primary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.feature-button--primary:hover,
.feature-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.who-section {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(9, 24, 32, 0.98) 0%, rgba(7, 20, 27, 0.96) 100%);
}

.who-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.who-card {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 1.4rem 1.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section--home {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(7, 20, 27, 0.98) 0%, rgba(7, 20, 27, 0.92) 100%);
}

.about-section--home .about-copy h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-section--home .about-copy .section-label {
  padding: 0;
  margin-bottom: 0.95rem;
}

.about-section--home .about-copy p {
  margin: 0 0 1rem;
}

.process-section {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(8, 22, 30, 0.96) 0%, rgba(10, 25, 33, 0.98) 100%);
}

.process-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  min-height: 180px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card__number {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.working-section,
.about-section,
.contact-section,
.site-footer {
  background: var(--bg-soft);
}

.working-section {
  padding: 6rem 0 7rem;
}

.section-intro {
  text-align: center;
}

.section-intro h2,
.about-copy h1,
.quote-copy h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.section-intro p,
.about-copy p,
.working-card p,
.site-footer__meta,
.video-modal__caption p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.section-intro p {
  max-width: 42rem;
  margin: 0.85rem auto 0;
}

.working-grid {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.working-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.working-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.working-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.working-card:hover .working-card__media img,
.working-card:focus-within .working-card__media img {
  transform: scale(1.03);
}

.working-card__body {
  padding: 1.5rem 1.5rem 1.65rem;
}

.working-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.working-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.working-card p {
  margin: 0.85rem 0 1.1rem;
  letter-spacing: 0.02em;
}

.working-card__link,
.contact-links a {
  font-size: 0.73rem;
  font-weight: 500;
  text-transform: uppercase;
}

.working-card__link {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.24em;
}

.working-card__link:hover,
.working-card__link:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
  color: #fff;
}

.contact-cta-section {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(10, 25, 33, 0.98) 0%, rgba(7, 20, 27, 0.96) 100%);
}

.contact-cta {
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta .section-label {
  padding: 0;
  margin-bottom: 0.95rem;
}

.contact-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.06;
  text-transform: uppercase;
}

.contact-cta p {
  max-width: 34rem;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 1.7rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  width: var(--container);
  min-height: 120px;
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__meta {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.site-footer__links a {
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__links a:link,
.site-footer__links a:visited,
.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__links a:active {
  color: #fff !important;
  text-decoration: none !important;
}

.page-contact {
  background: var(--bg-soft);
}

.contact-main {
  padding-top: calc(var(--header-height) + 28px);
}

.about-section {
  padding: 3.2rem 0 4.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.about-copy {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-right: clamp(0.25rem, 0.9vw, 0.9rem);
}

.about-copy .section-label {
  padding: 0;
  margin-bottom: 1rem;
}

.about-copy h1 {
  margin-bottom: 1rem;
}

.about-copy p {
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.about-portrait {
  aspect-ratio: 490 / 673;
  min-width: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-process {
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process__label {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-process__list {
  display: grid;
  gap: 1rem;
}

.about-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-process__number {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-process__item h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-process__item p {
  margin: 0.45rem 0 0;
  letter-spacing: 0.02em;
}

.client-strip {
  background: var(--bg-panel-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.client-strip--contact {
  padding: 0.75rem 0;
}

.client-strip__inner {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
}

.client-strip__inner img {
  max-height: 27px;
  width: auto;
  opacity: 0.95;
}

.contact-section {
  padding: 4.75rem 0 6.5rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.quote-copy {
  padding-top: 0.35rem;
}

.quote-copy .section-label {
  padding: 0;
  margin-bottom: 0.95rem;
}

.quote-copy h2 {
  margin: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.quote-copy p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.quote-meta {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.quote-meta a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.quote-meta a:link,
.quote-meta a:visited,
.quote-meta a:hover,
.quote-meta a:focus-visible,
.quote-meta a:active {
  color: #fff !important;
  text-decoration: none !important;
}

.quote-meta a:hover,
.quote-meta a:focus-visible {
  color: #fff;
}

.quote-form {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: grid;
  gap: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.quote-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.quote-field {
  display: grid;
  gap: 0.6rem;
}

.quote-field span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.quote-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.9rem;
}

.quote-field select option {
  background: #0d1b24;
  color: #fff;
}

.quote-field textarea {
  min-height: 190px;
  resize: vertical;
}

.quote-field input:focus-visible,
.quote-field select:focus-visible,
.quote-field textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.quote-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.quote-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.quote-form__submit:hover,
.quote-form__submit:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.quote-form__note {
  margin: 0;
  max-width: 26rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.quote-form__note.is-success {
  color: #fff;
}

.quote-form__note.is-error {
  color: rgba(255, 206, 206, 0.92);
}

.contact-stack {
  text-align: center;
}

.contact-links {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-links a,
.contact-links a:link,
.contact-links a:visited,
.contact-links a:hover,
.contact-links a:focus-visible,
.contact-links a:active {
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: 0.22em;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  isolation: isolate;
  background: rgba(7, 20, 27, 0.66);
  backdrop-filter: blur(12px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.video-modal::-webkit-scrollbar {
  width: 8px;
}

.video-modal::-webkit-scrollbar-track {
  background: transparent;
}

.video-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.video-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: max(34px, 4vh) 110px max(40px, 5vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-padding-block: 24px;
}

.video-modal__frame-wrap {
  position: relative;
  width: min(100%, 1420px);
  margin: 0 auto;
}

.video-modal__frame {
  position: relative;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-modal__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: cover;
}

.video-modal__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.video-modal__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 18, 0.18) 0%, rgba(5, 13, 18, 0.62) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 42%);
}

.video-modal__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.video-modal__placeholder-copy {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 1;
  width: min(92%, 520px);
  transform: translateX(-50%);
  padding: 1rem 1.15rem 1.05rem;
  background: rgba(7, 20, 27, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  text-align: center;
}

.video-modal__placeholder-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.video-modal__placeholder-text {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.75;
}

.video-modal__tools {
  position: absolute;
  top: 18px;
  right: 14px;
  display: grid;
  gap: 10px;
}

.video-modal__tools button,
.video-modal__expand,
.video-modal__close,
.video-modal__edge {
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 20, 27, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.video-modal__tools button {
  width: 38px;
  height: 38px;
  padding: 0;
}

.video-modal__tools svg,
.video-modal__expand svg,
.video-modal__close svg,
.video-modal__edge svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-modal__tools button:hover,
.video-modal__tools button:focus-visible,
.video-modal__expand:hover,
.video-modal__expand:focus-visible,
.video-modal__close:hover,
.video-modal__close:focus-visible,
.video-modal__edge:hover,
.video-modal__edge:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.video-modal__tools button:disabled,
.video-modal__expand:disabled,
.video-modal__close:disabled,
.video-modal__edge:disabled,
.video-modal__gallery-arrow:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  transform: none;
}

.video-modal__caption {
  width: min(100%, 860px);
  margin: 1.9rem auto 0;
  text-align: center;
}

.video-modal__caption h3 {
  font-size: 1.3rem;
}

.video-modal__caption p {
  margin: 0.8rem 0 0;
  white-space: pre-line;
  text-transform: none;
  letter-spacing: 0.02em;
}

.video-modal__gallery {
  width: min(100%, 1120px);
  margin: 1.45rem auto 0;
}

.video-modal__gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.video-modal__gallery-label,
.video-modal__gallery-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.video-modal__gallery-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.video-modal__gallery-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 20, 27, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.video-modal__gallery-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-modal__gallery-arrow:hover,
.video-modal__gallery-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.video-modal__gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.video-modal__gallery-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-modal__gallery-viewport::-webkit-scrollbar {
  display: none;
}

.video-modal__gallery-track {
  --gallery-columns: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--gallery-columns) - 1) * 14px) / var(--gallery-columns));
  gap: 14px;
}

.video-modal__gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.video-modal__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(7, 20, 27, 0.96);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.video-modal__gallery-item:hover img,
.video-modal__gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.video-modal__gallery-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.45rem 0.55rem;
  background: rgba(7, 20, 27, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-modal__close,
.video-modal__expand {
  position: absolute;
  top: 20px;
  z-index: 5;
  width: 48px;
  height: 48px;
  padding: 0;
}

.video-modal__close {
  right: 20px;
}

.video-modal__expand {
  left: 20px;
}

.video-modal__edge {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  padding: 0;
  transform: translateY(-50%);
}

.video-modal__edge--left {
  left: 18px;
}

.video-modal__edge--right {
  right: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-cluster {
    gap: 1.9rem;
  }

  .site-nav {
    gap: 1.5rem;
    padding-inline: 1rem;
  }

  .site-nav a,
  .nav-dropdown__toggle {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .working-grid,
  .about-grid,
  .feature-card,
  .feature-card--reverse,
  .who-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-portrait,
  .about-process {
    max-width: 620px;
  }

  .feature-card--reverse .feature-copy {
    order: 2;
  }

  .feature-card--reverse .feature-media {
    order: 1;
  }

  .feature-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-modal__dialog {
    padding-left: 82px;
    padding-right: 82px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(1240px, calc(100vw - 32px));
    --container-narrow: min(980px, calc(100vw - 32px));
  }

  .header-inner {
    display: flex;
    gap: 14px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .header-cluster {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    z-index: 1;
  }

  .cart-link {
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    padding: 1.3rem 1.2rem 1.4rem;
    display: grid;
    gap: 1.1rem;
    margin: 0;
    padding-inline: 0;
    background: rgba(7, 20, 27, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a,
  .nav-dropdown__toggle {
    font-size: 0.8rem;
  }

  .nav-dropdown {
    display: grid;
    gap: 0.8rem;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 0.6rem;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .logo-strip__inner {
    --logo-height: 20px;
    --logo-ccn-width: 108px;
    --logo-sony-width: 66px;
    --logo-dji-width: 50px;
    min-height: 58px;
    gap: 0.7rem;
    padding: 0.75rem 0;
  }

  .hero-video--desktop {
    display: none;
  }

  .hero-video--mobile {
    display: block;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .working-grid {
    grid-template-columns: 1fr;
  }

  .featured-projects {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .who-section {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .about-section--home {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .process-section {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .contact-cta-section {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .video-modal__dialog {
    padding: 70px 44px 24px;
  }

  .video-modal__frame-wrap {
    width: 100%;
  }

  .video-modal__gallery-track {
    --gallery-columns: 2;
  }

  .video-modal__edge {
    width: 46px;
    height: 46px;
  }
}

@media (min-width: 1101px) {
  .about-portrait {
    aspect-ratio: auto;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .hero-video--mobile {
    object-position: center center;
  }

  .hero-content {
    width: min(760px, calc(100vw - 32px));
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 96px;
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    font-size: 1.62rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.6vw, 2.15rem);
    line-height: 0.94;
  }

  .hero h1 span {
    display: block;
  }

  .hero-actions {
    gap: 0.95rem;
  }

  .hero-link--primary {
    min-height: 44px;
    padding: 0.72rem 1.15rem;
  }

  .hero-subtitle,
  .hero-link,
  .section-label {
    font-size: 0.72rem;
  }

  .hero-subtitle {
    max-width: 15.5rem;
    margin: 0.7rem auto 1.25rem;
    line-height: 1.45;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card__badge {
    left: 10px;
    bottom: 10px;
    padding: 0.38rem 0.52rem;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  .feature-card + .feature-card {
    margin-top: 3.5rem;
  }

  .feature-facts {
    grid-template-columns: 1fr;
  }

  .feature-actions {
    flex-direction: column;
  }

  .feature-button,
  .feature-button--primary {
    width: 100%;
  }

  .who-grid {
    margin-top: 2.2rem;
  }

  .about-section--home .about-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.6rem);
  }

  .quote-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.6rem);
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .process-card {
    min-height: 0;
  }

  .contact-cta h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .portfolio-card__caption {
    min-height: 52px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-section {
    padding-bottom: 4.75rem;
  }

  .about-process {
    padding: 1.3rem;
  }

  .about-process__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quote-form {
    padding: 1.2rem;
  }

  .quote-form__footer {
    align-items: flex-start;
  }

  .quote-form__submit {
    width: 100%;
  }

  .site-footer__links {
    gap: 1rem;
  }

  .video-modal__dialog {
    padding: 72px 18px 20px;
  }

  .video-modal__close {
    top: 20px;
    right: 18px;
  }

  .video-modal__expand {
    top: 20px;
    left: 18px;
  }

  .video-modal__edge {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .video-modal__edge--left {
    left: 18px;
  }

  .video-modal__edge--right {
    right: 18px;
  }

  .video-modal__tools {
    top: 10px;
    right: 10px;
  }

  .video-modal__caption {
    margin-top: 1.2rem;
  }

  .video-modal__gallery {
    margin-top: 1.3rem;
  }

  .video-modal__gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-modal__gallery-track {
    --gallery-columns: 1;
  }
}

@media (max-width: 460px) {
  .header-inner {
    width: min(1240px, calc(100vw - 20px));
  }

  .brand {
    font-size: 1.56rem;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    padding: 1.1rem 1rem 1.2rem;
  }

  .hero-subtitle {
    max-width: 14rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .hero-link,
  .portfolio-card__caption,
  .working-card__link {
    letter-spacing: 0.16em;
  }
}
