/* Baskerville */
@font-face {
  font-family: 'Baskerville';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/BaskervilleMTProRegular/font.woff2') format('woff2'),
       url('../fonts/BaskervilleMTProRegular/font.woff') format('woff');
  font-display: auto;
}

/* CSS RESET */

* {
  box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
  
}
td {
    vertical-align: top;
}

h1, h2, h3, h4{
  margin-block-start: 0em;
  margin-block-end: 0em;
  font-weight: 400;
}
h2 {
  font-size: 0.9375rem;
}
a {
  color: inherit;
  text-decoration: none
}
p {
  margin-block-start: 1rem;
  margin-block-end: 2rem;
}

/* END CSS RESET */

:root {
  --dark: #000000;
  --light: #ffffff;
  --primary-font: 'Baskerville', serif;
  --secondary-font: 'akzidenz-grotesk', sans-serif;
  --body-font-size: 1.0625rem;
  --font-scale-s: 0.9375rem;
  --font-scale-l: var(--font-scale-s);
  /* --font-size: 16px;
  --font-weight: 400;
  --font-scale-xxs: 0.6rem;
  --font-scale-xs: 0.75rem;
  --font-scale-m: 1.05rem;
  --font-scale-l: 1.3rem;
  --font-scale-xl: 1.8rem;
  --font-scale-xxl: 5rem; */
  --spacing-xxs: ;
  --spacing-xs: ;
  --spacing-s: 1.25rem;
  --spacing-m: ;
  --spacing-l: ;
  --spacing-xl: ;
  --spacing-xxl: ;
 /* --page-top-padding: 170px;
  font-size: var(--font-size);
  font-family: var(--primary-font);
  font-weight: var(--font-weight);
  color: var(--light);
  background-color: var(--dark); */
  font-size: 16px;
  letter-spacing: 0.02rem;
}

body {
 font-family: var(--primary-font);
 font-size: var(--body-font-size);
 overflow: scroll;
 -webkit-font-smoothing: antialiased;
}
/* hide page content by default 
.is-loading main, .is-loading section.newsletter__section, .is-loading footer {
  display: none;
} */
.is-loading {
  background-color: black;
}

h1, h2, h3.title, .title {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: initial;
}
.font-scale-s {
  font-size: var(--font-scale-s)
}
.font-scale-l {
  font-size: var(--font-scale-l);
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.bg {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.dark {
  background-color: var(--dark);
  color: var(--light)
}

/* LOADER */
.loader {
  min-height: 100vh;
  position: fixed;
  flex-direction: column;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: black;
}
.loader__mask {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent url('../images/logo.svg') no-repeat center;
  background-size: 300px 100px;
  overflow: hidden;
}

/* SPLASH CAROUSEL & NAV */
.splash {
  background-color: white;
}
.splash:hover {
  cursor: pointer;
}
.nav__home {
  color: var(--light);
  position: absolute;
  top: var(--spacing-s);
  left: var(--spacing-s);
  z-index: 2;
}

.nav__home h1 {
  font-size: var(--font-scale-s);
  font-family: var(--primary-font);
  letter-spacing: .16em;
  line-height: 1.7;
}

.splash__button {
  position: absolute;
  top: var(--spacing-s);
  right: var(--spacing-s);
  z-index: 2;
}

.arrow {
  width: 180px;
  height: 20px;
}

.splash__button--next {
  color: var(--light) !important;
}

.img-gradient:after {
  content:'';
  position:absolute;
  left:0; top:0;
  width:100%; 
  height:100px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
}

.carousel {
  position: relative;
  height: 100vh;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.carousel.is-hidden {
  opacity: 0;
}

.carousel.flickity-enabled {
  opacity: 1;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 1; }
}
.carousel-cell {
    width: 100vw;
    height: 100vh;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0 !important;
    transition: opacity 0.7s;
    position: absolute;
}
.carousel-cell:not(.is-selected) {
    animation: fadeOut ease 0.7s;
}
.carousel-cell.zero-fade.is-selected {
    opacity: 1 !important;
    transition: opacity 0.0s;
    animation: none
}
.carousel-cell.is-selected {
    z-index: 99;
    opacity: 1 !important;
    animation: fadeIn ease 0.7s;
}
/* Image for slider */
.img-full-bleed {
  width: 100%;
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
/* Video for slider */
.video-bg {
    /* position: absolute; */
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
  }
.video-bg > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  @media (min-aspect-ratio: 16/9) {
    .video-bg > video { height: 300%; top: -100%; }
  }
  @media (max-aspect-ratio: 16/9) {
    .video-bg > video { width: 300%; left: -100%; }
  }
  @supports (object-fit: cover) {
    .video-bg > video {
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
  }

.carousel-cell.is-previous {
    z-index: 98;
    opacity: 1 !important;
}

.left {
  width: 50%
}

.right {
  width: 50%;
  margin-left: 50%
}

/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* FLEX projectS */
.projects {
  height: 151vh;
  /* height: 101vh; CHANGE WHEN 2 rows of grid items */
}
@media only screen and (min-width: 480px) {}
.project {
  width: 33.33333%;
}
}

@media only screen and (min-width: 480px) {
.project__before {
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
}
}

/* PROJECTS GRID */

.projects-group {
  width: 100%;
  display: flex;
  height: 33.333333%;
  /* height: 50%; CHANGE WHEN LESS GRID ITEMS */
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 479px) {
  .projects-group {
      flex-wrap: wrap;
      position: relative;
      background: #fff;
  }
}
.projects-group.active {
  height: 46%;
  /* height: 70%; CHANGE WHEN 2 ROWS OF GRIDS */
}
.projects-group.inactive {
  height: 27%;
  /* height: 30%; CHANGE WHEN 2 ROWS OF GRIDS */
}
.projects-group.hide-details .project__details {
  /* opacity: 0 !important; */
  opacity: 1;
  pointer-events: none;
}
@media only screen and (max-width: 479px) {
  .projects-group:last-of-type .project:last-of-type .project__after,
  .projects-group:last-of-type .project:last-of-type .project__before {
      display: none;
  }
}
.project {
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.project__before {
  width: 100%;
  height: 1px;
  left: 0;
}
.project__after,
.project__before {
  position: absolute;
  background: #000;
  z-index: 1;
}
.project__after {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  transform: scaleY(0);
  transform: translate(0px, 0px);
  opacity: 1;
  transform-origin: top;
}
@media only screen and (min-width: 480px) {
  .project {
      width: 33.33333%;
  }
  .project__before {
      top: 0;
      transform: scaleX(0);
      transform: translate(0px, 0px);
      opacity: 1;
      transform-origin: left;
  }
  #item-1 .project__before, #item-2 .project__before, #item-3 .project__before {
    display: none;
  }
  .project:nth-child(3) .project__after {
      display: none;
  }
}
@media only screen and (max-width: 479px) {
  .project {
      width: 100%;
  }
  .project__before {
      bottom: 0;
      left: 0;
      width: 100vw;
  }
  .project__after {
      display: none;
  }
}
.project.inactive {
  width: 16.66667%;
  z-index: 0;
}
.project.active {
  width: 66.66667%;
  z-index: 1;
}
.project.active .project__imagery {
  opacity: 1;
  transform: scaleX(1);
  /* transition: opacity .5s; */
}
.project.imitate {
  width: 66.66667%;
}
.project__inner {
  display: flex;
  position: relative;
  height: 100%;
  padding: 1.5625rem 1.25rem 1.25rem 1.25rem;
  justify-content: space-between;
  /* opacity: 0; */
  opacity: 1;
  cursor: pointer;
  /* transition: opacity .5s; */
}
@media only screen and (max-width: 479px) {
  .project__inner {
      flex-direction: column;
      opacity: 1;
  }
}
.project__header {
  cursor: pointer;
}
@media only screen and (max-width: 479px) {
  .project__header {
      flex: 0 0 100%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      margin-top: 13px;
  }
}
.project span {
  display: block;
}
.phone {
  font-style: italic;
}
.project__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 100%;
}
/* Grid Newsletter */
.project__newsletter .project__copy {
  justify-content: center;
  text-align: center;
  flex: 0 0 100% !important;
}
.grid-newsletter {
  position: absolute;
  bottom: 20px;
  width: 100%
}

.grid-newsletter form {
  width: calc(100% - 2.5rem);
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid darkgrey;
}

.grid-newsletter input[type="email"].newsletter__input {
  width: 100%;
  padding-right: 2rem;
  border: none;
}

.grid-newsletter input {
  font-family: inherit;
  font-size: inherit;
  color: darkgrey;
  font-style: italic;
  font-size: .9em
}

.grid-newsletter input:focus-visible {
  outline: none
}

.grid-newsletter .newsletter__button__wrapper {
  border: none;
  padding: 0px
}

.grid-newsletter .newsletter__button__wrapper:hover {
  border: none
}

.grid-newsletter input[type="submit" i], .grid-newsletter input[type="email" i] {
  padding: 0px
}

.grid-newsletter input[type="email"].newsletter__input {
  font-size: .9em
}

@media only screen and (max-width: 479px) {
  .project__copy {
      order: 2;
      flex: 0 0 100%;
      align-items: flex-start;
  }
  .project__copy.coming-soon-item .project__header{
    margin-top: 0px;
  }
  .project__copy.coming-soon-item .project__credits {
    display: block;
    margin-top: 13px
  }
}
@media only screen and (max-width: 479px) {
  .project__credits {
  display: none;
  }
}
.project__imagery {
  position: relative;
  display: block;
  overflow: hidden;
}
@media only screen and (min-width: 480px) {
  .project__imagery {
      height: 100%;
      /* opacity: 0; */
      opacity: 1;
      width: 100%;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      cursor: url(../images/cursor.svg), auto;
      /* transition: opacity .5s; */
  }
}
@media only screen and (max-width: 479px) {
  .project__imagery {
      order: 1;
      padding-top: 52.15%;
  }
}
.project__video {
  z-index: 0;
}
@media only screen and (max-width: 479px) {
  .project__video {
      display: none;
  }
}
@media only screen and (max-width: 479px) {
  .project__video-cover {
      height: 100%;
  }
}
.project__media-container {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
@media only screen and (min-width: 480px) {
  .project__media-container {
      width: calc(66.66667vw - 282px);
      height: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .project__media-container {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
  }
}
.project__media-container img,
.project__media-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.project__details {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
@media only screen and (max-width: 479px) {
  .project__details {
      display: none;
  }
}
.project__details span {
  align-self: flex-end;
}
.project__details a {
  font-family: "Theinhardt-Reg";
  font-weight: 100;
  font-size: var(--span);
  line-height: var(--span-line-height);
  letter-spacing: var(--span-letter-spacing);
}

/* Sections */
.section__after,
.section__before {
  /* position: absolute; */
  background: var(--dark);
  z-index: 1;
  width: 100%;
  height: 1px;
}

/* About Section */
.bio .bg {
  background-position: 0 -25vh;
}
.section__title__wrapper {
  display: flex;
	flex-direction: column;
  align-items: center;
}
.about__section .section__title__wrapper {
  padding: 4.75rem 0 2.75rem 0;
}
.about__title {
  margin: auto;
  width: auto;
}
.about__text {
  max-width: 900px;
  padding: 0 1.5rem 4.75rem 1.5rem;
  margin: auto;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.8rem;
}

/* Publications Section */
.publications__section .section__title__wrapper {
  padding: var(--spacing-s) 0;
}
.publication__contents {
  padding: 3.3rem 0.9375rem 2rem 0.9375rem;
}
.publication-carousel {
  margin-bottom: var(--spacing-s)
}

.publication-carousel .flickity-slider {
  height: 28vw; 
}
.publication {
  height: 100%;
  width: 33.333333%;
  padding: 0 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publication__details {
  padding-bottom: 2.25rem
}
h3.publication__title {
  font-size: var(--body-font-size);
}
.publication__byline {
  font-style: italic;
}

.publication__after {
  position: absolute;
  background: #000;
  z-index: 1;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  transform: scaleY(0);
  transform: translate(0px, 0px);
  opacity: 1;
  transform-origin: top;
}

.publication.is-selected .publication__after {
  right: initial;
  left: -1px;
}

.publication .publication__after {
  left: 3px;
}

.publication-carousel__arrows {
    padding: 0 0.9375rem;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.publication-carousel__arrow{
    background-color: transparent;
    border: none;
    padding: 0;
    color: black;
    cursor: pointer;
}

button.publication-carousel__arrow {
    outline: none;
    padding: 0;
    border: 0;
}

svg[data-v-5cfb6d82] {
    display: inline-block;
    vertical-align: baseline;
    /* pointer-events: none; */
}



/* Awards Section */
.awards__section .section__title__wrapper {
  display: flex;
	flex-direction: row;
  justify-content: space-between;
  padding: var(--spacing-s) 1.6875rem;
}

button#accordion {
  outline: none;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  font-size: 0.9375rem;
  display: block;
}

.accordion:after {
  content: 'ABRIR';
}

.button-open:after {
  content: 'CERRAR';
}

.panel {
  overflow: hidden;
  height: 0px;
  margin-top: -1px;
  opacity: 0;
  transition: opacity 2s ease;
}

.panel.open {
  overflow: initial;
  height: initial;
  margin-top: 0px;
  opacity: 1;
}

.awards__grid {
  padding: 4.6875rem 1.6875rem;
  display: grid;
  grid-row-gap: 3.75rem;
  grid-template-columns: .8fr 2fr;
  border-bottom: 1px solid var(--dark);
  margin-top: -1px
}
.awards__grid td {
  padding-left: 10vw;
}
.awards__grid td p {
  margin: 0
}

/* Restaurant Page */
.header__image {
  height: 70vh
}
.restaurant__contents__wrapper {
  padding: 0.5rem 0.9375rem;
}

.restaurant__contents__container {
  margin: 1.1rem 0;
  width: 100%;
  background-color: black;
  display: grid;
  grid-column-gap: 1px;
  grid-template-columns: 1fr 1fr;
}

.restaurant__contents__container > div {
  background-color: white;
}

.restaurant__contents__container > div:nth-child(odd) {
  padding-right: 1.375rem;
}

.restaurant__contents__container > div:nth-child(even) {
  padding-left: 1.375rem;
}

.contents__before, .contents__after {
  width: 100%;
  height: 1px;
  left: 0;
  transform: scaleX(0);
  transform: translate(0px, 0px);
  opacity: 1;
  transform-origin: left;
  background-color: black;
}
.contents__before {
  top: 0;
}
.contents__after {
  bottom: 0;
}

.restaurant__content__wrapper {
  padding-bottom: 2.5rem 
}

.restaurant__content {
  padding: 2.125rem .5rem 0 .5rem;
}

.restaurant__content.restaurant__title, .restaurant__content.restaurant__description {
  padding-top: 0.3rem;
}

.restaurant__description p {
  line-height:  1.625rem;
  margin-block-start: 1.625rem;
  margin-block-end: 1.625rem;
}

.restaurant__description p:first-of-type {
  margin-block-start: 0rem;
}

.restaurant__description p:last-of-type {
  margin-block-end: 0rem;
}

.restaurant__reserva__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.restaurant__details span {
  display: block
}

.restaurant__details dd {
  margin-inline-start: 0px;
}

.restaurant__socials a:not(:last-of-type) {
  margin-right: 1rem
}

.restaurant__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.restaurant__image {
  height: 100vh;
}

/* Newsletter Section */
.newsletter__wrapper {
  margin: 6rem 0;
  display: flex;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsletter__container {
  display: flex;
}
.newsletter__title {
  border-bottom: 1px solid black;
  padding-right: 4vw;
}
.newsletter__container form {
  display: flex;
}
.newsletter__container input {
  display: inline;
  border-bottom: 1px solid black;
  /* font-size: 1.4rem; */
  border-top: none;
  border-right: none;
  border-left: none;
  background-color:transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 100%
}
.newsletter__container input:focus {
  outline: none;
  border-top: none;
  border-right: none;
  border-left: none;
}
input[type="email"].newsletter__input {
  width: 16.5rem;
  font-family: inherit;
  font-size: inherit;
  padding-right: 4vw;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: var(--font-scale-s);
  padding-bottom: 4px;
}
input[type="submit"] {
  border: none;
  background-color: white !important;
  display: block;
  -webkit-appearance: none;
  padding-bottom: 4px;
}
input[type="submit"]:hover {
  cursor: pointer;
}
::-webkit-input-placeholder { /* Edge */
  color: #ADAEAE;
}
:-ms-input-placeholder { /* Internet Explorer */
  color: #ADAEAE;
}
::placeholder {
  color: #ADAEAE;
}

/* Footer */
.footer__wrapper {
  display: flex;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__menu__wrapper {
  margin: 2.9rem 0 2.9rem 0;
  display: flex;
	flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer__menu__wrapper a {
  padding: 1.1875rem;
  font-size: var(--font-scale-s);
}
.footer__details__wrapper {
  margin: 0 0 2.125rem 0;
  display: flex;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Button hover */

.restaurant__socials a, .restaurant__website a  {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: rgb(0, 0, 0, 0);
  -moz-text-decoration-color: rgb(0, 0, 0, 0);
  text-decoration-thickness: .1rem;
  transition: text-decoration-color .4s ease;
}
.restaurant__socials a:hover, .restaurant__website a:hover {
  text-decoration-color: rgb(0, 0, 0, 1);
  -moz-text-decoration-color: rgb(0, 0, 0, 1);
}

.newsletter__button__wrapper {
  border-bottom: 1px solid rgb(0, 0, 0, 0);
  transition: border-color .4s ease;
}
.newsletter__button__wrapper:hover {
  border-color: rgb(0, 0, 0, 1)
}


@media only screen and (max-width: 800px) {
  /* HOME */
  .bio .bg {
    background-position: center;
  }
  .publication-carousel .flickity-slider {
   height: 55vw;
  }
  .publication {
    width: 50%;
  }
  .newsletter__container {
    flex-direction: column;
  }
  .newsletter__title {
    border-bottom: none;
    padding-right: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-s)
  }
  .newsletter__container form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .newsletter__input {
    margin-bottom: var(--spacing-s)
  }
  .grid-newsletter .newsletter__input {
    margin-bottom: 0px
  }
  input[type="email"].newsletter__input {
    padding-right: initial;
    text-align: center;
  }
  .grid-newsletter input[type="email"].newsletter__input {
    text-align: initial;
  }
}

@media only screen and (max-width: 655px) {
  /* RESTAURANT */
  .restaurant__contents__container {
    margin: 2.125rem 0 0 0;
    grid-column-gap: initial;
    grid-template-columns: 1fr;
  }
  .restaurant__content {
    padding: 2.125rem 0rem 0 0rem
  }
  .restaurant__content__wrapper {
    padding-bottom: 2.125rem
  }
  .restaurant__contents__container > div:nth-child(odd) {
    padding-right: 0rem;
  }
  .restaurant__contents__container > div:nth-child(even) {
    padding-left: 0rem;
  }
  .restaurant__images {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 479px) {
  /* HOME */
  .splash__button {
  top: var(--spacing-s)
  }
  .arrow {
    width: 120px;
    height: 16px;
  }
  .left {
    width: 100%;
  }
  .right {
    width: 100%;
    margin-left: initial;
  }
  .projects {
    height: initial;
  }
  .projects-group {
    height: initial;
  }
  .bio .bg {
    background-position: center;
  }
  .publication-carousel .flickity-slider {
    height: 90vw;
  }
  .publication {
    width: 100%;
  }
  .publication-carousel__arrows {
    padding: 0 0;
  }
  .awards__grid {
    grid-template-columns: 1fr;
  }
  td.award__year {
    padding-left: initial;
  }
  #item-7, #item-9 {
    display: none;
  }
  /* RESTAURANT */
  .header__image {
    height: 50vh
  }
  /* Splash */
  .carousel {
    height: 90vh;
  }
}