    :root {
      --heading-size: 4em;
      --heading-line-height: 0.9;

      --nav-red: #BF0615;
      --nav-orange: #F2B705;
      --nav-blue: #035AA6;
      --nav-dark: #010000;
      --nav-light: #f7f5f2;
      --nav-secondary: #f1eee9;

      scroll-behavior: smooth;
    }

    ::selection{
      background-color: var(--nav-red);
      color: var(--nav-light)
    }

    /* Fonts */
    @font-face {
      font-family: 'Captura Now Black';
      src: url('../fonts/CapturaNowCore-Black.woff2') format('woff2'),
           url('../fonts/CapturaNowCore-Black.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
    @font-face {
      font-family: 'Captura Now Regular';
      src: url('../fonts/CapturaNowCore-Regular.woff2') format('woff2'),
           url('../fonts/CapturaNowCore-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
    @font-face {
      font-family: 'Captura Now Thin';
      src: url('../fonts/CapturaNowCore-Thin.woff2') format('woff2'),
           url('../fonts/CapturaNowCore-Thin.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
    @font-face {
      font-family: 'Marina';
      src: url('../fonts/Marina-Script-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

    /* Reset & base */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: 'Captura Now Regular', sans-serif;
      background: #fff;
    }
    h1, h2, h3, h4, h5, h6, ul, li {
      margin: 0;
      padding: 0;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    p, li {
      margin: 8px 0;
      font-family: 'Captura Now Thin';
    }

    /* Typography & extras */
    h1 {
      font-size: var(--heading-size);
      line-height: var(--heading-line-height);
      font-family: 'Captura Now Black';
      color: var(--nav-light)
    }
    h2 {
      font-size: calc(var(--heading-size) / 1.61);
      line-height: var(--heading-line-height);
      font-family: 'Captura Now Black';
      margin-bottom: 20px;
    }
    h3 {
      font-size: calc(var(--heading-size) / 1.61 / 1.61);
      line-height: var(--heading-line-height);
      font-family: 'Captura Now Black';
    }
    .eyebrow {
      font-family: 'Marina';
      font-size: calc(var(--heading-size) / 1.61 / 1.61 * 1.5);
      display: inline-block;
      margin-bottom: 5px !important;
      color: inherit
    }

    /* Layout */
    .wrapper {
      width: 1400px;
      max-width: 100%;
      margin: 0 auto;
      padding: 0px 96px;
    }
    section, footer {
      padding: 100px 0;
    }
    section.about {
      overflow-x: hidden; 
      padding: 300px 0 150px 0;
      background-color: var(--nav-light);
    }

    u {
      text-decoration: none;
      background-image: url('../assets/underline.svg');
      background-repeat: no-repeat;
      background-position: left 100%;
      background-size: 100% 0.5em;
      padding: 0 0.1em;
    }

    /* Promo bar & navbar */
    .promo-bar {
      background: var(--nav-red);
      color: var(--nav-light);
      height: 70px;
      text-align: center;
      font-family: 'Marina';
      font-size: 1.5em;
      font-weight: bold;
      line-height: 70px;
    }

  nav{
      background: var(--nav-light);
      color: #000;
      height: 70px;
      max-width: 100%;
      margin: 0 auto;
      padding: 0px 96px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav a:hover{
      color: var(--nav-red);
    }

    nav a:active{
        opacity: 0.5;
    }

    .logo {
      height: 26px;
      display: block;
    }

    /* Header split */
    header {
        display: flex;
        width: 100vw;
        max-width: 100vw;
        height: 900px;
        overflow: hidden;
        flex-direction: row;
    }
    header p{
        margin-top: 15px;
        font-size: calc(var(--heading-size) / 1.61 / 1.61);
    } 

    header div:nth-child(1){
        width: 50%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: var(--nav-dark);
        color: var(--nav-light);
        flex-direction: column;
        padding: 48px 96px;
    }

    header div:nth-child(2) {
        width: 50%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: url('../assets/img/bg-navigator.jpg') center center/cover no-repeat;
        position: relative;
    }

    header .about-link {
        color: #000;
        background: var(--nav-light);
        box-shadow: 0 0 0 10px var(--nav-light);
        border: 1px dashed #000;
    }

    .custom-flex{
        display: flex; gap: 1em;
    }

    /* About images */
    .img-wrapper {
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 200px;
    }
    .custom-img {
      position: absolute;
      border: 7px solid #fff;
      background: var(--nav-light);
      aspect-ratio: 4 / 3;
      width: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
      box-shadow: rgba(0,0,0,0.15) 0px 1px 2px 0px;
      img{
       height: 100%;
      }
    }
    .custom-img-01 { transform: rotate(22deg); z-index: 3; }
    .custom-img-02 { transform: rotate(10deg); z-index: 2; }
    .custom-img-03 { transform: rotate(-2deg); z-index: 1; }

    /* About link */
    .about-link {
      margin-top: 50px;
      display: inline-block;
      border: 1px dashed var(--nav-light);
      padding: 15px 20px;
      color: var(--nav-light);
      background: #000;
      box-shadow: 0 0 0 10px #000;
      border-radius: 50px;
      transition: transform 0.2s ease;
      transform: rotate(-2deg);
    }
    .about-link i { margin-left: 10px; }

    .about-link:hover {
      transform: scale(1.08) rotate(5deg);
      transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .about-link:hover > i {
      transform: rotate(360deg);
      transition: transform 1s ease;
    }

    /* Product cards */
    .products {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      width: 100%;
    }

    .products img {
      display: block;
      margin: 0 auto;
      height: 70%;
      max-width: 100%;
      object-fit: cover;
      box-shadow: rgba(0,0,0,0.05) 0px 1px 2px 0px;
      border-radius: 1px;
      transition: transform 0.3s ease;
    }
    .product-card {
      position: relative;
      overflow: hidden;
      background: var(--nav-light);
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
      margin-bottom: 1em;
    }
    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(191, 6, 21, 0.9);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-size: 1.5em;
      z-index: 2;
      pointer-events: none;
    }
    .product-hover-group {
      flex: 1;
      display: block;
      color: inherit;
    }
    a.product-hover-group:hover h3 {
      display: inline-block;
      text-decoration: none;
      background-image: url('../assets/underline.svg');
      background-repeat: no-repeat;
      background-position: left 110%;
      background-size: 100% 0.5em;
      padding-bottom: 0.35em;
    }
    a.product-hover-group:hover p {
    margin-top: -0.03em;
    }

    .product-hover-group:hover .product-overlay {
      opacity: 1;
      pointer-events: auto;
    }
    .product-hover-group:hover .product-card img {
      transform: scale(0.95);
    }


     /* Socials x Stay In The Loop */
    .socials {
        padding: 0px!important;
        display: flex;
        width: 100vw;
        max-width: 100vw;
        height: 600px;
        flex-direction: row;
    }

    .socials div:nth-child(1){
        position: relative;
        width: 50%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: var(--nav-secondary);
        color: var(--nav-dark);
        flex-direction: column;
        padding: 48px 96px;
    }

    .socials div:nth-child(2) {
        width: 50%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: url('../assets/img/nav-camera.jpg') center center/cover no-repeat;
        position: relative;
    }

    .socials img {
      width: 125px;
      position: absolute;
      top: 50px;
      right: -25px;
      z-index: 999;
    }

    /* Footer */
    footer {
      position: relative;
      background: #000;
      color: #fff;
    }


footer .wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a:hover {
  text-decoration: underline!important;
}
footer .wrapper > div:nth-child(1) {
      flex: 2;
}
      
footer .wrapper > div:nth-child(2), footer .wrapper > div:nth-child(3) {
      flex: 1;
}

footer .wrapper > div:nth-child(4) {
  margin-top: 50px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  font-size: 0.8em;
}

footer h4 {
  margin-bottom: 10px;
  font-family: 'Marina';
  font-size: 1.8em;
}

footer p, footer li {
font-size: 0.9em;
}

footer li {
  list-style: none;
}
  
/* Media queries */
@media (max-width: 1200px) {
  .custom-flex {
    flex-direction: column;
  }
  .custom-flex > div {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 992px) {
  header, .socials {
    flex-direction: column;
    height: auto;
  }

  header div:nth-child(1), .socials div:nth-child(1) {
    width: 100%;
    min-height: 500px;
    order: 2;
  }

  header div:nth-child(2), .socials div:nth-child(2) {
    width: 100%;
    min-height: 500px;
    order: 1;
  }

    .socials img {
    width: 110px;
    top: -25px;
    right: 50px;
  }

}

@media (max-width: 768px) {
  nav,
  header div:nth-child(1), .socials div:nth-child(1),
  .wrapper {
    padding: 48px 32px;
  }

  h1 {
    font-size: calc(var(--heading-size) / 1.3);
  }
  h2 {
    font-size: calc(var(--heading-size) / 1.61 / 1.3);
  }
  h3 {
    font-size: calc(var(--heading-size) / 1.61 / 1.61 / 1.31);
  }
  .eyebrow {
    font-size: calc(var(--heading-size) / 1.61 / 1.61 * 1.5 / 1.31);
  }
  header p {
    font-size: calc(var(--heading-size) / 1.61 / 1.61 / 1.31);
  }

  .promo-bar,
  .promo-text {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .logo {
    height: 22px;
  }
  .custom-img {
    width: 275px !important;
  }

  footer .wrapper {
    flex-direction: column;
  }

  section{
    padding: 25px 0px;
  }

  section.about{
    padding: 150px 0px 75px 0px;
  }
}