@font-face {
  font-family: Glacial;
  src: url("fonts/GlacialIndifference-Bold.otf");
}
@font-face {
  font-family: Vintage;
  src: url("fonts/Vintage-Goods.otf");
}
:root {
  --white: #fbfaf6;
  --cream: #f1ece3;
  --ink: #25211d;
  --wine: #642326;
  --wine2: #421416;
  --line: #d7d0c4;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --title: Glacial, Arial, sans-serif;
  --accent: Vintage, cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 300 16px/1.6 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: #463319;
  color: #fff;
}
.logo {
  width: 112px;
  height: 78px;
}
.logo img {
  object-fit: contain;
}
nav {
  display: flex;
  gap: 42px;
  font-size: 15px;
  font-weight: 300;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.languages {
  display: flex;
  gap: 8px;
  font: 700 11px var(--title);
  letter-spacing: 0.08em;
}
.languages span { opacity: 1; }
.languages a { opacity: 0.55; }
.menu-toggle,
.mobile-menu { display: none; }
.reserve-nav {
  font: 700 13px/1.2 var(--title);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding: 9px 0;
}
.label {
  font: 700 10px var(--title);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 30px;
}
.pale {
  color: #d4b6aa;
}
.hero {
  height: calc(100vh - 94px);
  min-height: 690px;
  position: relative;
  color: #fff;
}
.hero > img {
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #260b0cd9 0%, #3211138f 40%, transparent 72%),
    linear-gradient(0deg, #0006, transparent 45%);
}
.hero-copy {
  position: absolute;
  left: 8vw;
  bottom: 10vh;
  max-width: 750px;
}
.hero h1,
.intro h2,
.editorial h2,
.spaces h2,
.menu h2,
.chef h2,
.visit h2 {
  font: 700 clamp(58px, 6.5vw, 104px)/0.92 var(--title);
  letter-spacing: -0.055em;
  margin: 0;
}
.hero h1 span,
.intro h2 span,
.editorial h2 span,
.menu h2 span,
.visit h2 span {
  font-family: var(--accent);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-copy > p:not(.label) {
  max-width: 490px;
  font-size: 18px;
  line-height: 1.55;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  padding: 20px 28px;
  font: 700 13px/1.25 var(--title);
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}
.button.light {
  background: #fff;
  color: var(--wine);
}
.button.wine {
  background: var(--wine);
  color: #fff;
}
.intro {
  padding: 210px 10vw 230px;
}
.intro h2 {
  font-size: clamp(52px, 5.5vw, 85px);
  max-width: 1000px;
}
.intro h2 span {
  color: var(--wine);
}
.intro-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  width: 100%;
  max-width: 1180px;
  margin: 90px 0 0;
}
.intro-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}
.editorial {
  min-height: 850px;
  display: grid;
  grid-template-columns: 68% 32%;
  align-items: center;
  background: var(--cream);
  padding: 0 6vw 170px 0;
}
.photo-main {
  height: 850px;
}
.photo-small {
  width: 100%;
  max-width: 360px;
  height: 500px;
  margin-left: -4vw;
  border: 18px solid var(--white);
}
.spaces {
  padding: 210px 0 170px;
  overflow: hidden;
}
.spaces-title {
  padding: 0 10vw 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.spaces h2 {
  font-size: clamp(52px, 5.7vw, 88px);
  max-width: 850px;
}
.gallery,
.plates {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: none;
  padding: 0 7vw 20px;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar,
.plates::-webkit-scrollbar {
  display: none;
}
.gallery figure {
  margin: 0;
  min-width: 33vw;
  height: 600px;
  scroll-snap-align: start;
}
.gallery .wide {
  min-width: 51vw;
}
.slide-note {
  text-align: right;
  margin: 25px 7vw 0;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.menu {
  padding: 190px 0 130px;
  background: var(--wine2);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  overflow: hidden;
}
.menu-title {
  padding-left: 9vw;
}
.menu h2 {
  font-size: clamp(55px, 6vw, 92px);
}
.menu h2 span {
  color: #d7b7aa;
}
.menu-copy {
  padding: 80px 9vw 0 0;
}
.menu-copy p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 36px;
}
.plates {
  grid-column: 1/3;
  padding-top: 120px;
  align-items: center;
}
.plates img {
  min-width: 30vw;
  width: 30vw;
  height: 480px;
  scroll-snap-align: start;
}
.plates img:nth-child(even) {
  height: 590px;
}
.chef {
  min-height: 1000px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--cream);
}
.chef-photo {
  min-height: 1000px;
}
.chef-photo img {
  object-position: center 25%;
}
.chef-content {
  padding: 150px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chef h2 {
  font-size: clamp(58px, 5.6vw, 86px);
  color: var(--wine);
}
.chef-lead {
  font-size: 22px !important;
  line-height: 1.5 !important;
  margin-top: 55px !important;
}
.chef-content > p:not(.label) {
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin: 28px 0;
}
.chef-content .button {
  align-self: flex-start;
  margin-top: 18px;
}
.visit {
  height: 900px;
  margin: 210px 5vw 190px;
  position: relative;
}
.visit:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #280b0ddd,
    rgba(40, 11, 13, 0.45) 52%,
    transparent
  );
}
.visit-card {
  position: absolute;
  z-index: 2;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.visit h2 {
  font-size: clamp(60px, 6vw, 92px);
}
.visit h2 span {
  color: #ddb5a6;
}
.details {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
  max-width: 560px;
  border-top: 1px solid #ffffff66;
  margin: 45px 0 35px;
  padding-top: 25px;
  font-size: 14px;
}
.details p {
  margin: 0;
}
.details p:last-child {
  grid-column: 1/3;
}
.mobile {
  display: none;
}
footer {
  background: var(--wine2);
  color: #fff;
  text-align: center;
  padding: 100px 5vw 120px;
}
footer > img {
  width: 150px;
  height: 140px;
  object-fit: contain;
  margin: auto;
}
footer > p {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4b6aa;
}
footer > div {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 40px 0 70px;
  font-size: 13px;
}
footer small {
  font-size: 11px;
  color: #c3aaa0;
}
footer small a {
  border-bottom: 1px solid;
}
@media (max-width: 820px) {
  header {
    height: 76px;
    padding: 0 20px;
  }
  .logo {
    width: 88px;
    height: 62px;
  }
  header > nav,
  .reserve-nav,
  .header-actions > .languages {
    display: none;
  }
  .header-actions { gap: 0; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 31;
  }
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    margin-left: auto;
    background: #fff;
    transition: transform 0.25s ease;
  }
  .menu-toggle.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu {
    display: flex;
    position: fixed;
    z-index: 30;
    inset: 76px 0 0;
    padding: 70px 24px 110px;
    background: #463319;
    color: #fff;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
  .mobile-menu nav a { font: 700 42px/1.05 var(--title); letter-spacing: -0.035em; }
  .mobile-menu-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #ffffff4d; padding-top: 26px; }
  .mobile-menu-bottom > a { font: 700 12px var(--title); letter-spacing: 0.07em; text-transform: uppercase; }
  body.menu-open { overflow: hidden; }
  .hero {
    height: 780px;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #260b0cf2,
      rgba(38, 11, 12, 0.45) 70%,
      transparent
    );
  }
  .hero-copy {
    left: 24px;
    right: 24px;
    top: 165px;
    bottom: auto;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-copy > p:not(.label) {
    font-size: 16px;
  }
  .hero-copy .button {
    display: none;
  }
  .intro {
    padding: 100px 24px 105px;
  }
  .intro h2 {
    font-size: 47px;
  }
  .intro-text {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 55px;
  }
  .editorial {
    display: block;
    min-height: auto;
    padding: 0 0 95px;
  }
  .photo-main {
    height: 590px;
  }
  .photo-small {
    width: 64%;
    height: 320px;
    margin: -85px 24px 0 auto;
    border-width: 10px;
  }
  .spaces {
    padding: 130px 0 110px;
  }
  .spaces-title {
    display: block;
    padding: 0 24px 65px;
  }
  .spaces h2 {
    font-size: 48px;
  }
  .gallery,
  .plates {
    padding-left: 24px;
    padding-right: 24px;
    gap: 14px;
  }
  .gallery figure,
  .gallery .wide {
    min-width: 82vw;
    height: 510px;
  }
  .menu {
    display: block;
    padding: 120px 0 90px;
  }
  .menu-title {
    padding: 0 24px;
  }
  .menu h2 {
    font-size: 50px;
  }
  .menu-copy {
    padding: 50px 24px 0;
  }
  .menu-copy p {
    font-size: 16px;
  }
  .plates {
    padding-top: 75px;
  }
  .plates img,
  .plates img:nth-child(even) {
    min-width: 78vw;
    width: 78vw;
    height: 480px;
  }
  .chef {
    display: block;
    min-height: auto;
  }
  .chef-photo {
    height: 720px;
    min-height: auto;
  }
  .chef-content {
    padding: 100px 24px 120px;
  }
  .chef h2 {
    font-size: 53px;
  }
  .chef-lead {
    font-size: 20px !important;
    margin-top: 40px !important;
  }
  .visit {
    height: 800px;
    margin: 120px 0 100px;
  }
  .visit:after {
    background: linear-gradient(
      0deg,
      #280b0df2,
      rgba(40, 11, 13, 0.42) 70%,
      transparent
    );
  }
  .visit-card {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 60px;
    transform: none;
  }
  .visit h2 {
    font-size: 54px;
  }
  .mobile {
    display: flex;
    position: fixed;
    z-index: 20;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: #fff;
    color: var(--wine);
    border: 1px solid var(--wine);
    padding: 17px 18px;
    justify-content: center;
    font: 700 13px/1.2 var(--title);
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 12px 30px #0004;
  }
  footer {
    padding-bottom: 120px;
  }
}
