*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: 'Inter', sans-serif;
  background: #1a1f1c;
  color: #F4EDE0;
  overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
  }

.nav {      
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  align-items: center;
  
  padding: 1.5rem 0;
}

.nav__logo {
  grid-column: 2 / 5;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
}

.nav__links {
  grid-column: 17 / 24;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.75rem);
}

.nav__links a {
  font-size: clamp(0.875rem, 1.5vw, 1.375rem);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #B8946B;
  display: inline-block;

}

.hero {
  height: 100vh;
  min-height: 43.75rem;
  position: relative;
  overflow: hidden;
  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto;
  align-content: center;          
  padding: 6rem 0;
  row-gap: 2.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero__title {
  grid-column: 14 / 19;
  margin-top: 10.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  z-index: 1;
  font-weight: 700;
}

.hero__tagline {
  grid-column: 14 / 23;
  margin-left: 0.625rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.125rem, 2.2vw, 1.875rem);
  font-weight: 400;
  z-index: 1;
}

.hero__button {
  grid-column: 18 / 23;
  margin-top: 2.5rem;
  margin-left: 0.625rem;
  align-self: center;
  justify-self: start;
  
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 1.9vw, 1.625rem);
  padding: 0.875rem 1rem;  background: #B8946B;
  color: #1a1f1c;
  border-radius: 9999px;
  text-align: center;
  z-index: 1;
  margin-left: 10px;
}

.nav__burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 20;
  
  grid-column: 22 / 24;
  justify-self: end;
  align-self: center;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #B8946B;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {

.hero__tagline {
  grid-column: 14 / 24;
}

.hero__button {
  grid-column: 18 / 23;
}

}

@media (max-width: 803px) {

.hero__button {
  grid-column: 18 / 24;
}

}

@media (max-width: 750px) {

  .hero__title {
  grid-column: 13 / 19;
}

  .hero__tagline {
  grid-column: 13 / 24;
}

.hero__button {
  grid-column: 17 / 24;
}

  .hero__bg {
    background-image: url('images/herosmall.jpg');
  }
  
  .nav__links {
    display: none;
  }
  
  .nav__burger {
    display: block;
  }
  
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 28, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 5;

    width: 100vw;
    height: 100vh;
    grid-area: unset;
  }
  
  .nav__links.is-open a {
    font-size: 1.75rem;
  }

  .nav__logo {
    z-index: 100;
  }
}

@media (max-width: 650px) {

  .hero__title {
  grid-column: 11 / 19;
}

  .hero__tagline {
  grid-column: 11 / 24;
}

.hero__button {
  grid-column: 15 / 24;
}
}

@media (max-width: 450px) {

  .hero__title {
  grid-column: 11 / 19;
}

  .hero__tagline {
  grid-column: 11 / 24;
}

.hero__button {
  grid-column: 13 / 24;
}

.hero__bg {
    background-position: 80% center;
  }

}

@media (min-width: 1500px) {
  
  .hero__title {
    font-size: clamp(9rem, 7vw, 14rem);
  }
  
  .hero__tagline {
    font-size: clamp(2.5rem, 2vw, 3.5rem);
  }
  
  .hero__button {
    font-size: clamp(2rem, 1.5vw, 3rem);
  }
  
  .nav__logo {
    font-size: clamp(2rem, 1.5vw, 3rem);
  }
  
  .nav__links a {
    font-size: clamp(1.5rem, 1.2vw, 2rem);
  }
  
}

@media (max-aspect-ratio: 1/1) {
  .hero__bg {
    background-image: url('images/herosmall.jpg');
  }
}


.about {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #1a1f1c;

  border-top: 7px solid rgba(244, 237, 224, 0.1);
  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto;
}

.about__photo {
  grid-column: 1 / 13;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/chef.png');
  background-size: cover;
  background-position: center;
}

.about__eyebrow {
  grid-column: 17 / 20;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.3125rem);
  font-weight: 500;
  letter-spacing: 0%;
  color: #B8946B;
  text-transform: uppercase;
  margin-top: 30px;
}

.about__title {
  grid-column: 15 / 22;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0%;
  color: #F4EDE0;
  margin-top: 45px;
}

.about__title em {
  font-style: italic;
}

.about__text {
  grid-column: 14 / 24;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.9vw, 1.625rem);
  font-weight: 300;
  line-height: 1.3;
  color: #888880;
  margin-top: 30px;

}


.about__link {
  grid-column: 20 / 25;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.1875rem);
  font-weight: 400;
  color: #F4EDE0;
  align-self: center;
  margin-bottom: 10px;
  margin-left: 40px;
}

@media (max-width: 1080px) and (min-width: 801px) {
  
  .about__photo {
    grid-column: 1 / 12;
  }
  
  .about__title {
    grid-column: 14 / 22;
  }
  
  .about__text {
    grid-column: 13 / 24;
  }
  
  .about__link {
    grid-column: 19 / 25;
  }
  
}

@media (max-width: 1100px) and (max-aspect-ratio: 1/1), (max-width: 800px) {
  
  .about {
    height: auto;
    min-height: 100vh;
    padding: 0 0 3rem 0;
  }
  
  .about__photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    grid-column: 1 / 25;
    background-image: url('images/chef.png');
  }
  
  .about__eyebrow {
    grid-column: 3 / 24;
    margin-top: 1rem;
    margin-left: 0;
  }
  
  .about__title {
    grid-column: 3 / 24;
    margin-top: 1.5rem;
    margin-left: 0;
  }
  
  .about__title br {
    display: none;
  }
  
  .about__text {
    grid-column: 3 / 24;
    margin-top: 2rem;
    margin-left: 0;
  }
  
  .about__link {
    grid-column: 3 / 24;
    margin-top: 1rem;
    margin-left: 0;
    margin-bottom: 0;
    text-align: left;
  }
  
}

@media (max-width: 450px) {

  .about__photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    grid-column: 1 / 25;
    background-image: url('images/chef.png');
  }

}

@media (min-width: 1500px) {
  
  .about__eyebrow {
    font-size: clamp(1.3125rem, 1vw, 2rem);
  }
  
  .about__title {
    font-size: clamp(3.4375rem, 3.5vw, 5.5rem);
  }
  
  .about__text {
    font-size: clamp(1.625rem, 1.6vw, 2.25rem);
  }
  
  .about__link {
    font-size: clamp(1.1875rem, 1vw, 1.75rem);
  }
}


.experience {
  height: 100vh;
  min-height: 700px;
  background: #F4EDE0;
  border-top: 7px solid rgba(26, 31, 28, 0.1);
  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto;
}

.experience__eyebrow {
  
  grid-column: 11 / 15;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.3125rem);
  font-weight: 500;
  color: #B8946B;
  text-transform: uppercase;
  text-align: center;
  align-self: center;
  margin-top: 1rem;
}

.experience__title {
  grid-column: 5 / 20;
  margin-top: 1.1rem;
  font-family: 'GFS Didot', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1f1c;
  text-align: center;
}

.experience__subtitle {
  grid-column: 5 / 14;
  font-family: 'GFS Didot', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4375rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1f1c;
  text-align: center;
  margin-top: -2.5rem;
}

.experience__cards {
  grid-column: 2 / 24;
  margin-top: 1rem;

  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.3125rem);
  font-weight: 400;
  color: #1a1f1c;
  text-align: center;
}

.card__image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.experience__link {
  grid-column: 11 / 16;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  font-weight: 500;
  color: #1a1f1c;
  text-align: center;
  align-self: center;
}

@media (max-width: 825px) {

  .experience__eyebrow {
    grid-column: 10 / 16;
  }

  .experience__title {
    grid-column: 6 / 24;
    text-align: start;
  }

  .experience__subtitle {
    grid-column: 6 / 24;
    text-align: start;
  }

  .experience__link {
    grid-column: 11 / 24;
    text-align: start;
  }
  
}

@media (max-width: 650px) {

.experience__title {
    grid-column: 4 / 25;
    text-align: start;
  }

  .experience__subtitle {
    grid-column: 4 / 25;
    text-align: start;
  }

   .experience__link {
    text-align: start;
  }

  .experience__cards {
    grid-column: 1 / 25;

    display: flex;
    gap: 16px;
    justify-content: flex-start;

    
    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-left: 1.5rem;
    padding-right: 2rem;
    
    scroll-padding-left: 1.5rem;
    
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  
  .experience__cards::-webkit-scrollbar {
    display: none;
  }
  
  .card {
    flex: 0 0 55%;
    scroll-snap-align: start;

  }
  
  .card__image {
    min-height: 280px;
  }
}

@media (max-width: 520px) {

.experience__title {
    grid-column: 2 / 25;
    text-align: start;
  }

  .experience__subtitle {
    grid-column: 2 / 25;
    text-align: start;
  }

   .experience__link {
    grid-column: 9 / 24;
    text-align: start;
  }

 .card {
    flex: 0 0 65%;
  }

}

@media (max-width: 480px) {

.experience__eyebrow {

    grid-column: 7 / 19;


}

.experience__title {
    font-size: 1.7rem;
  }

.experience__subtitle {
    font-size: 1.3rem;
  }

}

@media (max-width: 405px) {

.experience__title {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

.experience__subtitle {
    font-size: 1.2rem;
  }

}

@media (min-width: 1500px) {
  
  .experience__eyebrow {
    font-size: clamp(1.3125rem, 1vw, 2rem);
  }
  
  .experience__title {
    font-size: clamp(3.4375rem, 3.5vw, 5.5rem);
    grid-column: 6 / 24;
    text-align: start;
  }
  
  .experience__subtitle {
    font-size: clamp(2.4375rem, 2.5vw, 4rem);
    grid-column: 6 / 24;
    text-align: start;
  }
  
  .card__label {
    font-size: clamp(1.3125rem, 1vw, 2rem);
  }

  .card__image {
    min-height: 500px;       
  }
  
  .experience__link {
    font-size: clamp(1.1875rem, 1vw, 1.75rem);
  }
  
}

@media (min-width: 700px) and (max-width: 1100px) and (max-aspect-ratio: 1/1) {
  
  .experience__eyebrow {
    font-size: 1.5rem;
    grid-column: 10 / 24;
    text-align: start;
  }
  
  .experience__title {
    font-size: 3rem;
    grid-column: 4 / 25;
    text-align: start;
  }
  
  .experience__subtitle {
    font-size: 2rem;
    grid-column: 4 / 24;
    text-align: start;
  }
  
  .card__label {
    font-size: 1.5rem;
  }
  
  .card__image {
    min-height: 500px;       
  }
  
  .experience__link {
    font-size: 1.25rem;
    grid-column: 10 / 24;
    text-align: start;
  }
  
}


.gallery {
  height: 100vh;
  min-height: 700px;
  background: #1a1f1c;
  padding: 30px 40px 40px 40px;
  border-top: 7px solid rgba(244, 237, 224, 0.1);
  border-bottom: 7px solid rgba(244, 237, 224, 0.1);
  overflow: hidden;
}


.gallery__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.3125rem);
  font-weight: 500;
  color: #B8946B;
  text-transform: uppercase;
  margin-left: 80px;
}


.gallery__title {
  font-family: 'GFS Didot', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 400;
  color: #F4EDE0;
  margin-left: 80px;
  margin-top: 60px;

}

.gallery__title-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 600;
}

.gallery__track {
  margin-top: 110px;
  display: flex;
  gap: 32px;
  cursor: grab;
  user-select: none;
  height: 375px;
  padding-right: 80px;
  perspective: 1000px;
}

.gallery__track:active {
  cursor: grabbing;
}

.gallery__item {
  flex-shrink: 0;
  width: 220px;
  height: 360px;
}

.gallery__item--up {
  align-self: flex-start;
}

.gallery__item--down {
  align-self: flex-end;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery__item img {
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 850px) {

  .gallery__eyebrow {
    font-size: 1.3rem
  }

   .gallery__title {
    font-size: 2.5rem
  }

  .gallery__title-brand {
    font-size: 2.5rem
  }

}

@media (max-width: 750px) {

  .gallery__eyebrow {
    margin-left: 50px;
  }

   .gallery__title {
    margin-left: 50px;
  }

}

@media (max-width: 570px) {

  .gallery__eyebrow {
    margin-left: 20px;
  }

   .gallery__title {
    margin-left: 20px;
  }

} 

@media (max-width: 570px) {

  .gallery__eyebrow {
    margin-left: 2px;
  }

   .gallery__title {
    margin-left: 2px;
  }

} 

@media (max-width: 515px) {

  .gallery__eyebrow {
    font-size: 1rem
  }

   .gallery__title {
    font-size: 2rem
  }

  .gallery__title-brand {
    font-size: 2rem
  }

}

@media (max-width: 435px) {

  .gallery {

    padding-right: 10px;
    padding-left: 20px;

  }

}

@media (max-width: 380px) {

  .gallery {

    .gallery__eyebrow {
    font-size: 0.9rem
  }

   .gallery__title {
    font-size: 1.9rem
  }

  .gallery__title-brand {
    font-size: 1.9rem
  }


  }

}

@media (max-width: 432px) and (min-height: 840px) {

    .gallery__eyebrow {
    margin-top: 30px;
  }

   .gallery__title {
    margin-top: 80px;
  }

  .gallery__track {
    margin-top: 160px;
    height: 420px;
  }
  .gallery__item {
    height: 405px;
  }

}

@media (min-width: 1500px) {
  
  .gallery__eyebrow {
    font-size: clamp(1.3125rem, 1vw, 2rem);
  }
  
  .gallery__title,
  .gallery__title-brand {
    font-size: clamp(3.4375rem, 3.5vw, 5.5rem);
  }

  .gallery__track {
    height: 700px;
    margin-top: 150px;
  }
  .gallery__item {
    width: 480px;
    height: 680px;
  }
  
}

@media (min-width: 700px) and (max-width: 1100px) and (max-aspect-ratio: 1/1) {
  
  .gallery__eyebrow {
    font-size: 1.5rem;
    margin-left: 50px;
    margin-top: 30px;
  }
  
  .gallery__title {
    font-size: 3.5rem;
    margin-left: 50px;
    margin-top: 50px;
  }
  .gallery__title-brand {
    font-size: 4rem
  }
  
  .gallery__track {
    height: 600px;
    margin-top: 170px;
  }
  
  .gallery__item {
    width: 380px;
    height: 580px;
  }
  
}

@media (min-width: 1000px) and (max-width: 1100px) and (max-aspect-ratio: 1/1) {
  
  .gallery__eyebrow {
    font-size: 1.5rem;
    margin-top: 50px;
  }
  
  .gallery__title {
    font-size: 4rem;
    margin-top: 80px;
  }
  
  .gallery__track {
    height: 800px;
    margin-top: 220px;
  }
  .gallery__item {
    width: 480px;
    height: 780px;
  }
}


.reservations {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: url('images/reservations.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;

  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto;
}

.reservations__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 28, 0.55);
  z-index: 0;
}

.reservations__title {
  grid-column: 6 / 17;
  margin-top: 5.3rem;
  font-family: 'GFS Didot', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 400;
  font-style: normal;
  color: #F4EDE0;
  text-align: center;
  z-index: 1;
}

.lang-en .reservations__title {
  grid-column: 5 / 16;
}

.reservations__subtitle {
  grid-column: 6 / 19;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.25rem);
  font-weight: 300;
  opacity: 0.8;
  color: #F4EDE0;
  text-align: left;
  z-index: 1;
  margin-bottom: 4.8rem;
}

.reservations__buttons {
  grid-column: 9 / 18;
  display: flex;
  gap: 70px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-bottom: 15rem;

}

.reservations__btn {
  padding: clamp(0.75rem, 1vw, 1.125rem) clamp(1rem, 1.5vw, 1.75rem);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 700;
  border-radius: 9999px;
  text-align: center;
}

.reservations__btn--primary {
  background: #B8946B;
  color: #1a1f1c;
}

.reservations__btn--secondary {
  background: transparent;
  border: 1px solid #F4EDE0;
  color: #F4EDE0;
}

.reservations__logo {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: #F4EDE0;
  z-index: 1;
}

@media (max-width: 984px) {

  .reservations__buttons {
    grid-column: 6 / 21;
  }

}

@media (max-width: 900px) {

  .reservations__title {
    grid-column: 6 / 24;
    text-align: start;
  }

  .reservations__subtitle {
    grid-column: 6 / 24;
    text-align: start;
  }

  .lang-en .reservations__title {
    grid-column: 6 / 25;
  }

}

@media (max-width: 700px) {

  .reservations__title {
    grid-column: 4 / 24;
  }

  .reservations__subtitle {
    grid-column: 4 / 24;
  }

  .reservations__buttons {
    grid-column: 3 / 24;
  }

  .lang-en .reservations__title {
    grid-column: 4 / 25;
  }

}

@media (max-width: 600px) {

  .reservations__title {
    grid-column: 2 / 25;
  }

  .reservations__subtitle {
    grid-column: 2 / 25;
  }

  .reservations__buttons {
    gap: 50px;
    margin-bottom: 18rem;
  }

  .lang-en .reservations__title {
    grid-column: 4 / 25;
  }
  
  .lang-en .reservations__subtitle {
    grid-column: 4 / 25;
  }

}

@media (max-width: 510px) {

  .reservations__title {
    font-size: 1.9rem;
  }

  .reservations__subtitle {
    font-size: 0.8rem;
  }

  .reservations__buttons {
    gap: 30px;
    margin-bottom: 20rem;
  }

  .lang-en .reservations__title {
    grid-column: 2 / 25;
  }

  .lang-en .reservations__subtitle {
    grid-column: 2 / 25;
  }

}

@media (max-width: 390px) {

  .reservations__buttons {
    grid-column: 2 / 25;
  }

}

@media (max-width: 432px) and (min-height: 800px) {

  .reservations__title {
    font-size: 2.2rem;
  }

  .reservations__subtitle {
    font-size: 0.9rem;
  }

  .reservations__buttons {
    margin-bottom: 25rem;
  }

}

@media (min-width: 1500px) {
  
  .reservations__title {
    font-size: clamp(4rem, 5vw, 7rem);
    grid-column: 6 / 24;
    text-align: start;

  }
  
  .reservations__subtitle {
    font-size: clamp(1.5rem, 1.8vw, 2.25rem);
    grid-column: 6 / 24;
    text-align: start;
  }
  
  .reservations__btn {
    font-size: clamp(1.25rem, 1.4vw, 1.875rem);
    padding: clamp(1rem, 1.3vw, 1.625rem) clamp(1.5rem, 2vw, 2.5rem);
    margin-bottom: 15rem;
  }
  
  .reservations__logo {
    font-size: clamp(1.75rem, 1.5vw, 2.75rem);
  }
  
}

@media (min-width: 700px) and (max-width: 850px) and (max-aspect-ratio: 1/1) {
  
  .reservations__title {
    font-size: 3.8rem;
    margin-top: 5rem;
    grid-column: 3 / 25;
    text-align: start;
  }
  
  .reservations__subtitle {
    font-size: 1.2rem;
    margin-bottom: 5rem;
    grid-column: 3 / 25;
    text-align: start;
  }
  
  .reservations__btn {
    font-size: 1.5rem;
    padding: 1.25rem 2rem;
  }
  
  .reservations__buttons {
    margin-bottom: 30rem;
    gap: 70px;
    grid-column: 3 / 25;

  }
  
  .reservations__logo {
    font-size: 2rem;
  }
  
}

@media (min-width: 851px) and (max-width: 1100px) and (max-aspect-ratio: 1/1) {
  
  .reservations__title {
    font-size: 4rem;
    margin-top: 8rem;
    grid-column: 3 / 25;
    text-align: start;
  }
  
  .reservations__subtitle {
    font-size: 1.3rem;
    margin-bottom: 10rem;
    grid-column: 3 / 25;
    text-align: start;
  }
  
  .reservations__btn {
    font-size: 1.5rem;
    padding: 1.25rem 2rem;
  }
  
  .reservations__buttons {
    margin-bottom: 30rem;
    gap: 70px;
    grid-column: 3 / 25;

  }
  
  .reservations__logo {
    font-size: 2rem;
  }
  
}


.footer {
  height: 100vh;
  min-height: 700px;
  background: #1a1f1c;
  border-top: 7px solid rgba(244, 237, 224, 0.1);
  
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto;
}

.footer__logo {
  grid-column: 3 / 7;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4375rem);
  font-weight: 500;
  color: #F4EDE0;
  margin-top: 3.4rem;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 1.8vw, 1.6875rem);
  font-weight: 500;
  color: #B8946B;
  margin-top: 0.4rem;
}

.footer__heading--visit {
  grid-column: 3 / 8;
  grid-row: 2;

}

.footer__heading--contact {
  grid-column: 10 / 16;
  grid-row: 2;
  margin-left: 18px;

}

.footer__heading--social {
  grid-column: 18 /  24;
  grid-row: 2;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -2.5rem;
}

.footer__info p,
.footer__info a {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  font-weight: 300;
  color: #F4EDE0;
  line-height: 2;
  opacity: 0.8;
}

.footer__info--visit {
  grid-column: 3 / 9;
  grid-row: 3;
}

.footer__info--contact {
  grid-column: 10 / 16;
  grid-row: 3;
  margin-left: 18px;

}

.footer__info--social {
  grid-column: 18 / 24;
  grid-row: 3;
}

.footer__hours {
  grid-column: 3 / 8;
  grid-row: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -2.5rem;
}

.footer__hours p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  font-weight: 300;
  color: #F4EDE0;
  line-height: 2;
  opacity: 0.8;
}

.footer__divider {
  grid-column: 2 / 23;
  grid-row: 5;
  height: 2px;
  background-color: #F4EDE0;
  align-self: center;
  margin-bottom: 1rem;
}

.footer__copyright {
  grid-column: 2 / 5;
  grid-row: 6;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  color: #F4EDE0;
  text-align: center;
  text-align: start;
}

.footer__legal {
  grid-column: 20 / 23;
  grid-row: 6;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  color: #F4EDE0;
  text-align: center;
  text-align: end;
}

.footer__info a:hover {
  color: #B8946B;
}

.footer__legal a:hover {
  color: #B8946B;
}

@media (max-width: 835px) {

.footer__copyright {
  grid-column: 2 / 7;
}

.footer__legal {
  grid-column: 18 / 23;
}

}

@media (max-width: 550px) {

  .footer__info p,
  .footer__info a,
  .footer__hours p {
    font-size: 1.125rem;
  }
  
  .footer__logo {
    grid-column: 3 / 23;
    grid-row: 1;
    font-size: 3rem;

  }
  
  .footer__heading {
    margin-top: 3rem;
    margin-left: 0;
    font-size: 1.5rem;

  }
  
  .footer__heading--visit {
    grid-column: 3 / 23;
    grid-row: 2;
  }
  
  .footer__heading--contact {
    grid-column: 3 / 23;
    grid-row: 5;
    margin-left: 0;
  }
  
  .footer__heading--social {
    grid-column: 3 / 23;
    grid-row: 7;
  }
  
  .footer__info {
    margin-top: 1rem;
  }
  
  .footer__info--visit {
    grid-column: 3 / 23;
    grid-row: 3;
  }
  
  .footer__info--contact {
    grid-column: 3 / 23;
    grid-row: 6;
    margin-left: 0;
  }
  
  .footer__info--social {
    grid-column: 3 / 7;
    grid-row: 8;
  }
  
  .footer__hours {
    grid-column: 3 / 23;
    grid-row: 4;
    margin-top: 2rem;
  }
  
  .footer__divider {
    grid-column: 3 / 23;
    grid-row: 9;
    margin-top: 3rem;
  }
  
  .footer__copyright {
    grid-column: 3 / 14;
    grid-row: 10;
    text-align: start;
    padding-bottom: 1.5rem;
    font-size: 0.9rem;

  }
  
  .footer__legal {
    grid-column: 14 / 23;
    grid-row: 10;
    text-align: end;
    font-size: 0.9rem;

  }
  
}

@media (min-width: 1500px) {
  
  .footer__logo {
    font-size: clamp(3.4375rem, 5.5vw, 6.5rem);
  }
  
  .footer__heading {
    font-size: clamp(1.6875rem, 1.8vw, 3.5rem);
  }
  
  .footer__info p,
  .footer__info a,
  .footer__hours p {
    font-size: clamp(1.1875rem, 1.1vw, 2rem);
  }
  
  .footer__copyright,
  .footer__legal {
    font-size: clamp(1.1875rem, 1.1vw, 2rem);
  }
  
}

@media (min-width: 700px) and (max-width: 770px) and (max-aspect-ratio: 1/1) {

  .footer__logo {
    font-size: 3.25rem;
  }
  
  .footer__heading {
    font-size: 1.5rem;
    margin-top: 4rem;
  }
  
  .footer__info p,
  .footer__info a,
  .footer__hours p {
    font-size: 1.125rem;
  }
  
  .footer__hours {
    margin-top: 2rem;
  }
  
  .footer__copyright,
  .footer__legal {
    font-size: 1rem;
  }

}

@media (min-width: 771px) and (max-width: 850px) and (max-aspect-ratio: 1/1) {

  .footer__logo {
    font-size: 4rem;
  }
  
  .footer__heading {
    font-size: 1.75rem;
    margin-top: 4rem;
  }
  
  .footer__info p,
  .footer__info a,
  .footer__hours p {
    font-size: 1.375rem;
  }
  
  .footer__copyright,
  .footer__legal {
    font-size: 1.25rem;
  }

}

@media (min-width: 851px) and (max-width: 1100px) and (max-aspect-ratio: 1/1) {

  .footer__logo {
    font-size: 5rem;
  }
  
  .footer__heading {
    font-size: 2rem;
    margin-top: 4rem;
  }
  
  .footer__info p,
  .footer__info a,
  .footer__hours p {
    font-size: 1.4rem;
  }

  
  .footer__copyright {

    font-size: 1.375rem;
    grid-column: 2 / 7;
  }
  .footer__legal {
    font-size: 1.375rem;
    grid-column: 17 / 23;

  }
  
}

.hero__title,
.hero__tagline,
.hero__button,
.nav {
  opacity: 0;
}


.legal-page {
  background: #1a1f1c;
  color: #F4EDE0;
  min-height: 100vh;
}

.nav--legal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  align-items: center;
  padding: 2rem 0;
  z-index: 10;
}

.nav--legal .nav__logo {
  grid-column: 2 / 5;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.7vw, 2rem);
  font-weight: 500;
  color: #F4EDE0;
}

.nav--legal .nav__links {
  grid-column: 17 / 24;
  display: flex;
  gap: clamp(2rem, 4vw, 3.75rem);
  justify-content: flex-end;
  list-style: none;
}

.nav--legal .nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 1.4vw, 1.375rem);
  color: #B8946B;
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.legal__updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #888880;
  margin-bottom: 4rem;
}

.legal__section {
  margin-bottom: 3rem;
}

.legal__section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  color: #B8946B;
  margin-bottom: 1.5rem;
}

.legal__section p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.7;
  color: #F4EDE0;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.legal__section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal__section li {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.7;
  color: #F4EDE0;
  opacity: 0.85;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.legal__section li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #B8946B;
  font-size: 1.5rem;
  line-height: 1;
}

.legal__section a {
  color: #B8946B;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__back {
  display: inline-block;
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.1875rem);
  color: #B8946B;
  text-decoration: none;
}

.legal__back:hover {
  color: #F4EDE0;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  
  height: auto;
  min-height: auto;
  
  display: flex;
  grid-template-columns: none;
  grid-template-rows: none;
}

.footer-legal .footer__copyright,
.footer-legal .footer__legal {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #F4EDE0;
  opacity: 0.8;
}

.footer-legal a {
  color: #F4EDE0;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #B8946B;
}


@media (max-width: 700px) {
  
  .nav--legal .nav__logo {
    grid-column: 2 / 12;
  }
  
  .nav--legal .nav__links {
    grid-column: 13 / 24;
    gap: 1.5rem;
  }
  
  .legal {
    padding: 2rem 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
}