:root {
  --navy: #061428;
  --navy-2: #0b2444;
  --blue: #0085d4;
  --cyan: #52c7ee;
  --sky: #dff4ff;
  --paper: #f7f5ef;
  --white: #fff;
  --ink: #0a1827;
  --muted: #637080;
  --line: rgba(10, 24, 39, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  color: #fff;
  background: var(--navy);
  transition: visibility 0s 1.05s;
  animation: loaderFallback 0s 4s forwards;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  z-index: -1;
  background: var(--navy);
  transition: transform 1s cubic-bezier(.76, 0, .24, 1) .55s;
}

.loader::after {
  inset: 0 0 0 50%;
}

.loaded .loader::before {
  transform: translateX(-101%);
}

.loaded .loader::after {
  transform: translateX(101%);
}

.loader__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  transition: opacity .35s ease .42s;
}

.loader__mark span {
  font: 700 clamp(42px, 7vw, 100px)/.8 "Manrope", sans-serif;
  letter-spacing: -.075em;
}

.loader__mark strong {
  margin-top: 12px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .4em;
}

.loader__track {
  width: min(420px, 66vw);
  height: 1px;
  margin: 30px auto 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
  transition: opacity .35s ease .42s;
}

.loader__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: loadline 1.3s cubic-bezier(.76, 0, .24, 1) forwards;
}

.loader__count {
  color: var(--cyan);
  font: italic 18px Georgia, serif;
  text-align: center;
  transition: opacity .35s ease .42s;
}

.loaded .loader__mark,
.loaded .loader__track,
.loaded .loader__count {
  opacity: 0;
}

.loaded .loader {
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 94px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: height .35s, color .35s, background .35s, box-shadow .35s;
  opacity: 0;
}

.loaded .site-header {
  animation: fadeDown .7s ease 1.05s forwards;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 76px;
  color: var(--ink);
  background: rgba(247, 245, 239, .94);
  box-shadow: 0 8px 30px rgba(6, 20, 40, .08);
  backdrop-filter: blur(14px);
}

.brand {
  width: 86px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.site-header.scrolled .brand img,
.site-header.menu-open .brand img {
  filter: none;
}

.nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  margin-left: 10vw;
}

.nav a,
.header-cta {
  position: relative;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  gap: 28px;
  padding: 13px 0;
  border-bottom: 1px solid;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform .3s;
}

.section {
  padding: 130px max(5vw, 30px);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.kicker span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-label {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 22px;
  margin-bottom: 58px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-label span {
  color: var(--blue);
}

.section-label p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-label--light p {
  border-color: rgba(255, 255, 255, .2);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 8vw 75px;
  color: #fff;
  isolation: isolate;
  background: var(--navy);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("./assets-dance-fronteiras/0001-86.jpg") 55% center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 6s cubic-bezier(.2, .8, .2, 1);
}

.loaded .hero__media {
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(4, 15, 32, .9) 0%, rgba(4, 15, 32, .65) 48%, rgba(4, 15, 32, .28) 100%), linear-gradient(0deg, rgba(4, 15, 32, .5), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8vw;
  top: 50%;
  width: min(38vw, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  transform: translateY(-50%) scale(.7);
  opacity: 0;
}

.loaded .hero::after {
  animation: circleIn 1.2s cubic-bezier(.2, .8, .2, 1) 1.35s forwards;
}

.hero__content {
  width: min(1000px, 78vw);
}

.hero__kicker {
  opacity: 0;
}

.loaded .hero__kicker {
  animation: fadeUp .7s ease 1.25s forwards;
}

.hero h1 {
  margin: 0;
  font: 800 clamp(64px, 9.3vw, 154px)/.79 "Manrope", sans-serif;
  letter-spacing: -.085em;
}

.hero h1 span {
  display: block;
  overflow: hidden;
}

.hero h1 b {
  display: block;
  transform: translateY(110%);
}

.loaded .hero h1 span:first-child b {
  animation: titleIn 1s cubic-bezier(.2, .8, .2, 1) 1.3s forwards;
}

.loaded .hero h1 span:nth-child(2) b {
  animation: titleIn 1s cubic-bezier(.2, .8, .2, 1) 1.48s forwards;
}

.hero h1 em,
.display-copy em,
h2 em {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero__footer {
  width: 68%;
  margin: 45px 0 0 28%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  opacity: 0;
}

.loaded .hero__footer {
  animation: fadeUp .8s ease 1.8s forwards;
}

.hero__footer p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 220px;
  padding: 17px 21px;
  border: 1px solid currentColor;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  transition: color .25s, background .25s, transform .25s;
}

.button:hover {
  transform: translateY(-3px);
}

.button--light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.button--light:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero__rail {
  position: absolute;
  right: -110px;
  top: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
  letter-spacing: .32em;
  transform: rotate(90deg);
}

.hero__social {
  position: absolute;
  left: 4.5vw;
  bottom: 8%;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .16em;
}

.hero__social span {
  margin-left: 12px;
  color: var(--cyan);
}

.hero__stamp {
  position: absolute;
  right: 8vw;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .75);
  font-size: 8px;
  letter-spacing: .17em;
}

.hero__stamp strong {
  color: var(--cyan);
  font: 400 42px/1 Georgia, serif;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(120px, 20%) 1fr;
  gap: 5vw;
  background: var(--paper);
}

.intro-section__body {
  max-width: 1120px;
}

.display-copy {
  max-width: 1050px;
  margin: 0;
  font: 500 clamp(42px, 5.7vw, 88px)/1.02 "Manrope", sans-serif;
  letter-spacing: -.06em;
}

.display-copy em {
  color: var(--blue);
}

.intro-section__grid {
  margin-top: 95px;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) 1fr;
  gap: clamp(45px, 9vw, 130px);
  align-items: end;
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  border-radius: 160px 160px 16px 16px;
  box-shadow: 0 24px 70px rgba(6, 20, 40, .14);
}

.portrait figcaption {
  margin-top: 14px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .15em;
}

.intro-section__copy {
  max-width: 550px;
}

.intro-section__copy>p {
  margin: 0 0 24px;
  color: #465465;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

.values {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.values span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.values span:nth-child(odd) {
  margin-right: 20px;
}

.numbers {
  padding: 90px max(5vw, 30px);
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 6vw;
  color: #fff;
  background: linear-gradient(130deg, var(--navy), var(--navy-2) 60%, #06436d);
}

.numbers__intro h2 {
  margin: 0;
  font: 600 clamp(30px, 3vw, 46px)/1.15 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .2);
}

.numbers__grid article {
  min-width: 0;
  padding: 30px clamp(14px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.numbers__grid article:last-child {
  border: 0;
}

.numbers__grid strong,
.numbers__grid span {
  display: block;
}

.numbers__grid strong {
  min-height: 60px;
  color: var(--cyan);
  font: italic clamp(30px, 3.4vw, 24px)/1 Georgia, serif;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.numbers__grid span {
  margin-top: 16px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .15em;
}

.projects2 {
    padding: 130px 5vw;
    background: linear-gradient(145deg, #10142f 0%, #132054 55%, #073d65 100%);
    color: #fff
}

.projects2 {
    padding: 90px 18px
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 3vw 70px
}

.section-title h2,
.impact h2,
.connection h2 {
    font-size: clamp(53px, 6.4vw, 104px);
    line-height: .9;
    letter-spacing: -.06em;
    margin: 0
}

.section-title>p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6)
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.card {
    min-height: 650px;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .32)
}

.card--a {
    background-image: linear-gradient(180deg, rgba(7, 13, 43, .15), rgba(7, 13, 43, .88)), url("./assets-dance-fronteiras/image-section2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    isolation: isolate;
}

.card--b {
    background-image: linear-gradient(180deg, rgba(7, 13, 43, .1), rgba(7, 13, 43, .9)), url("./assets-dance-fronteiras/dance-sem-fronteiras.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    isolation: isolate;
}

.card__letter {
    position: absolute;
    right: -5%;
    top: 42%;
    font-size: clamp(280px, 31vw, 500px);
    line-height: .6;
    font-weight: 900;
    color: rgba(255, 255, 255, .18);
    letter-spacing: -.12em;
    transition: transform .8s
}

.card:hover .card__letter {
    transform: rotate(-4deg) scale(1.05)
}

.card__top {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: .16em
}

.card__body {
    position: relative;
    max-width: 78%
}

.card__body small {
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: .14em
}

.card__body h3 {
    font-size: clamp(54px, 6vw, 94px);
    line-height: .82;
    letter-spacing: -.07em;
    margin: 22px 0 34px
}

.card__body p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px
}

.card__body a {
    display: flex;
    justify-content: space-between;
    width: 230px;
    margin-top: 35px;
    padding: 16px 0 12px;
    border-bottom: 1px solid rgba(16, 20, 47, .5);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em
}


.projects {
  background: #fff;
}

.projects__heading,
.gallery__heading {
  margin: 0 0 75px calc(20% + 5vw);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

.projects__heading h2,
.gallery__heading h2,
.film__heading h2,
.feature h2,
.closing h2 {
  margin: 0;
  font: 600 clamp(48px, 6.2vw, 96px)/.93 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

.projects__heading h2 em,
.gallery__heading h2 em {
  color: var(--blue);
}

.projects__heading>p,
.gallery__heading>p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.projects__list {
  border-top: 1px solid var(--line);
}

.project {
  position: relative;
  min-height: 230px;
  padding: 34px 3vw;
  display: grid;
  grid-template-columns: 8% 35% 1fr 50px;
  gap: 4vw;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color .35s, background .35s;
  overflow: hidden;
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--blue), #0566a4);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.project>* {
  position: relative;
  z-index: 1;
}

.project:hover,
.project:focus {
  color: #fff;
  outline: none;
}

.project:hover::before,
.project:focus::before {
  transform: translateY(0);
}

.project__number {
  color: var(--blue);
  font: italic 25px Georgia, serif;
}

.project:hover .project__number,
.project:focus .project__number {
  color: var(--cyan);
}

.project div>p {
  margin: 0 0 9px;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}

.project h3 {
  margin: 0;
  font: 600 clamp(25px, 2.7vw, 41px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.project>p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project:hover>p,
.project:focus>p {
  color: rgba(255, 255, 255, .8);
}

.project__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  transition: transform .3s;
}

.project:hover .project__arrow {
  transform: rotate(45deg);
}

.feature {
  min-height: 760px;
  display: grid;
  grid-template-columns: 58% 42%;
  color: #fff;
  background: var(--navy);
}

.feature__image {
  min-height: 660px;
  background: linear-gradient(90deg, transparent 70%, var(--navy)), url("./assets-dance-fronteiras/0001-86.jpg") center/cover no-repeat;
}

.feature__content {
  padding: 9vw 7vw 9vw 5vw;
  align-self: center;
}

.feature h2 em {
  color: var(--cyan);
}

.feature__content>p:not(.kicker) {
  max-width: 490px;
  margin: 35px 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 35px;
  padding-bottom: 9px;
  border-bottom: 1px solid;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.gallery {
  background: var(--sky);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 420px 420px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--navy);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .8, .2, 1), opacity .35s;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.045);
  opacity: .82;
}

.gallery-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(6, 20, 40, .65);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .15em;
}

.gallery-card--wide {
  grid-row: span 2;
}

.gallery-card--portrait img {
  object-position: center 25%;
}

.film {
  color: var(--navy-2);
    background: var(--paper);
}

.film__heading {
  margin: 0 0 65px calc(20% + 5vw);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.film__heading h2 em {
  color: var(--cyan);
}

.film__heading p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8.3;
  overflow: hidden;
  background: #020814;
}

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

.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: linear-gradient(rgba(4, 15, 32, .2), rgba(4, 15, 32, .5));
  border: 0;
  cursor: pointer;
  transition: opacity .4s, visibility .4s;
}

.video-cover.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-cover>span:last-child {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.play {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: transform .3s, background .3s;
}

.video-cover:hover .play {
  transform: scale(1.08);
  background: var(--cyan);
}

.closing {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 7vw;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.closing>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.closing__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 20, 40, .72);
}

.closing__content {
  max-width: 930px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing h2 {
  font-size: clamp(58px, 8.5vw, 132px);
}

.closing h2 em {
  color: var(--cyan);
}

.closing__content>p:not(.kicker) {
  max-width: 530px;
  margin: 32px auto;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.footer {
  padding: 85px 5vw 25px;
  color: #fff;
  background: #020b18;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr .7fr 1fr;
  gap: 5vw;
  align-items: start;
  padding-bottom: 80px;
}

.brand--footer {
  width: 150px;
  height: 135px;
}

.brand--footer img {
  filter: invert(1);
}

.footer__main>p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 17px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .14em;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--cyan);
}

.footer__contact span {
  color: rgba(255, 255, 255, .5);
}

.footer__bottom {
  padding-top: 23px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  letter-spacing: .12em;
}

.footer__bottom a:last-child {
  text-align: right;
}

.lightbox {
  width: min(92vw, 1400px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(2, 8, 20, .92);
  backdrop-filter: blur(7px);
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  margin: auto;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes loadline {
  to {
    transform: translateX(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes titleIn {
  to {
    transform: translateY(0)
  }
}

@keyframes circleIn {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1)
  }
}

@keyframes loaderFallback {
  to {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1050px) {
  .nav {
    margin-left: 0;
  }

  .header-cta {
    display: none;
  }

  .hero__content {
    width: 88vw;
  }

  .hero__footer {
    width: 80%;
    margin-left: 18%;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .intro-section>.section-label {
    max-width: 230px;
  }

  .projects__heading,
  .gallery__heading,
  .film__heading {
    margin-left: 0;
  }

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

  .project {
    grid-template-columns: 7% 38% 1fr 45px;
    gap: 3vw;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 90px 22px;
  }

  .site-header {
    height: 76px;
    padding: 0 18px;
  }

  .brand {
    width: 69px;
    height: 64px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    padding: 35px 22px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    color: var(--ink);
    background: rgba(247, 245, 239, .98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .4s, opacity .3s, visibility .4s;
  }

  .site-header.menu-open .nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
    padding: 115px 22px 70px;
    align-items: flex-end;
  }

  .hero__media {
    background-position: 58% center;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 88px);
    line-height: .83;
  }

  .hero__footer {
    width: 100%;
    margin: 32px 0 0;
    display: block;
  }

  .hero__footer p {
    max-width: 420px;
  }

  .hero__footer .button {
    margin-top: 25px;
  }

  .hero__rail,
  .hero__stamp {
    display: none;
  }

  .hero__social {
    left: auto;
    right: 22px;
    bottom: 25px;
  }

  .intro-section__grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portrait {
    width: min(85%, 380px);
  }

  .numbers {
    padding: 75px 22px;
  }

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

  .numbers__grid article:nth-child(2) {
    border-right: 0;
  }

  .numbers__grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }


     .projects2 {
        padding: 90px 18px
    }

    .section-title {
        display: block;
        margin: 0 6px 50px
    }

    .section-title h2 {
        font-size: 58px
    }

    .section-title>p {
        margin-top: 35px
    }

    .cards {
        grid-template-columns: 1fr
    }

    .card {
        min-height: 520px;
        padding: 26px
    }

    .card__body {
        max-width: 92%
    }

    .card__body h3 {
        font-size: 57px
    }


  .projects__heading,
  .gallery__heading,
  .film__heading {
    display: block;
    margin-bottom: 50px;
  }

  .projects__heading>p,
  .gallery__heading>p,
  .film__heading>p {
    margin-top: 25px;
  }

  .project {
    min-height: 0;
    padding: 32px 0;
    grid-template-columns: 35px 1fr 42px;
    gap: 16px;
  }

  .project>p {
    grid-column: 2/4;
  }

  .project__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .project:hover,
  .project:focus {
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .feature__image {
    min-height: 480px;
    background-image: linear-gradient(0deg, var(--navy), transparent 35%), url("./assets-dance-fronteiras/0001-86.jpg");
  }

  .feature__content {
    padding: 55px 22px 85px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 310px);
  }

  .gallery-card--wide {
    grid-row: auto;
  }

  .film__heading h2,
  .projects__heading h2,
  .gallery__heading h2,
  .feature h2 {
    font-size: clamp(44px, 13vw, 70px);
  }

  .video-shell {
    aspect-ratio: 16/10;
  }

  .play {
    width: 70px;
    height: 70px;
  }

  .closing {
    min-height: 690px;
    padding: 85px 22px;
  }

  .closing h2 {
    font-size: clamp(53px, 15vw, 90px);
  }

  .footer {
    padding: 65px 22px 25px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
    padding-bottom: 55px;
  }

  .brand--footer {
    width: 120px;
    height: 105px;
  }

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

  .footer__bottom a:last-child {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .loader__mark span {
    font-size: 39px;
  }

  .hero h1 {
    font-size: 15.8vw;
  }

  .hero__footer p {
    font-size: 14px;
  }

  .display-copy {
    font-size: 38px;
  }

  .numbers__grid strong {
    font-size: 29px;
  }

  .project h3 {
    font-size: 27px;
  }

  .feature__image {
    min-height: 400px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}