:root {
  --title-font: "Raleway", sans-serif;
  --body-font: "Quicksand", sans-serif;
  --header-font: "Alethia", serif;
  --color-white: #EEECE9;
  --color-black: #080614;
  --color-dark-green: #153417;
  --color-light-green: #485C17;
  --color-brown: #624527;
}

@font-face {
  font-family: "Alethia";
  src: url("/static/fonts/Alethia Pro Regular.otf");
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  margin: auto;
  color: var(--color-dark-green);
}

main {
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
  padding: 0 min(2rem, 3vw);
}

body p,
body li,
body a {
  font-family: var(--body-font);
}

h1,
h1 a,
h2,
h3,
h3 a,
h4 {
  font-family: var(--title-font);
}

h3,
h3 a,
h3 a:visited {
  color: var(--color-dark-green);
  font-weight: 400;
}

p,
li {
  color: var(--color-dark-green);
  font-weight: 300;
}

strong {
  font-weight: 500;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: min(50px, 3vh) 0 0 0;
  z-index: 10;
}

header h1 a:hover {
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
nav * {
  font-size: 14px;
  font-family: var(--title-font) !important;
}

header .nav-link {
  color: var(--color-dark-green);
}

.nav-link.is-active {
  text-decoration: underline;
}

nav ul {
  width: 100%;
  justify-content: space-between;
}

header li + li,
footer li + li {
  margin-left: 1rem;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-title.small-header h1 {
  font-size: min(4rem, 5vw);
}
.header-title h1 {
  margin: 0;
  font-size: min(7rem, 9vw);
  font-weight: 500;
  font-family: var(--header-font);
}
.header-title h1 a {
  font-family: var(--header-font);
  color: var(--color-dark-green);
}

.mobile {
  display: none !important;
}

@media (max-width: 800px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  header {
    width: 100%;
  }
  nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .mobile-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
  }
  .mobile-nav-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav .open .mobile-nav-container {
    opacity: 1;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
  }
  .mobile-nav-container ul {
    flex-direction: column;
    font-size: 24px;
  }
  .mobile-nav-container ul li.right-nav-link {
    align-self: flex-end;
  }
  .mobile-nav-container ul li.right-nav-link a {
    color: var(--color-dark-green);
  }
  .mobile-nav-container ul li.right-nav-link + li.right-nav-link {
    margin-top: 1rem;
  }
  .mobile-nav-container ul li a {
    font-size: 18px;
  }
  .mobile-nav-container ul li + li {
    margin: 0;
    margin-top: 2rem;
  }
  .menu-button {
    z-index: 3;
    position: relative;
    cursor: pointer;
    display: grid;
    margin-right: 1rem;
  }
  .menu-button svg {
    fill: var(--color-dark-green);
  }
  nav {
    margin-top: 0;
  }
  nav .open .menu-button .open-menu {
    display: none;
  }
  nav :not(.open) .menu-button .close-menu {
    display: none;
  }
  nav a:visited {
    color: var(--color-dark-green);
  }
  header {
    flex-direction: row;
    align-items: center;
  }
  header h1 {
    z-index: 3;
  }
  .header-title {
    order: 2;
  }
}
/* FOOTER */
footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 1;
}
footer nav {
  margin-top: 0;
}
footer nav.right {
  align-items: flex-end;
}
footer nav.left {
  align-items: flex-start;
}
footer a {
  color: var(--color-dark-green);
}

footer ul {
  justify-content: flex-start;
}

/* COMMON */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

ul.vertical-list {
  flex-direction: column;
}

.faded {
  color: var(--color-grey);
}

.full-width, .background-image-block {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

:root {
  --title-font: "Raleway", sans-serif;
  --body-font: "Quicksand", sans-serif;
  --header-font: "Alethia", serif;
  --color-white: #EEECE9;
  --color-black: #080614;
  --color-dark-green: #153417;
  --color-light-green: #485C17;
  --color-brown: #624527;
}

@font-face {
  font-family: "Alethia";
  src: url("/static/fonts/Alethia Pro Regular.otf");
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  margin: auto;
  color: var(--color-dark-green);
}

main {
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
  padding: 0 min(2rem, 3vw);
}

body p,
body li,
body a {
  font-family: var(--body-font);
}

h1,
h1 a,
h2,
h3,
h3 a,
h4 {
  font-family: var(--title-font);
}

h3,
h3 a,
h3 a:visited {
  color: var(--color-dark-green);
  font-weight: 400;
}

p,
li {
  color: var(--color-dark-green);
  font-weight: 300;
}

strong {
  font-weight: 500;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: min(50px, 3vh) 0 0 0;
  z-index: 10;
}

header h1 a:hover {
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
nav * {
  font-size: 14px;
  font-family: var(--title-font) !important;
}

header .nav-link {
  color: var(--color-dark-green);
}

.nav-link.is-active {
  text-decoration: underline;
}

nav ul {
  width: 100%;
  justify-content: space-between;
}

header li + li,
footer li + li {
  margin-left: 1rem;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-title.small-header h1 {
  font-size: min(4rem, 5vw);
}
.header-title h1 {
  margin: 0;
  font-size: min(7rem, 9vw);
  font-weight: 500;
  font-family: var(--header-font);
}
.header-title h1 a {
  font-family: var(--header-font);
  color: var(--color-dark-green);
}

.mobile {
  display: none !important;
}

@media (max-width: 800px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  header {
    width: 100%;
  }
  nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .mobile-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
  }
  .mobile-nav-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav .open .mobile-nav-container {
    opacity: 1;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
  }
  .mobile-nav-container ul {
    flex-direction: column;
    font-size: 24px;
  }
  .mobile-nav-container ul li.right-nav-link {
    align-self: flex-end;
  }
  .mobile-nav-container ul li.right-nav-link a {
    color: var(--color-dark-green);
  }
  .mobile-nav-container ul li.right-nav-link + li.right-nav-link {
    margin-top: 1rem;
  }
  .mobile-nav-container ul li a {
    font-size: 18px;
  }
  .mobile-nav-container ul li + li {
    margin: 0;
    margin-top: 2rem;
  }
  .menu-button {
    z-index: 3;
    position: relative;
    cursor: pointer;
    display: grid;
    margin-right: 1rem;
  }
  .menu-button svg {
    fill: var(--color-dark-green);
  }
  nav {
    margin-top: 0;
  }
  nav .open .menu-button .open-menu {
    display: none;
  }
  nav :not(.open) .menu-button .close-menu {
    display: none;
  }
  nav a:visited {
    color: var(--color-dark-green);
  }
  header {
    flex-direction: row;
    align-items: center;
  }
  header h1 {
    z-index: 3;
  }
  .header-title {
    order: 2;
  }
}
/* FOOTER */
footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 1;
}
footer nav {
  margin-top: 0;
}
footer nav.right {
  align-items: flex-end;
}
footer nav.left {
  align-items: flex-start;
}
footer a {
  color: var(--color-dark-green);
}

footer ul {
  justify-content: flex-start;
}

/* COMMON */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

ul.vertical-list {
  flex-direction: column;
}

.faded {
  color: var(--color-grey);
}

.full-width, .background-image-block {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.editorials {
  padding: 5rem 0;
}

@media (min-width: 801px) {
  body {
    overflow-x: hidden;
  }
  #image-track {
    display: flex;
    gap: 6vh;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
    user-select: none;
    cursor: grab;
    transition: all 0.2s;
    padding: 5rem 0;
  }
  #image-track::-webkit-scrollbar {
    display: none;
  }
  .editorial-track .images {
    display: flex;
  }
  .editorial-track .credits {
    display: flex;
    flex-direction: column;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.2s;
  }
  .editorial-track .credits .editorial-title {
    padding: 1rem 0;
  }
  .editorial-track .credits .info {
    display: none;
  }
  .editorial-track:hover .credits,
  .editorial-track.is-open .credits {
    opacity: 1;
    display: flex;
    flex-direction: row;
  }
  .editorial-track .image {
    width: 25vh;
    height: 56vh;
    object-fit: cover;
    object-position: 100% center;
    cursor: pointer;
  }
  .editorial-track > * {
    transition: width 0.2s, padding 0.2s;
  }
  .editorial-track .image:not(:first-of-type) {
    width: 0vh;
  }
  .editorial-track:not(.is-open) .editorial-credits {
    width: 0vh;
    overflow: hidden;
    padding: 0;
  }
  .editorial-track.is-open .image {
    width: 39.2vh;
  }
  .editorial-track.is-open .info {
    display: block;
  }
  #image-track:not([data-mouse-down-at="0"]),
  #image-track:not([data-mouse-down-at="0"]) * {
    cursor: grabbing;
  }
  .editorial-title {
    font-size: 16px;
    margin: 0;
    margin-bottom: auto;
    text-wrap: balance;
  }
  .editorial-publication {
    font-size: 12px;
    margin-bottom: 2rem;
  }
  .editorial-credits {
    font-size: 12px;
  }
  #track-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 50;
  }
  .track-dot {
    pointer-events: all;
    height: 8px;
    width: 8px;
    border-radius: 4px;
    border: none;
    background: var(--color-dark-green);
    opacity: 0.3;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, opacity 0.3s ease;
  }
  .track-dot.is-open {
    width: 28px;
    opacity: 1;
  }
  .track-dot:hover:not(.is-open) {
    opacity: 0.6;
  }
}
.editorial-credits {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  white-space: nowrap;
  gap: 2rem;
  font-size: 12px;
}
.editorial-credits .vertical-list {
  gap: 0.3rem;
}

@media (max-width: 800px) {
  main {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .editorial-track {
    display: flex !important;
    overflow-x: scroll;
  }
  .editorial-title {
    writing-mode: tb;
    padding-top: 1rem;
    transform: rotate(180deg);
    font-size: 24px;
  }
  .image {
    max-height: 80vh;
  }
}
.credits p,
.credits li {
  color: var(--color-dark-green);
}

main {
  padding-top: 0;
}

header {
  position: absolute;
  z-index: 1;
}

.background-image-block {
  min-height: 100vh;
  background-size: cover;
}

.header-image {
  background-image: url("/static/img/home/portada-crop.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  aspect-ratio: 2000/2150;
  min-height: 100vh;
  background-size: cover;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

@media (min-aspect-ratio: 4/3) {
  .header-image {
    background-size: cover;
  }
}
.footer-image {
  margin-bottom: -5rem;
}

@media (max-width: 800px) {
  .first-block {
    background-position: 50% -200px;
  }
}
footer a {
  color: var(--color-white);
}

#scroll-cue {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0;
  animation: cue-appear 0.8s ease forwards;
  animation-delay: 2s;
  transition: opacity 0.4s ease;
  z-index: 100;
  user-select: none;
  -webkit-user-select: none;
}

#scroll-cue.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

#scroll-cue span {
  font-family: var(--body-font);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-dark-green);
  font-weight: 500;
}

#scroll-cue svg {
  display: block;
  animation: arrow-drift 2s ease-in-out infinite;
  animation-delay: 2.8s;
}
#scroll-cue svg line,
#scroll-cue svg polyline {
  stroke: var(--color-dark-green);
}

@keyframes cue-appear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes arrow-drift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/*# sourceMappingURL=home.css.map */
