@media screen and (min-width: 1400px) {
  .container {
    max-width: 1180px; } }
html:has(#ns-loader:not(.is-out)) {
  overflow: hidden; }

#ns-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.6s ease; }
  #ns-loader.is-out {
    opacity: 0;
    pointer-events: none; }
  #ns-loader img {
    max-width: 160px;
    width: auto;
    opacity: 0.9; }

@media (min-width: 1600px) {
  .container {
    max-width: 1440px; } }
.ns-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease, box-shadow 0.5s ease; }
  .ns-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    transition: padding 0.5s ease; }
    @media (min-width: 992px) {
      .ns-header__inner {
        padding: 1.75rem 2rem; } }
  .ns-header__logo {
    position: relative;
    z-index: 2; }
  .ns-header__logo-link {
    text-decoration: none;
    display: block;
    line-height: 1.1; }
  .ns-header__logo-img {
    display: block;
    max-height: 36px;
    width: auto;
    transition: opacity 0.4s ease; }
    @media (min-width: 992px) {
      .ns-header__logo-img {
        max-height: 48px; } }
  .ns-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 6rem 0 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex !important;
    z-index: 1; }
    .ns-header__nav.is-open {
      opacity: 1;
      pointer-events: auto; }
    @media (min-width: 992px) {
      .ns-header__nav {
        position: static;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        flex: 1;
        justify-content: flex-end;
        z-index: auto; } }
  .ns-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex; }
    .ns-header__nav-list li a {
      display: inline-block;
      font-family: "Optima", sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      text-decoration: none;
      padding: 0.75rem 2rem;
      font-size: 0.9rem;
      color: #0A0B0B;
      opacity: 0.75;
      transition: color 0.5s ease, opacity 0.3s ease; }
      .ns-header__nav-list li a:hover, .ns-header__nav-list li a.active {
        opacity: 1; }
      @media (min-width: 992px) {
        .ns-header__nav-list li a {
          padding: 0.4rem 1.05rem;
          font-size: 0.825rem;
          color: #ffffff;
          opacity: 0.85; } }
    .ns-header__nav-list li.dropdown .dropdown-menu {
      position: static;
      display: block;
      background: transparent;
      padding: 0;
      list-style: none;
      margin: 0; }
      .ns-header__nav-list li.dropdown .dropdown-menu li a {
        padding-left: 3rem; }
      @media (min-width: 992px) {
        .ns-header__nav-list li.dropdown .dropdown-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          min-width: 180px;
          background: rgba(10, 11, 11, 0.92);
          padding: 0.5rem 0; }
          .ns-header__nav-list li.dropdown .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            opacity: 0.8;
            color: #ffffff;
            padding-left: 1.25rem; }
            .ns-header__nav-list li.dropdown .dropdown-menu li a:hover {
              opacity: 1; } }
    .ns-header__nav-list li.dropdown {
      position: relative; }
      @media (min-width: 992px) {
        .ns-header__nav-list li.dropdown:hover .dropdown-menu {
          display: block; } }
    @media (min-width: 992px) {
      .ns-header__nav-list {
        flex-direction: row;
        align-items: center;
        width: auto; } }
  .ns-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 0.25rem;
    gap: 5px;
    position: relative;
    z-index: 2; }
    .ns-header__toggle span {
      display: block;
      width: 22px;
      height: 1px;
      background: #ffffff;
      transition: background-color 0.5s ease, transform 0.35s ease, opacity 0.35s ease; }
    .ns-header__toggle[aria-expanded="true"] span {
      background: #0A0B0B; }
    .ns-header__toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg); }
    .ns-header__toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0; }
    .ns-header__toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg); }
    @media (min-width: 992px) {
      .ns-header__toggle {
        display: none; } }
  .ns-header.is-scrolled {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08); }
    .ns-header.is-scrolled .ns-header__inner {
      padding-top: 1.1rem;
      padding-bottom: 1.1rem; }
    .ns-header.is-scrolled .ns-header__nav-list li a {
      color: #0A0B0B; }
    .ns-header.is-scrolled .ns-header__toggle span {
      background: #0A0B0B; }

.ns-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  overflow: hidden; }
  .ns-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    height: 130%;
    top: -15%; }
  .ns-hero__scroll {
    position: absolute;
    bottom: 7.5%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0.65;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block; }
    .ns-hero__scroll:hover {
      opacity: 1;
      transform: translateX(-50%) translateY(4px); }
    .ns-hero__scroll svg {
      display: block; }

.ns-about {
  padding: 4rem 0; }
  @media (min-width: 768px) {
    .ns-about {
      padding: 8rem 0; } }
  .ns-about__grid {
    display: grid;
    grid-template-columns: 1fr; }
    @media (min-width: 768px) {
      .ns-about__grid {
        grid-template-columns: 1.2fr 1.8fr;
        grid-template-rows: auto auto auto; } }
  .ns-about__img-primary {
    position: relative; }
    @media (min-width: 768px) {
      .ns-about__img-primary {
        grid-column: 1;
        grid-row: 1; } }
    .ns-about__img-primary img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block; }
      @media (min-width: 768px) {
        .ns-about__img-primary img {
          height: 560px; } }
  .ns-about__content {
    padding: 2rem 1.5rem; }
    @media (min-width: 768px) {
      .ns-about__content {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 4rem 5rem;
        margin-top: 2.5rem; } }
    @media (min-width: 768px) {
      .ns-about__content p {
        max-width: 480px; } }
  .ns-about__img-secondary {
    display: flex;
    gap: 0.5rem;
    margin-top: -5%; }
    @media (min-width: 768px) {
      .ns-about__img-secondary {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
        transform: translateY(-15%); } }
    .ns-about__img-secondary > .ns-img-tint {
      flex: 1;
      overflow: hidden; }
      .ns-about__img-secondary > .ns-img-tint img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block; }
        @media (min-width: 768px) {
          .ns-about__img-secondary > .ns-img-tint img {
            height: 400px; } }
  .ns-about__quote {
    padding: 3rem 1.5rem 0;
    max-width: 720px; }
    @media (min-width: 768px) {
      .ns-about__quote {
        grid-column: 2;
        grid-row: 3;
        padding: 1.5rem 0 0;
        width: auto;
        margin-left: auto;
        margin-right: 0;
        text-align: right; } }

.ns-heading, .ns-about__content h2, .ns-about__quote h2, .ns-quote__heading {
  font-family: "Optima", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0A0B0B;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem; }
  .ns-heading em, .ns-about__content h2 em, .ns-about__quote h2 em, .ns-quote__heading em {
    font-style: italic; }
  @media (min-width: 768px) {
    .ns-heading, .ns-about__content h2, .ns-about__quote h2, .ns-quote__heading {
      font-size: 2.4rem;
      margin-bottom: 1.75rem; } }

.ns-img-tint {
  position: relative; }
  .ns-img-tint::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.07);
    transition: opacity 0.55s ease;
    pointer-events: none; }
  .ns-img-tint:hover::after {
    opacity: 0; }

.ns-label, .ns-projects__title {
  font-family: "Optima", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0A0B0B; }

.ns-body, .ns-about__content p, .ns-quote__subtitle {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7676; }

.ns-quote__subtitle {
  font-family: "Optima", sans-serif;
  font-style: italic;
  opacity: 0.65;
  margin-bottom: 0; }

.ns-cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.ns-split {
  padding: 4rem 0; }
  @media (min-width: 768px) {
    .ns-split {
      padding: 8rem 0; } }
  .ns-split__content {
    padding: 4rem 1.5rem; }
    @media (min-width: 768px) {
      .ns-split__content {
        padding: 5rem; } }
  .ns-split__img-col {
    min-height: 400px;
    position: relative;
    overflow: hidden; }
    @media (min-width: 768px) {
      .ns-split__img-col {
        min-height: 600px; } }
    .ns-split__img-col .ns-cover-img {
      position: absolute;
      inset: 0; }

.ns-contact {
  position: relative;
  overflow: hidden; }
  .ns-contact__bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    height: 160%;
    top: -30%;
    z-index: 0; }
  .ns-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(10, 11, 11, 0.65);
    z-index: 1; }
  .ns-contact .container {
    position: relative;
    z-index: 2; }
  .ns-contact .ns-heading, .ns-contact .ns-about__content h2, .ns-about__content .ns-contact h2, .ns-contact .ns-about__quote h2, .ns-about__quote .ns-contact h2, .ns-contact .ns-quote__heading,
  .ns-contact .ns-body,
  .ns-contact .ns-about__content p,
  .ns-about__content .ns-contact p,
  .ns-contact .ns-quote__subtitle {
    color: #ffffff; }
  .ns-contact__link {
    font-family: "Gotham", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.04em;
    position: relative;
    transition: all 0.35s ease; }
    .ns-contact__link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: currentColor;
      transition: none; }
    .ns-contact__link:hover {
      color: #ffffff;
      opacity: 0.7; }

.ns-projects__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 1rem 1.25rem; }
  @media (min-width: 768px) {
    .ns-projects__header {
      padding: 2.25rem 1.5rem 1.5rem; } }
.ns-projects__title {
  margin: 0; }
.ns-projects__link {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0A0B0B;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 1;
  position: relative;
  transition: opacity 0.3s ease; }
  .ns-projects__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: opacity 0.3s ease; }
  .ns-projects__link:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #0A0B0B; }
  .ns-projects__link:hover::after {
    opacity: 0.7; }
.ns-projects__grid {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0.5rem; }
  @media (min-width: 992px) {
    .ns-projects__grid {
      flex-wrap: nowrap; } }
.ns-projects__item {
  flex: 0 0 100%;
  overflow: hidden; }
  @media (min-width: 576px) {
    .ns-projects__item {
      flex: 0 0 50%; } }
  @media (min-width: 992px) {
    .ns-projects__item {
      flex: 1; } }
  .ns-projects__item a {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden; }
    .ns-projects__item a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease; }
    .ns-projects__item a:hover img {
      transform: scale(1.04); }

.ns-equipo {
  height: 100vh; }
  .ns-equipo .row {
    height: 100%; }
  .ns-equipo__col-right {
    background-color: #e9e9e9;
    position: relative;
    overflow: hidden; }
  .ns-equipo__img-wrap {
    position: absolute;
    inset: -20% 0;
    will-change: transform; }
  .ns-equipo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .ns-equipo__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 3rem 2rem; }
    @media (min-width: 992px) {
      .ns-equipo__left {
        padding: 4rem 3.5rem; } }
    @media (min-width: 1200px) {
      .ns-equipo__left {
        padding: 5rem 5rem; } }
  .ns-equipo__label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Optima", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0A0B0B;
    margin-bottom: 2rem; }
  .ns-equipo__label-line {
    display: block;
    width: 28px;
    height: 1px;
    background-color: #0A0B0B;
    flex-shrink: 0; }
  .ns-equipo__heading {
    font-family: "Optima", sans-serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0A0B0B;
    margin-bottom: 2rem;
    font-size: 2.6rem;
    max-width: 42ch; }
    @media (min-width: 768px) {
      .ns-equipo__heading {
        font-size: 3.2rem; } }
    @media (min-width: 1200px) {
      .ns-equipo__heading {
        font-size: 4rem; } }
    .ns-equipo__heading em {
      font-style: italic;
      color: #c2906e; }
  .ns-equipo__body {
    font-family: "Gotham", sans-serif;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #6b7676;
    max-width: 42ch; }
  .ns-equipo .ns-heading, .ns-equipo .ns-about__content h2, .ns-about__content .ns-equipo h2, .ns-equipo .ns-about__quote h2, .ns-about__quote .ns-equipo h2, .ns-equipo .ns-quote__heading {
    max-width: 20ch; }

/*# sourceMappingURL=new-styles.css.map */
