* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050705;
  --dark: #090d09;
  --panel: #10170f;
  --green: #294f32;
  --sage: #7d956f;
  --cream: #f1eadc;
  --muted: rgba(241,234,220,.68);
  --line: rgba(241,234,220,.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: soft-light;
  background-image: repeating-radial-gradient(circle at 0 0, #fff 0 1px, transparent 1px 3px);
}

/* INTRO */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(41,79,50,.28), transparent 32%),
    #050705;
  transition: opacity .8s ease, visibility .8s ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-frame {
  width: min(460px, 78vw);
  display: grid;
  justify-items: center;
  gap: 24px;
  overflow: hidden;
}

.intro-frame img {
  width: 100%;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.72));
  transform: translateY(112%);
  opacity: 0;
  animation: introLogo 1.2s cubic-bezier(.16,1,.3,1) .15s forwards;
}

.intro-frame span {
  width: min(360px, 70vw);
  height: 1px;
  background: rgba(241,234,220,.22);
  transform: scaleX(0);
  animation: introLine 1.2s cubic-bezier(.16,1,.3,1) .55s forwards;
}

.intro-frame p {
  color: rgba(241,234,220,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: 0;
  animation: introText .75s ease 1s forwards;
}

@keyframes introLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes introText {
  to {
    opacity: 1;
  }
}

/* HEADER */
.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 1200;
  width: min(1180px, calc(100% - 44px));
  min-height: 76px;
  transform: translateX(-50%);
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 24px;
  align-items: center;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  transition: transform .3s ease, opacity .3s ease;
}

.brand img {
  width: 116px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 25px;
}

.nav a,
.topbar-btn {
  color: rgba(241,234,220,.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav a:hover {
  color: var(--cream);
}

.topbar-btn {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(241,234,220,.26);
  color: var(--cream);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 7vw 80px;
  display: grid;
  align-items: end;
}

.hero-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -5;
  overflow: hidden;
}

.hero-image img {
  object-fit: cover;
  filter: brightness(1.08) contrast(1.06) saturate(1.08);
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 74% 45%, rgba(241,234,220,.08), transparent 28%),
    linear-gradient(90deg, rgba(5,7,5,.76), rgba(5,7,5,.28), rgba(5,7,5,.46)),
    linear-gradient(180deg, rgba(5,7,5,.05), rgba(5,7,5,.14) 55%, #050705 98%);
}

.hero-content {
  width: min(930px, 100%);
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-eyebrow span,
.section-label {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.concept h2,
.experience h2,
.menu-title h2,
.gallery-head h2,
.reservation h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .9;
}

.hero h1 {
  font-size: clamp(72px, 11vw, 178px);
  max-width: 950px;
}

.hero-content > p {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(241,234,220,.76);
  line-height: 1.82;
  font-size: 17px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241,234,220,.25);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .24s ease, background .24s ease;
}

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

.button-light {
  background: var(--cream);
  color: #060806;
}

.button-outline {
  background: rgba(241,234,220,.045);
}

.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 80px;
  width: min(320px, 28vw);
  padding: 24px;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 165px;
  margin-bottom: 26px;
}

.hero-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
}

.hero-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
}

/* CONCEPT */
.concept {
  padding: 130px 7vw;
}

.concept-copy {
  max-width: 980px;
}

.concept h2 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 116px);
}

.concept-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: .75fr .75fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.concept-text {
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(241,234,220,.025);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concept-text span {
  margin-bottom: auto;
  color: rgba(241,234,220,.38);
  font-weight: 900;
  letter-spacing: .16em;
}

.concept-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
}

.concept-text p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.concept-photo {
  overflow: hidden;
  min-height: 420px;
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.concept-photo:hover img {
  transform: scale(1.06);
}

/* EXPERIENCE */
.experience {
  position: relative;
  min-height: 100svh;
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 24px;
  align-items: end;
  isolation: isolate;
}

.experience-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.76);
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,7,5,.88), rgba(5,7,5,.42), rgba(5,7,5,.72)),
    linear-gradient(180deg, #050705 0%, transparent 25%, #050705 100%);
}

.experience-panel {
  max-width: 780px;
  padding: 48px;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.experience h2 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 116px);
}

.experience-panel p:not(.section-label) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.experience-list {
  display: grid;
  gap: 10px;
}

.experience-list div {
  min-height: 76px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.experience-list span {
  color: var(--sage);
  font-weight: 900;
}

.experience-list strong {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* MENU */
.menu-section {
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.menu-title {
  position: sticky;
  top: 130px;
}

.menu-title h2 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 112px);
}

.menu-board {
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(241,234,220,.025);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(241,234,220,.18);
  background: transparent;
  color: rgba(241,234,220,.66);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tab.is-active {
  background: var(--cream);
  color: #060806;
}

.menu-list {
  display: none;
}

.menu-list.is-active {
  display: grid;
}

.menu-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
}

.menu-list strong {
  color: var(--sage);
  font-weight: 600;
}

.menu-image {
  grid-column: 1 / -1;
  height: 540px;
  margin-top: 24px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALLERY */
.gallery-section {
  padding: 130px 7vw;
}

.gallery-head {
  width: min(980px, 100%);
}

.gallery-head h2 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 116px);
}

.gallery-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 330px;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: brightness(.84);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: 1 / -1;
}

.gallery-grid figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 15px;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(15px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* RESERVATION */
.reservation {
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.reservation-image {
  min-height: 720px;
  overflow: hidden;
}

.reservation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-box {
  min-height: 720px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 0%, rgba(41,79,50,.24), transparent 34%),
    var(--panel);
  border: 1px solid var(--line);
}

.reservation-box img {
  width: 250px;
  margin-bottom: 38px;
}

.reservation h2 {
  margin-top: 18px;
  font-size: clamp(50px, 6.3vw, 104px);
}

.reservation-box p:not(.section-label) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 660px;
}

form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(241,234,220,.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  height: 56px;
  padding: 0 15px;
  border: 1px solid rgba(241,234,220,.18);
  background: rgba(0,0,0,.22);
  color: var(--cream);
  outline: none;
}

form button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  background: var(--cream);
  color: #060806;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  margin: 0 7vw 34px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(241,234,220,.52);
}

.footer img {
  width: 150px;
}

.footer a {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .78s ease, transform .78s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .topbar {
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 92px;
  }

  .nav {
    justify-self: start;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero-card {
    display: none;
  }

  .concept-grid,
  .experience,
  .menu-section,
  .reservation {
    grid-template-columns: 1fr;
  }

  .menu-title {
    position: relative;
    top: auto;
  }

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

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .brand img {
    width: 82px;
  }

  .topbar-btn {
    display: none;
  }

  .hero,
  .concept,
  .gallery-section,
  .menu-section,
  .reservation {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-actions,
  form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .concept-text,
  .menu-board,
  .reservation-box {
    padding: 28px 22px;
  }

  .experience {
    padding: 90px 18px;
  }

  .experience-panel {
    padding: 30px 22px;
  }

  .gallery-grid {
    grid-auto-rows: 380px;
  }

  .reservation-image {
    min-height: 420px;
  }

  .reservation-box {
    min-height: auto;
  }

  .reservation-box img {
    width: 210px;
  }

  .footer {
    margin-left: 18px;
    margin-right: 18px;
    grid-template-columns: 1fr;
  }
}
