@font-face {
  font-family: Barlow;
  src: url("barlow-condensed-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("barlow-condensed-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --ink: #101110;
  --paper: #f3f3ef;
  --white: #fff;
  --muted: #9b9c98;
  --line: #ffffff29;
  font-family: Manrope, Arial, sans-serif;
  color: var(--paper);
  background: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #ebad75;
  outline-offset: 6px;
}
::selection {
  background: #d7c8b6;
  color: #101110;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: Barlow, "Arial Narrow", Impact, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 0.96;
}
em {
  font-style: normal;
}
h2 {
  font-size: clamp(3.2rem, 5.9vw, 6rem);
}
p {
  line-height: 1.8;
}
svg {
  display: block;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1440px;
  margin-inline: auto;
}
.section-pad {
  padding-block: 118px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.light-section {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}
.muted-heading {
  color: #8b8d86;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  padding: 15px 24px;
  background: white;
  color: black;
}
.skip-link:focus {
  top: 14px;
}
.site-header {
  height: 108px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 36px;
  padding-inline: 56px;
  border-bottom: 1px solid #ffffff30;
}
.brand {
  width: 232px;
  flex-shrink: 0;
  display: block;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 0.875rem;
}
.desktop-nav a {
  position: relative;
  padding-block: 14px;
}
.desktop-nav a:after {
  content: "";
  height: 1px;
  background: white;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 100%;
  transition: right 0.2s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid #ffffff70;
  border-radius: 50px;
  font-size: 0.875rem;
  padding: 13px 22px;
}
.header-contact:hover {
  background: #fff;
  color: #101110;
}
.header-contact span {
  font-size: 1.25rem;
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  height: 100svh;
  min-height: 740px;
  max-height: 1120px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #262b2c;
}
.hero-media,
.hero-media > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media {
  z-index: -3;
  overflow: hidden;
}
.hero-media video {
  opacity: 0;
  transition: opacity 0.8s;
}
.hero-media video.is-playing {
  opacity: 1;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.06) 85%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6),
      transparent 32%,
      rgba(0, 0, 0, 0.2) 75%,
      rgba(0, 0, 0, 0.4)
    );
}
.hero-content {
  padding-top: 115px;
  padding-bottom: 85px;
}
.hero-content > .eyebrow {
  margin-bottom: 24px;
}
.tiny-cross {
  font-size: 1.25rem;
  line-height: 0;
  margin-right: 9px;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(6rem, 10.8vw, 11.5rem);
  line-height: 0.91;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px #00000012;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
}
.hero-details {
  display: flex;
  align-items: center;
  gap: 74px;
  margin-top: 38px;
}
.hero-details p {
  font-size: 1rem;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 19px 25px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  min-height: 58px;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  background: #e1e1da;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.play-small {
  font-size: 0.68rem;
}
.duration {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a5c55;
  margin-left: 14px;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff45;
  padding-top: 21px;
}
.explore {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 22px;
}
.explore span {
  font-size: 1.2rem;
}
.video-toggle {
  border: 0;
  background: transparent;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0 10px 12px;
  font-size: 0.75rem;
}
.video-toggle[hidden] {
  display: none;
}
.video-symbol {
  font-size: 0.75rem;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}
.section-index {
  padding-top: 9px;
}
.section-intro {
  font-size: 1rem;
  max-width: 330px;
  padding-top: 8px;
  color: #565950;
}
.reel-cover {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: #101110;
  border: 0;
  overflow: hidden;
  aspect-ratio: 2.14;
  color: white;
  text-align: left;
}
.reel-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0009, transparent 60%, #0005);
}
.reel-cover > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.reel-cover:hover > img {
  transform: scale(1.025);
}
.reel-topline,
.reel-bottomline {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reel-topline {
  top: 26px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.reel-bottomline {
  bottom: 30px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.reel-bottomline strong {
  font-weight: 600;
}
.play-circle {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 1px solid #fff9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 4px;
  font-size: 1rem;
  background: #ffffff15;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    scale 0.25s;
}
.reel-cover:hover .play-circle {
  background: #ffffff35;
  scale: 1.06;
}
.circle-arrow {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  font-size: 1.4rem;
}
.film-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 27px;
}
.film-strip > button {
  display: block;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  text-align: left;
}
.film-image {
  display: block;
  aspect-ratio: 1.88;
  overflow: hidden;
  background: #353835;
}
.film-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.film-strip button:hover img {
  transform: scale(1.05);
}
.film-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 15px;
}
.film-caption > span:last-child {
  font-size: 1.2rem;
}
.services .section-intro {
  color: #acaea7;
}
.services .muted-heading {
  color: #82877d;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-image {
  position: relative;
  aspect-ratio: 1.25;
  width: 100%;
  overflow: hidden;
  background: #20231d;
}
.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service:hover .service-image img {
  transform: scale(1.04);
}
.service-image > span {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 0.8125rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ffffff90;
  border-radius: 50%;
  background: #0003;
}
.service-tag {
  color: #a8aca3;
  margin-top: 26px;
  font-size: 0.75rem;
}
.service h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-top: 10px;
}
.service > p:not(.eyebrow) {
  font-size: 1rem;
  color: #b9bdb2;
  margin-top: 17px;
  line-height: 1.85;
  margin-bottom: 27px;
}
.text-link {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  padding: 10px 0 13px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 38px;
}
.text-link > span {
  font-size: 1.25rem;
}
.service .text-link {
  margin-top: auto;
  width: 100%;
}
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 135px);
  align-items: center;
}
.pilot-visual {
  position: relative;
}
.pilot-photo {
  aspect-ratio: 694/770;
  position: relative;
  overflow: hidden;
  background: #8d8b80;
}
.pilot-photo img {
  position: absolute;
  width: 233.718%;
  max-width: none;
  left: -16.282%;
  top: -2.857%;
}
.photo-note {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 18px;
}
.pilot-copy > .eyebrow {
  margin-bottom: 30px;
}
.pilot-copy h2 {
  font-size: clamp(3rem, 4.4vw, 5rem);
  margin-bottom: 30px;
}
.pilot-lead {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 20px;
}
.pilot-copy > p:not(.eyebrow):not(.pilot-lead) {
  font-size: 1rem;
  color: #565950;
  margin-top: 16px;
  line-height: 1.85;
}
.pilot-facts {
  display: flex;
  gap: 40px;
  padding-block: 24px;
  margin-top: 20px;
  border-top: 1px solid #10111030;
}
.pilot-facts > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pilot-facts strong {
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.pilot-facts span {
  font-size: 0.875rem;
  color: #666a60;
}
.pilot-copy .text-link {
  display: inline-flex;
  margin-top: 10px;
}
.contact {
  position: relative;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  place-items: center;
}
.contact:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #050705d6;
  z-index: -1;
}
.contact-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.contact .eyebrow {
  margin-bottom: 30px;
}
.contact h2 {
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.97;
}
.contact h2 em {
  font-style: italic;
}
.contact-content > p:not(.eyebrow) {
  color: #c3c7bc;
  font-size: 1rem;
  line-height: 1.7;
  margin: 26px 0 30px;
}
.contact-email {
  display: block;
  font-size: 0.875rem;
  margin: 26px auto 0;
  width: fit-content;
  border-bottom: 1px solid #ffffff50;
  padding-bottom: 3px;
}
.contact-email:hover {
  border-color: white;
}
.footer {
  padding-top: 55px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 50px;
}
.footer .brand {
  width: 225px;
}
.footer-main > p {
  font-size: 0.875rem;
  color: #acb0a5;
  justify-self: center;
  line-height: 1.75;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-size: 0.875rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links a:first-child {
  display: flex;
  gap: 15px;
}
.footer-bottom {
  padding-block: 23px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #a8aca2;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.footer-bottom > a {
  padding-left: 15px;
}
.mobile-cta {
  display: none;
}
dialog {
  color: var(--paper);
  background: #101110;
  border: 1px solid #ffffff30;
  padding: 20px;
  width: min(1100px, 94vw);
  max-height: 94svh;
  overflow: auto;
}
dialog::backdrop {
  background: #000e;
  backdrop-filter: blur(8px);
}
.film-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.film-dialog-head h2 {
  font-family: Manrope, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
.close-film {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 0;
  background: transparent;
  padding: 7px;
  font-size: 0.875rem;
}
.close-film span {
  font-size: 1.8rem;
  line-height: 1;
}
dialog video {
  display: block;
  width: 100%;
  max-height: 74svh;
  aspect-ratio: 16/9;
  background: #000;
}
.film-description {
  font-size: 0.8125rem;
  color: #b9bdb2;
  margin-top: 14px;
}
.dialog-open {
  overflow: hidden;
}
@media (min-width: 1700px) {
  .site-header {
    padding-inline: max(56px, calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
    gap: 25px;
  }
  .brand {
    width: 205px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .section-heading {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .section-index {
    grid-column: 1/-1;
    margin-bottom: 5px;
  }
  .section-intro {
    justify-self: end;
  }
  .section-pad {
    padding-block: 90px;
  }
  .hero-details {
    gap: 45px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .service h3 {
    font-size: 1.3rem;
  }
  .pilot-grid {
    gap: 50px;
  }
  .pilot-facts {
    gap: 25px;
    flex-wrap: wrap;
  }
  .pilot-copy h2 {
    font-size: 4.4vw;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 72px;
  }
  .site-header {
    height: 88px;
    padding-inline: 20px;
    gap: 18px;
  }
  .brand {
    width: 177px;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-left: auto;
    padding: 10px 15px;
    gap: 15px;
    font-size: 0.8125rem;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 0;
    width: 38px;
    height: 44px;
    padding: 8px;
    margin-right: -8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: white;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 87px;
    left: 0;
    right: 0;
    padding: 24px;
    background: #101110f7;
    border-bottom: 1px solid #ffffff30;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(15px);
  }
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 12px;
  }
  .hero {
    height: 100svh;
    min-height: 690px;
    max-height: 1000px;
    align-items: center;
  }
  .hero-content {
    padding-top: 108px;
    padding-bottom: 112px;
  }
  .hero-content > .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14.3vw, 7rem);
    line-height: 0.95;
  }
  .hero-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 26px;
  }
  .hero-details p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .button {
    padding: 17px 23px;
    min-height: 55px;
  }
  .hero-bottom {
    bottom: 23px;
    padding-top: 14px;
  }
  .explore {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    gap: 12px;
  }
  .video-state {
    display: none;
  }
  .video-toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }
  .video-symbol {
    font-size: 0.8125rem;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0006, #0001),
      linear-gradient(0deg, #0009, transparent 65%, #0006);
  }
  .hero-media > * {
    object-position: 54% center;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }
  .section-index {
    grid-column: auto;
    margin: 0;
    padding: 0;
  }
  .eyebrow {
    font-size: 0.75rem;
  }
  h2 {
    font-size: clamp(3.7rem, 11.5vw, 5rem);
  }
  .section-intro {
    font-size: 1rem;
    max-width: 460px;
    justify-self: start;
    padding: 0;
  }
  .reel-cover {
    aspect-ratio: 1.35;
  }
  .reel-topline,
  .reel-bottomline {
    left: 20px;
    right: 20px;
  }
  .reel-topline {
    top: 19px;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
  .reel-bottomline {
    bottom: 18px;
    font-size: 0.75rem;
  }
  .play-circle {
    width: 68px;
    height: 68px;
    font-size: 0.8125rem;
  }
  .circle-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .film-strip {
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .film-strip > button {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #10111025;
  }
  .film-image {
    aspect-ratio: 1.55;
  }
  .film-caption {
    font-size: 0.875rem;
    padding: 0;
    gap: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .service-image {
    aspect-ratio: 1.4;
  }
  .service-tag {
    margin-top: 23px;
  }
  .service h3 {
    font-size: 1.6rem;
  }
  .service > p:not(.eyebrow) {
    font-size: 1rem;
    margin-top: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .service .text-link {
    font-size: 0.875rem;
  }
  .pilot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pilot-visual {
    max-width: 560px;
  }
  .pilot-photo {
    aspect-ratio: 694/770;
  }
  .pilot-copy h2 {
    font-size: clamp(3.1rem, 10.3vw, 5rem);
    margin-bottom: 25px;
  }
  .pilot-copy > .eyebrow {
    margin-bottom: 24px;
  }
  .pilot-copy > p:not(.eyebrow):not(.pilot-lead) {
    font-size: 1rem;
  }
  .pilot-lead {
    font-size: 1.1rem;
  }
  .pilot-facts {
    gap: 26px;
    justify-content: space-between;
  }
  .pilot-facts strong {
    font-size: 0.75rem;
  }
  .contact {
    min-height: 650px;
  }
  .contact .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .contact h2 {
    font-size: clamp(4.1rem, 13vw, 6rem);
  }
  .contact-content > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 35px;
  }
  .footer .brand {
    width: 195px;
  }
  .footer-main > p {
    justify-self: start;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-bottom {
    font-size: 0.75rem;
    gap: 16px;
  }
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: var(--paper);
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #10111030;
    padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
    font-size: 0.875rem;
    font-weight: 700;
    transform: translateY(110%);
    transition: transform 0.25s;
  }
  .mobile-cta.is-visible {
    transform: translateY(0);
  }
  .mobile-cta > span {
    font-size: 1.3rem;
  }
  .dialog-open .mobile-cta {
    display: none;
  }
  dialog {
    padding: 14px;
    max-height: 92svh;
    width: 96vw;
  }
  .film-dialog-head h2 {
    font-size: 0.75rem;
  }
  .close-film {
    font-size: 0.875rem;
    gap: 8px;
  }
  .film-description {
    font-size: 0.75rem;
  }
}
@media (max-width: 380px) {
  .header-contact {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero {
    min-height: 680px;
  }
  .hero h1 {
    font-size: 14.8vw;
  }
  .button {
    font-size: 0.875rem;
    padding-inline: 20px;
  }
  .duration {
    margin-left: 6px;
  }
  .film-strip > button {
    grid-template-columns: 100px 1fr;
    gap: 14px;
  }
  .film-caption {
    font-size: 0.875rem;
  }
  .pilot-facts {
    flex-direction: column;
  }
  .reel-topline {
    font-size: 0.75rem;
  }
  .reel-topline > span:last-child {
    display: none;
  }
  .footer-bottom {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .explore {
    font-size: 0.75rem;
    max-width: 220px;
  }
  .film-dialog-head {
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media video {
    transition: none;
  }
}
@media (max-width: 480px) {
  .header-contact {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
}
