body {
  background: var(--background-500);
}

section {
  padding: 15dvh var(--medium) var(--large) var(--medium);
  margin: 0 auto;
}
section:not(.hero) {
  max-width: 1200px;
}
@media (min-width: 1921px) {
  section:not(.hero) {
    max-width: 1600px;
  }
}
section:not(.hero) h2.title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 3.5dvh;
  margin: var(--small);
  width: 100%;
}
@media (max-width: 600px) {
  section:not(.hero) h2.title {
    font-size: 3.5dvh;
  }
}
section:not(.hero) p.subtitle {
  font-family: var(--font-body);
  text-align: center;
  font-size: 1.8dvh;
  color: var(--text-700);
}
@media (max-width: 600px) {
  section:not(.hero) p.subtitle {
    font-size: 4dvw;
  }
}
section:not(.hero) hr:first-of-type {
  margin-bottom: calc(var(--small) + 1rem);
}

nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  padding: var(--large) var(--medium) 15dvh var(--medium);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, var(--background-500), rgba(0, 0, 0, 0));
}
@media (prefers-reduced-motion: no-preference) {
  nav {
    opacity: 0;
    transition: all 0.4s ease;
  }
}
nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
nav .nav-container .logo a {
  font-family: var(--font-heading);
  color: var(--text-500);
  font-size: 2.5dvh;
  text-decoration: none;
}
nav .nav-container .logo a img {
  height: var(--xxlarge);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
nav .nav-container .nav-links {
  list-style: none;
  display: flex;
  gap: var(--large);
  display: flex;
  flex-direction: row;
}
nav .nav-container .nav-links li a {
  font-family: var(--font-body);
  color: var(--text-500);
  font-size: 1.8dvh;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav .nav-container .nav-links li a:hover {
  color: var(--accent-500);
}

.hero {
  height: 100dvh;
  padding: 0;
  margin: 0;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.hero .hero-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25dvh;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--background-500));
}
.hero .hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.25) grayscale(1);
}
.hero .hero-container {
  max-width: 1200px;
  display: grid;
  place-items: center;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .hero .hero-container {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
.hero .hero-container h1.title {
  margin: 0;
  -moz-text-align-last: center;
       text-align-last: center;
  font-size: 7dvh;
  font-family: var(--font-heading);
  margin-bottom: var(--medium);
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero .hero-container h1.title {
    font-size: 7dvw;
  }
}
.hero .hero-container h1.title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--text-500), transparent);
}
.hero .hero-container p.subtitle {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero .hero-container p.subtitle span {
  font-family: var(--font-body);
  font-size: 2dvh;
}

.about {
  max-width: 1200px;
}
.about h2.title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 4dvh;
  margin: var(--small);
  width: 100%;
}
@media (max-width: 600px) {
  .about h2.title {
    font-size: 3.5dvh;
  }
}
.about p.subtitle {
  font-family: var(--font-body);
  text-align: center;
  font-size: 1.8dvh;
  color: var(--text-700);
  margin-bottom: var(--medium);
}
@media (max-width: 600px) {
  .about p.subtitle {
    font-size: 4dvw;
  }
}
.about .cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--large);
}
@media (min-width: 1200px) {
  .about .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .cards .card {
  position: relative;
  border: 2px solid var(--accent-900);
  background: var(--background-500);
  background: linear-gradient(to bottom right, var(--accent-900) 0%, transparent);
  padding: var(--medium);
  transition: all 0.4s ease;
}
.about .cards .card h3.title {
  font-family: var(--font-heading);
  font-size: 2dvh;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: var(--medium);
  display: flex;
  flex-direction: row;
  gap: var(--medium);
}
@media (max-width: 600px) {
  .about .cards .card h3.title {
    font-size: 2dvh;
  }
}
.about .cards .card h3.title .icon {
  color: var(--text-500);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.about .cards .card h3.title .icon * {
  font-size: 3.5dvh;
}
.about .cards .card p.description {
  font-family: var(--font-body);
  font-size: 1.6dvh;
  color: var(--text-800);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .about .cards .card p.description {
    font-size: 4dvw;
  }
}

.portfolio .film-strip {
  --strip-color: var(--accent-500);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  background: var(--strip-color);
  padding: calc(var(--medium) * 2);
  height: calc(200px + var(--medium) * 4);
  margin-bottom: calc(var(--small) + 1rem);
  --edge-fade-width: var(--large);
}
.portfolio .film-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--edge-fade-width);
  background: linear-gradient(to right, var(--background-500), rgba(0, 0, 0, 0));
  z-index: 1;
}
.portfolio .film-strip::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--edge-fade-width);
  background: linear-gradient(to left, var(--background-500), rgba(0, 0, 0, 0));
  z-index: 1;
}
.portfolio .film-strip .film-strip-box {
  --box-width: 355.56px;
  --box-height: 200px;
  position: relative;
  min-width: var(--box-width);
  height: var(--box-height);
  flex-shrink: 0;
  cursor: pointer;
  background: var(--strip-color);
}
.portfolio .film-strip .film-strip-box::after {
  content: attr(data-mobile-text);
  position: absolute;
  bottom: -2.5dvh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 2dvh;
  color: var(--text-500);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 90%;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 600px) {
  .portfolio .film-strip .film-strip-box::after {
    display: none;
  }
}
.portfolio .film-strip .film-strip-box:hover .overlay {
  opacity: 1;
}
.portfolio .film-strip .film-strip-box::before, .portfolio .film-strip .film-strip-box:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--tiny);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  background: #000000;
  background: linear-gradient(to right, var(--strip-color) 0%, var(--strip-color) 5.25%, var(--background-500) 5.25%, var(--background-500) 17.75%, var(--strip-color) 17.75%, var(--strip-color) 30.25%, var(--background-500) 30.25%, var(--background-500) 42.75%, var(--strip-color) 42.75%, var(--strip-color) 55.25%, var(--background-500) 55.25%, var(--background-500) 67.75%, var(--strip-color) 67.75%, var(--strip-color) 80.25%, var(--background-500) 80.25%, var(--background-500) 92.75%, var(--strip-color) 92.75%, var(--strip-color) 100%);
}
.portfolio .film-strip .film-strip-box::before {
  top: calc(-1.25 * var(--medium));
}
.portfolio .film-strip .film-strip-box::after {
  bottom: calc(-1.25 * var(--medium));
}
.portfolio .film-strip .film-strip-box img {
  width: var(--box-width);
  height: var(--box-height);
  -o-object-fit: fill;
     object-fit: fill;
  transition: transform 0.4s ease;
}
.portfolio .film-strip .film-strip-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--box-width);
  height: var(--box-height);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--medium);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio .film-strip .film-strip-box .overlay .title {
  font-family: var(--font-heading);
  font-size: 2dvh;
  margin-bottom: var(--small);
}
.portfolio .film-strip .film-strip-box .overlay .description {
  font-family: var(--font-body);
  font-size: 1.6dvh;
  line-height: 1.4;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--medium);
  width: min(600px, 80%);
  margin: 0 auto;
}
form .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--small);
}
form label {
  font-family: var(--font-body);
  font-size: 1.6dvh;
}
form input,
form textarea {
  padding: var(--small);
  border: 1px solid var(--text-300);
  background: var(--background-500);
  font-family: var(--font-body);
  font-size: 1.6dvh;
  color: var(--text-900);
  resize: vertical;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 5px var(--accent-500);
}
form button {
  align-self: center;
  background: var(--accent-500);
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}
form button:hover {
  background: var(--accent-700);
}

footer {
  background: linear-gradient(to bottom, var(--background-500), black);
  padding: 15dvh var(--medium) var(--large) var(--medium);
  text-align: center;
  margin-top: var(--large);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}
footer .footer-container div.social-links {
  display: flex;
  justify-content: center;
  gap: var(--medium);
}
footer .footer-container div.social-links a {
  color: var(--text-500);
  font-size: 2.5dvh;
  transition: color 0.3s ease;
}
footer .footer-container div.social-links a:hover {
  color: var(--accent-500);
}
footer .footer-container div.social-links a i {
  font-size: 2.5dvh;
}
footer .footer-container p.copyright {
  font-family: var(--font-primary);
  font-size: 1.4dvh;
  color: var(--text-600);
}
@media (max-width: 600px) {
  footer .footer-container p.copyright {
    font-size: 3dvw;
  }
}
footer .footer-container p.powered-by {
  font-family: var(--font-primary);
  font-size: 1.4dvh;
  color: var(--text-600);
}
footer .footer-container p.powered-by a {
  font-weight: bold;
  color: var(--accent-500);
  text-decoration: none;
}
footer .footer-container p.powered-by a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  footer .footer-container p.powered-by {
    font-size: 3dvw;
  }
}/*# sourceMappingURL=index.css.map */