:root {
  --black: #0b0a09;
  --dark: #12100e;
  --dark-2: #191512;
  --cream: #eee5d8;
  --muted: #a89d90;
  --orange: #c65324;
  --orange-light: #e17a3f;
  --copper: #9d5736;
  --line: rgba(238, 229, 216, 0.15);

  --serif: "Cormorant Garamond", serif;
  --sans: "DM Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--orange);
  color: white;
}


/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  background: #090807;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--orange-light);
  margin-bottom: 28px;
  animation: loaderLine 1.4s ease forwards;
}

.loader-logo {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.18em;
  opacity: 0;
  animation: loaderText 1s ease 0.5s forwards;
}

.loader-sub {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: #8e8277;
  opacity: 0;
  animation: loaderText 1s ease 0.8s forwards;
}

@keyframes loaderLine {
  from {
    width: 0;
  }

  to {
    width: 130px;
  }
}

@keyframes loaderText {
  to {
    opacity: 1;
  }
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 5vw;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.header.scrolled {
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.15em;
}

.brand span {
  color: var(--orange-light);
  font-family: var(--sans);
  font-size: 8px;
  vertical-align: top;
}

.header nav {
  display: flex;
  gap: 38px;
  margin-left: 100px;
}

.header nav a {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #d1c6ba;
  transition: color 0.3s ease;
}

.header nav a:hover {
  color: var(--orange-light);
}

.reserve-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 10px;
  letter-spacing: 0.2em;
}

.reserve-btn span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 15px var(--orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 38px;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  height: 1px;
  background: white;
  margin: 7px 0;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b0a09;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;

  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 48px;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;

  background-image:
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2200&q=90");

  background-position: center;
  background-size: cover;

  transform: scale(1.08);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7,6,5,0.92) 0%,
      rgba(7,6,5,0.65) 42%,
      rgba(7,6,5,0.2) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7,6,5,0.85),
      transparent 40%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 9vw;
  max-width: 650px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #c8baab;
  font-size: 9px;
  letter-spacing: 0.35em;
  margin-bottom: 30px;
}

.hero-kicker span {
  width: 36px;
  height: 1px;
  background: var(--orange-light);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(75px, 10vw, 160px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--orange-light);
  font-style: italic;
}

.hero-content > p {
  max-width: 420px;
  margin-top: 38px;

  color: #c2b7aa;
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-btn {
  background: var(--orange);
  padding: 17px 24px;

  font-size: 10px;
  letter-spacing: 0.18em;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.primary-btn span {
  margin-left: 24px;
  font-size: 15px;
}

.primary-btn:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
}

.text-btn {
  font-size: 10px;
  letter-spacing: 0.18em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 5px;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 5vw;
  right: 5vw;
  bottom: 35px;

  display: flex;
  justify-content: space-between;

  font-size: 8px;
  letter-spacing: 0.25em;
  color: #a99e92;
}

.scroll-label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.scroll-label span {
  width: 50px;
  height: 1px;
  background: #8f8378;
}

.hero-number {
  position: absolute;
  right: 4vw;
  top: 47%;
  z-index: 3;

  font-family: var(--serif);
  font-size: 13px;
  color: #aaa096;
}


/* =========================
   COMMON
========================= */

.eyebrow {
  display: inline-block;

  color: var(--orange-light);
  font-size: 9px;
  letter-spacing: 0.3em;
}

.section-number {
  color: #6e665e;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   INTRO
========================= */

.intro {
  min-height: 100vh;
  padding: 150px 9vw;

  display: grid;
  grid-template-columns: 0.35fr 1fr 0.95fr;
  gap: 70px;
  align-items: center;

  background: var(--dark);
}

.intro-copy h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(55px, 6vw, 95px);
  line-height: 0.9;
}

.intro-copy h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.intro-copy p {
  max-width: 470px;
  margin-top: 32px;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.line-link {
  display: inline-flex;
  gap: 25px;
  margin-top: 38px;

  font-size: 9px;
  letter-spacing: 0.2em;

  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.line-link span {
  color: var(--orange-light);
  transition: transform 0.3s ease;
}

.line-link:hover span {
  transform: translateX(7px);
}

.intro-image {
  height: 640px;
  position: relative;
  overflow: hidden;
}

.intro-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.intro-image:hover img {
  transform: scale(1.04);
}

.image-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;

  padding: 12px 15px;

  background: rgba(8,7,6,0.8);
  backdrop-filter: blur(10px);

  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 0.15em;
}


/* =========================
   FIRE STRIP
========================= */

.fire-strip {
  overflow: hidden;
  background: var(--orange);
  padding: 15px 0;

  display: flex;
  white-space: nowrap;
}

.fire-word {
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1;

  min-width: 33.333%;
  text-align: center;
  letter-spacing: 0.05em;
}


/* =========================
   MENU
========================= */

.menu-section {
  padding: 150px 7vw;
  background: #0d0c0b;
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 80px;
}

.menu-heading h2 {
  margin-top: 22px;

  font-family: var(--serif);
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.85;
  font-weight: 400;
}

.menu-heading h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.menu-heading > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 45px;
}

.dish-card {
  min-width: 0;
}

.dish-card.large {
  grid-row: span 2;
}

.dish-card.wide {
  grid-column: 1 / -1;
}

.dish-image {
  overflow: hidden;
  background: #191613;
}

.dish-card.large .dish-image {
  height: 650px;
}

.dish-card:not(.large) .dish-image {
  height: 300px;
}

.dish-card.wide .dish-image {
  height: 450px;
}

.dish-image img {
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-info {
  padding: 22px 0 35px;

  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 15px;

  border-bottom: 1px solid var(--line);
}

.dish-info > span {
  color: #665e56;
  font-size: 10px;
}

.dish-info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 27px;
}

.dish-info p {
  color: #80766d;
  font-size: 10px;
  line-height: 1.7;
  margin-top: 6px;
}

.dish-info strong {
  color: var(--orange-light);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
}


/* =========================
   CINEMATIC
========================= */

.cinematic {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10vw;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(5,4,3,0.95),
      rgba(5,4,3,0.35),
      rgba(5,4,3,0.4)
    ),
    url("https://images.unsplash.com/photo-1541544741938-0af808871cc0?auto=format&fit=crop&w=2200&q=90");

  background-size: cover;
  background-position: center;
  transition: transform 1.5s ease;
}

.cinematic:hover .cinematic-bg {
  transform: scale(1.025);
}

.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cinematic h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.83;
  font-weight: 400;
}

.cinematic h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.cinematic p {
  max-width: 430px;
  margin-top: 35px;

  color: #bdb1a5;
  font-size: 13px;
  line-height: 1.8;
}

.cinematic-label {
  position: absolute;
  right: 5vw;
  bottom: 40px;

  display: flex;
  gap: 35px;

  color: #9a8e82;
  font-size: 8px;
  letter-spacing: 0.2em;
}


/* =========================
   CHEF
========================= */

.chef-section {
  padding: 150px 9vw;

  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 10vw;
  align-items: center;

  background: var(--dark);
}

.chef-image {
  height: 720px;
  position: relative;
}

.chef-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.chef-stamp {
  position: absolute;
  right: -30px;
  bottom: 45px;

  width: 100px;
  height: 100px;

  border: 1px solid var(--orange-light);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.18em;

  background: #14110f;
  color: var(--orange-light);
}

.chef-copy h2 {
  margin-top: 22px;

  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 105px);
  line-height: 0.83;
  font-weight: 400;
}

.chef-copy h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.chef-copy p {
  max-width: 470px;
  margin-top: 32px;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.chef-signature {
  margin-top: 55px;

  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: #c7b9aa;
}


/* =========================
   SPACE
========================= */

.space-section {
  padding: 150px 7vw;
  background: #0b0a09;
}

.space-heading {
  margin-bottom: 75px;
}

.space-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(60px, 7vw, 105px);
  line-height: 0.85;
}

.space-heading h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 35px;
  align-items: end;
}

.space-main {
  height: 650px;
}

.space-main img,
.space-small img {
  height: 100%;
  object-fit: cover;
}

.space-small {
  height: 380px;
}

.space-text {
  grid-column: 2;
  padding: 25px 0 0;
}

.space-text span {
  font-size: 8px;
  color: var(--orange-light);
  letter-spacing: 0.25em;
}

.space-text p {
  max-width: 320px;
  margin-top: 15px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}


/* =========================
   MARQUEE
========================= */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--orange);
  padding: 28px 0;
}

.marquee div {
  width: max-content;

  font-family: var(--serif);
  font-size: 52px;

  animation: marquee 20s linear infinite;
}

.marquee span {
  padding: 0 30px;
  font-size: 22px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================
   CONTACT
========================= */

.contact-section {
  min-height: 90vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(177,67,28,0.2),
      transparent 40%
    ),
    #0b0a09;
}

.contact-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(194,73,29,0.08);
  filter: blur(100px);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.contact-inner h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-weight: 400;

  font-size: clamp(65px, 8vw, 125px);
  line-height: 0.83;
}

.contact-inner h2 em {
  color: var(--orange-light);
  font-style: italic;
}

.contact-inner > p {
  max-width: 430px;
  margin: 35px auto;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 50px;

  padding: 18px 23px;

  background: var(--orange);

  font-size: 9px;
  letter-spacing: 0.2em;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-btn strong {
  font-size: 17px;
  font-weight: 400;
}

.contact-btn:hover {
  background: var(--orange-light);
  transform: translateY(-4px);
}

.client-note {
  margin: 40px auto 0;

  max-width: 500px;

  color: #786e65;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.client-note strong {
  color: var(--orange-light);
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 90px 6vw 30px;
  background: #070605;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;

  padding-bottom: 90px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 70px;
  letter-spacing: 0.1em;
}

.footer-brand span {
  font-family: var(--sans);
  font-size: 8px;
  color: var(--orange-light);
  vertical-align: top;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column span {
  color: var(--orange-light);
  font-size: 8px;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
  color: #81776d;
  font-size: 10px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;

  display: flex;
  justify-content: space-between;

  color: #554e48;
  font-size: 8px;
  letter-spacing: 0.18em;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .header nav {
    display: none;
  }

  .reserve-btn {
    margin-left: auto;
    margin-right: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intro-image {
    height: 600px;
  }

  .section-number {
    order: -1;
  }

  .chef-section {
    grid-template-columns: 1fr;
  }

  .chef-image {
    height: 650px;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-text {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


@media (max-width: 700px) {

  .header {
    height: 72px;
    padding: 0 6vw;
  }

  .brand {
    font-size: 22px;
  }

  .reserve-btn {
    display: none;
  }

  .hero-content {
    margin-left: 7vw;
    margin-right: 7vw;
  }

  .hero h1 {
    font-size: clamp(70px, 19vw, 105px);
  }

  .hero-content > p {
    font-size: 12px;
    max-width: 320px;
  }

  .hero-bottom {
    left: 7vw;
    right: 7vw;
  }

  .hero-bottom > div:nth-child(2) {
    display: none;
  }

  .hero-number {
    display: none;
  }

  .intro,
  .menu-section,
  .chef-section,
  .space-section {
    padding: 100px 7vw;
  }

  .intro-image {
    height: 450px;
  }

  .fire-word {
    min-width: 50%;
    font-size: 34px;
  }

  .menu-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dish-card.large {
    grid-row: auto;
  }

  .dish-card.wide {
    grid-column: auto;
  }

  .dish-card.large .dish-image {
    height: 480px;
  }

  .dish-card:not(.large) .dish-image {
    height: 360px;
  }

  .dish-card.wide .dish-image {
    height: 360px;
  }

  .dish-info {
    grid-template-columns: 28px 1fr;
  }

  .dish-info strong {
    display: none;
  }

  .cinematic {
    min-height: 80vh;
    padding: 20vw 7vw;
  }

  .cinematic-label {
    display: none;
  }

  .chef-image {
    height: 500px;
  }

  .chef-stamp {
    width: 80px;
    height: 80px;
    right: -10px;
  }

  .space-main {
    height: 430px;
  }

  .space-small {
    height: 300px;
  }

  .contact-section {
    min-height: 80vh;
    padding: 80px 7vw;
  }

  .contact-btn {
    gap: 25px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    font-size: 55px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

}